/* Font Face Declarations */
@font-face {
    font-family: 'Ubuntu';
    src: url('fonts/ubuntu/Ubuntu-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('fonts/ubuntu/Ubuntu-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('fonts/ubuntu/Ubuntu-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Base Styles */
body {
    font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
}

/* Beta Banner - Very Prominent */
.beta-banner {
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
    color: white;
    padding: 20px 0;
    text-align: center;
    border-bottom: 3px solid #e65100;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.25);
}

.beta-banner strong {
    font-weight: 700;
    letter-spacing: 2px;
}

.beta-banner .icon {
    margin: 0 !important;
}

/* Info Banner (Gray) */
.info-banner {
    background: #f5f5f5;
    color: #333;
    padding: 20px;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-top: 40px;
}

.info-banner .icon {
    color: #4caf50;
    margin: 0 !important;
}

.info-banner span {
    font-size: 15px;
    font-weight: 500;
}

/* Logo styling */
.logo,
a.logo.item {
    display: flex !important;
    align-items: center !important;
    gap: 3px !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #1e3a8a !important;
    text-decoration: none !important;
}

.logo img {
    height: 36px !important;
    width: auto !important;
    margin: 0 -2px !important;
}

.logo:hover,
a.logo.item:hover {
    color: #1e3a8a !important;
}

/* Main header */
.main-header {
    text-align: center;
    padding: 60px 0 40px 0;
}

.main-header h1 {
    font-size: 56px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    color: #1a1a1a;
}

.main-header .subtitle {
    font-size: 22px;
    color: #666;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Footer */
.footer-segment {
    margin-top: 80px !important;
    padding: 40px 0 !important;
    border-top: 1px solid #e5e5e5 !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .beta-banner {
        padding: 15px 10px;
    }
    
    .beta-banner strong {
        display: block;
        margin-bottom: 5px;
    }
    
    .info-banner {
        padding: 15px 10px;
    }
    
    .info-banner > div {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .main-header h1 {
        font-size: 36px !important;
    }

    .main-header .subtitle {
        font-size: 18px;
    }
}
