/* ============================================
   BOOSTED HOME PAGE - MODERN LAYOUT
   ============================================ */

/* Global */
.boosted-home {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ============================================
   MODERN HEADER
   ============================================ */

.boosted-header {
    background: linear-gradient(135deg, #0f1116 0%, #1a1d24 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.boosted-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.boosted-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.boosted-logo {
    height: 60px;
    object-fit: contain;
}

.boosted-brand {
    border-left: 2px solid rgba(255, 255, 255, 0.3);
    padding-left: 20px;
}

.boosted-brand-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    color: white;
    letter-spacing: 2px;
}

.boosted-brand-subtitle {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
    font-weight: 300;
}

.boosted-header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.boosted-header-lang {
    display: flex;
    align-items: center;
}

.portal-header-lang-select {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    padding: 8px 32px 8px 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.9)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    min-width: 56px;
    transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.portal-header-lang-select:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.portal-header-lang-select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.portal-header-lang-select option {
    background: #1a1d24;
    color: #fff;
}

.boosted-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.boosted-header-info i {
    font-size: 16px;
    opacity: 0.9;
}

.boosted-header-right a:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ============================================
   HERO SECTION
   ============================================ */

.boosted-hero {
    position: relative;
    background: linear-gradient(135deg, #0f1116 0%, #1a1d24 50%, #0f1116 100%);
    padding: 80px 40px;
    overflow: hidden;
}

.boosted-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="rgba(255,255,255,0.02)" width="100" height="100"/><path d="M0,50 Q25,40 50,50 T100,50" stroke="rgba(255,255,255,0.05)" stroke-width="2" fill="none"/></svg>');
    opacity: 0.3;
}

.boosted-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(26, 29, 36, 0.5) 0%, transparent 50%);
}

.boosted-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.boosted-hero-text {
    text-align: center;
    color: white;
}

.boosted-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.boosted-hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    margin: 0 auto 40px;
    max-width: 800px;
    opacity: 0.95;
    line-height: 1.6;
}

.boosted-hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.boosted-feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 15px;
    font-weight: 500;
}

.boosted-feature-badge i {
    font-size: 20px;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.boosted-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 40px;
}

.boosted-content-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.boosted-section-header {
    margin-bottom: 30px;
}

.boosted-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #0f1116;
    margin: 0 0 10px 0;
}

.boosted-section-description {
    font-size: 16px;
    color: #718096;
    margin: 0;
}

/* Registration Card */
.boosted-registration-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.boosted-registration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(15, 17, 22, 0.2);
}

.boosted-card-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0f1116 0%, #1a1d24 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(15, 17, 22, 0.4);
}

.boosted-card-icon {
    font-size: 36px;
    color: white;
}

.boosted-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f1116;
    margin: 0 0 15px 0;
}

.boosted-card-description {
    font-size: 15px;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 30px;
}

.boosted-card-button {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #0f1116 0%, #1a1d24 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 17, 22, 0.4);
}

.boosted-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(15, 17, 22, 0.5);
}

.boosted-card-benefits {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.boosted-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #4a5568;
}

.boosted-benefit:last-child {
    margin-bottom: 0;
}

.boosted-benefit i {
    color: #0f1116;
    font-size: 18px;
}

/* Login Card */
.boosted-login-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.boosted-login-header {
    text-align: center;
    margin-bottom: 30px;
}

.boosted-login-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0f1116 0%, #1a1d24 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 15px;
    box-shadow: 0 6px 20px rgba(15, 17, 22, 0.4);
}

.boosted-login-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f1116;
    margin: 0;
}

.boosted-form-group {
    margin-bottom: 25px;
}

.boosted-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.boosted-input-wrapper {
    position: relative;
}

.boosted-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #718096;
    font-size: 16px;
    z-index: 1;
}

.boosted-form-input {
    width: 100%;
    padding: 14px 16px 14px 45px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.boosted-form-input:focus {
    border-color: #0f1116;
    outline: none;
    box-shadow: 0 0 0 4px rgba(15, 17, 22, 0.1);
}

.boosted-password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #718096;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s ease;
    z-index: 1;
}

