/* Mobile-First Container */
.early-birds-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f57c00 0%, #ff9800 50%, #ffc107 100%);
    border-radius: 16px;
    margin-bottom: 20px;
    color: white;
    box-shadow: 0 4px 20px rgba(245, 124, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-icon {
    font-size: 4em;
    margin-bottom: 15px;
    color: #fff;
    animation: sunrise 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes sunrise {
    0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
    50% { transform: translateY(-10px) scale(1.05); opacity: 0.9; }
}

.hero-title {
    font-size: 2.5em;
    font-weight: 900;
    margin: 0 0 15px 0;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.1em;
    margin: 0;
    opacity: 0.95;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

/* User Status Card */
.status-card {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 3px solid #2196f3;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.2);
}

.status-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #1565c0;
}

.status-header i {
    font-size: 2em;
}

.status-header h2 {
    margin: 0;
    font-size: 1.5em;
    font-weight: 700;
}

.status-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.status-item {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.status-label {
    font-size: 0.85em;
    color: #666;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-value {
    font-size: 1.8em;
    font-weight: 700;
    color: #1565c0;
}

.tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f57c00;
}

.tier-badge i {
    font-size: 0.9em;
}

.membership-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.6em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.membership-badge.active {
    background: #4caf50;
    color: white;
}

.membership-badge.inactive {
    background: #9e9e9e;
    color: white;
}

/* Info Cards */
.info-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f57c00;
}

.card-header i {
    font-size: 2em;
    color: #f57c00;
}

.card-header h2 {
    margin: 0;
    font-size: 1.5em;
    font-weight: 700;
    color: #333;
}

.card-body {
    color: #555;
    line-height: 1.8;
}

.lead-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.8;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-left: 4px solid #f57c00;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.highlight-box i {
    font-size: 2.5em;
    color: #f57c00;
    flex-shrink: 0;
}

.highlight-box h3 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    color: #e65100;
    font-weight: 700;
}

.highlight-box p {
    margin: 0;
    line-height: 1.6;
}

/* Tier List */
.tier-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.tier-item {
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.tier-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tier-item.tier-0 {
    border-color: #9e9e9e;
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
}

.tier-item.tier-1 {
    border-color: #ff9800;
    background: linear-gradient(135deg, #fff 0%, #fff8e1 100%);
}

.tier-item.tier-2 {
    border-color: #9c27b0;
    background: linear-gradient(135deg, #fff 0%, #f3e5f5 100%);
}

.tier-item.tier-3 {
    border-color: #ff5722;
    background: linear-gradient(135deg, #fff 0%, #ffebee 100%);
}

.tier-item.tier-4 {
    border-color: #1565c0;
    background: linear-gradient(135deg, #fff 0%, #e3f2fd 100%);
}

.tier-item.tier-5 {
    border-color: #ffd700;
    background: linear-gradient(135deg, #fffef0 0%, #fff8e1 100%);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.tier-badge-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    gap: 8px;
    flex-shrink: 0;
}

.tier-badge-large i {
    font-size: 2.5em;
}

.tier-0 .tier-badge-large i {
    color: #9e9e9e;
}

.tier-1 .tier-badge-large i {
    color: #ff9800;
    animation: chirp 2s ease-in-out infinite;
}

@keyframes chirp {
    0%, 100% { transform: scale(1); }
    25%, 75% { transform: scale(1.1); }
    50% { transform: scale(1); }
}

.tier-2 .tier-badge-large i {
    color: #9c27b0;
    animation: moonGlow 3s ease-in-out infinite;
}

@keyframes moonGlow {
    0%, 100% { opacity: 1; transform: rotate(0deg); }
    50% { opacity: 0.7; transform: rotate(20deg); }
}

.tier-3 .tier-badge-large i {
    color: #ff5722;
    animation: flame 1.5s ease-in-out infinite;
}

@keyframes flame {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.15) translateY(-3px); }
}

.tier-4 .tier-badge-large i {
    color: #1565c0;
    animation: archmage 2s ease-in-out infinite;
}

@keyframes archmage {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.1); }
}

.tier-5 .tier-badge-large i {
    color: #ffd700;
    animation: legendary 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

@keyframes legendary {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6)); }
    50% { transform: scale(1.15); filter: drop-shadow(0 0 16px rgba(255, 215, 0, 0.9)); }
}

.tier-badge-large span {
    font-weight: 700;
    font-size: 0.9em;
    color: #666;
}

.tier-details {
    flex: 1;
}

.tier-details h4 {
    margin: 0 0 5px 0;
    font-size: 1.3em;
    color: #333;
    font-weight: 700;
}

.tier-details p {
    margin: 0 0 10px 0;
    color: #777;
    font-size: 0.95em;
}

.tier-details ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
    list-style: none;
}

.tier-details li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #555;
}

.tier-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
    font-size: 1.2em;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.benefit-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(245, 124, 0, 0.2);
    border-color: #f57c00;
}

.benefit-icon {
    font-size: 3em;
    color: #f57c00;
    margin-bottom: 15px;
}

.benefit-item h3 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    color: #333;
    font-weight: 700;
}

.benefit-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 0.95em;
}

/* Steps Container */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f57c00 0%, #ff9800 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(245, 124, 0, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin: 0 0 8px 0;
    font-size: 1.2em;
    color: #333;
    font-weight: 700;
}

.step-content p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item h3 {
    margin: 0 0 10px 0;
    font-size: 1.1em;
    color: #f57c00;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-item h3 i {
    font-size: 0.8em;
}

.faq-item p {
    margin: 0;
    color: #666;
    line-height: 1.7;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 40px 25px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    margin-bottom: 20px;
}

.cta-content h2 {
    margin: 0 0 15px 0;
    font-size: 1.8em;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cta-content p {
    margin: 0 0 25px 0;
    font-size: 1.1em;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

/* Refresh Button Override */
.status-card .btn-outline-primary {
    color: #198754;
    border-color: #198754;
    background-color: white;
}

.status-card .btn-outline-primary:hover {
    color: #198754;
    background-color: #e8f5e9;
    border-color: #198754;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1em;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    width: 100%;
    max-width: 300px;
}

.btn-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.4);
    color: #667eea;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .early-birds-container {
        padding: 25px;
    }

    .hero-section {
        padding: 50px 40px;
    }

    .hero-icon {
        font-size: 5em;
    }

    .hero-title {
        font-size: 3em;
    }

    .hero-subtitle {
        font-size: 1.2em;
    }

    .status-card,
    .info-card {
        padding: 35px;
    }

    .status-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tier-badge-large {
        min-width: 100px;
    }

    .tier-badge-large i {
        font-size: 3em;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .btn {
        width: auto;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .early-birds-container {
        padding: 40px 20px;
    }

    .status-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tier-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .tier-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .tier-details ul {
        text-align: left;
    }
}