.boosted-password-toggle:hover {
    color: #0f1116;
}

.boosted-submit-button {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #0f1116 0%, #1a1d24 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 17, 22, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.boosted-submit-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(15, 17, 22, 0.5);
}

.boosted-submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.boosted-form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #718096;
}

.boosted-form-text {
    color: #718096;
}

.boosted-form-link {
    color: #0f1116;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
}

.boosted-form-link:hover {
    color: #1a1d24;
    text-decoration: underline;
}

/* ============================================
   STATS SECTION
   ============================================ */

.boosted-stats {
    background: linear-gradient(135deg, #0f1116 0%, #1a1d24 100%);
    padding: 60px 40px;
}

.boosted-stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.boosted-stat-item {
    text-align: center;
    color: white;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.boosted-stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.boosted-stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.boosted-stat-number {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.boosted-stat-label {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
    font-weight: 300;
}

/* ============================================
   MODERN FOOTER
   ============================================ */

.boosted-footer {
    background: #1a202c;
    color: white;
    padding: 60px 40px 30px;
    margin-top: auto;
}

.boosted-footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.boosted-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.boosted-footer-column {
}

.boosted-footer-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: white;
}

.boosted-footer-text {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 15px;
}

.boosted-social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.boosted-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.boosted-social-link:hover {
    background: #0f1116;
    transform: translateY(-3px);
}

.boosted-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.boosted-footer-list li {
    margin-bottom: 12px;
}

.boosted-footer-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.boosted-footer-list a:hover {
    color: white;
}

.boosted-footer-list i {
    font-size: 14px;
    width: 16px;
}

.boosted-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.boosted-copyright {
    font-size: 14px;
    opacity: 0.7;
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .boosted-header-container,
    .boosted-hero-content,
    .boosted-content-container,
    .boosted-stats-container,
    .boosted-footer-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .boosted-stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .boosted-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .boosted-header-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .boosted-header-left {
        width: 100%;
        justify-content: center;
    }
    
    .boosted-logo {
        height: 50px;
    }
    
    .boosted-brand-title {
        font-size: 24px;
    }
    
    .boosted-brand-subtitle {
        font-size: 12px;
    }

    .boosted-header-right {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        width: 100%;
    }
    
    .boosted-header-info {
        font-size: 12px;
        gap: 6px;
    }
    
    .boosted-header-info i {
        font-size: 14px;
    }
    
    .portal-header-registration-link {
        padding: 8px 16px;
        font-size: 13px;
    }

    .portal-header-lang-select {
        padding: 6px 28px 6px 10px;
        font-size: 13px;
        min-width: 48px;
    }

    .boosted-hero-title {
        font-size: 32px;
    }

    .boosted-hero-subtitle {
        font-size: 16px;
    }

    .boosted-content {
        padding: 30px 15px;
    }

    .boosted-content-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .boosted-stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .boosted-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .boosted-footer-container {
        padding: 0 20px;
    }
    
    /* Registration card responsive */
    .boosted-registration-card {
        padding: 25px 20px;
    }
    
    .boosted-card-title {
        font-size: 24px;
    }
    
    .boosted-card-description {
        font-size: 14px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .boosted-header-container {
        padding: 0 15px;
    }
    
    .boosted-brand {
        padding-left: 15px;
    }
    
    .boosted-brand-title {
        font-size: 20px;
    }
    
    .boosted-logo {
        height: 40px;
    }
    
    .boosted-header-right {
        flex-direction: column;
        align-items: stretch;
    }
    
    .boosted-header-info {
        justify-content: center;
        font-size: 11px;
    }
    
    .portal-header-registration-link {
        width: 100%;
        justify-content: center;
    }

    .portal-header-lang-select {
        width: 100%;
        max-width: 80px;
    }
    
    .boosted-content {
        padding: 20px 10px;
    }
    
    .boosted-content-container {
        padding: 0 10px;
    }
    
    .boosted-registration-card {
        padding: 20px 15px;
    }
    
    .boosted-card-title {
        font-size: 20px;
    }
    
    .boosted-footer-container {
        padding: 0 15px;
    }
}

