/* Beta Access Section */
.beta-access-section {
    text-align: center;
    margin: 40px 0 60px 0;
}

.beta-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.beta-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.beta-description {
    font-size: 1.2rem;
    color: #a1a1a1;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #a1a1a1;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Wheel Section */
.wheel-section {
    margin: 40px 0;
}

.wheel-caption {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 500;
}

.wheel-container {
    position: relative;
    display: inline-block;
    margin: 0 auto 30px auto;
}

.spin-wheel {
    position: relative;
    width: 280px;
    height: 280px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    display: block;
    margin: 0 auto;
}

.spin-wheel:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.spin-wheel:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.wheel-svg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.slice {
    stroke: #000;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.win-slice {
    fill: #00ff00;
}

.lose-slice {
    fill: #ff3b30;
}

.slice-text {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 12px;
    pointer-events: none;
}

.win-text {
    fill: #000;
}

.lose-text {
    fill: #fff;
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #000;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.tap-text {
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

/* Countdown Styles */
.countdown-container {
    margin: 40px 0 30px 0;
    text-align: center;
}

.countdown-label {
    font-size: 1.6rem;
    color: #a1a1a1;
    margin-bottom: 35px;
    font-weight: 500;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-unit .number {
    font-size: 3.5rem;
    font-weight: 300;
    color: #ff3b30;
    line-height: 1;
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    animation: pulse 2s ease-in-out infinite;
}

.time-unit .label {
    font-size: 1rem;
    color: #a1a1a1;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Mobile-First Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 16px 40px;
    position: relative;
    background: transparent;
}

.hero-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

/* Social Proof */
.social-proof {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    opacity: 0.9;
    justify-content: center;
    flex-wrap: wrap;
}

.user-avatars {
    display: flex;
    margin-left: -8px;
}

.avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-left: -8px;
    transition: transform 0.3s ease;
    position: relative;
}

.avatar-img:first-child {
    margin-left: 0;
}

.avatar-img:hover {
    transform: translateY(-2px);
    z-index: 10;
}

.social-text {
    font-size: 14px;
    color: #a1a1a1;
    font-weight: 500;
}

.social-highlight {
    font-weight: 700;
    color: #ffffff;
}

/* Main Hero Content */
.hero-main {
    margin-bottom: 60px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.02em;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #a1a1a1;
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 400;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    width: 100%;
    text-align: center;
}

.btn-primary {
    background: #FFC300 !important;
    border: none !important;
    color: #000000 !important;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 240px;
    min-width: 160px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    display: block;
}

.btn-primary:hover {
    background: #FFD700 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 195, 0, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Try Now Button Styles */
.try-now-btn, .mobile-try-btn {
    background: #000000 !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: auto;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.try-now-btn:hover, .mobile-try-btn:hover {
    background: #1a1a1a !important;
    border-color: rgba(255, 255, 255, 0.7) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1) !important;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Features Preview */
.features-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
    color: #e1e1e1;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

/* Focus States */
.btn-primary:focus,
.btn-secondary:focus {
    outline: 2px solid rgba(102, 126, 234, 0.5);
    outline-offset: 2px;
}

/* Countdown Section - Mobile First */
.countdown-section {
    text-align: center;
    padding: 0 16px;
}

.countdown-text {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 40px auto 30px auto;
    flex-wrap: nowrap;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(17, 17, 17, 0.9);
    border: 2px solid rgba(255, 59, 48, 0.4);
    border-radius: 8px;
    padding: 8px 6px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 50px;
    box-shadow: 0 0 20px rgba(255, 59, 48, 0.1), inset 0 0 20px rgba(255, 59, 48, 0.05);
}

.time-block:hover {
    background: rgba(17, 17, 17, 0.95);
    border-color: rgba(255, 59, 48, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 59, 48, 0.2), inset 0 0 30px rgba(255, 59, 48, 0.1);
}

.time-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff3b30;
    display: block;
    line-height: 1;
    margin-bottom: 2px;
    text-shadow: 0 0 10px rgba(255, 59, 48, 0.5), 0 0 20px rgba(255, 59, 48, 0.3);
}

.time-label {
    font-size: 8px;
    color: #ff6b6b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-shadow: 0 0 5px rgba(255, 107, 107, 0.3);
}

.time-separator {
    font-size: 1.5rem;
    color: #666;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Tablet Responsive */
@media (min-width: 768px) {
    .hero-section {
        padding: 80px 32px 60px;
    }
    
    .hero-container {
        max-width: 768px;
    }
    
    .social-proof {
        flex-direction: row;
        gap: 16px;
        margin-bottom: 50px;
    }
    
    .avatar {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .social-text {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 3.5rem;
        margin-bottom: 24px;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 40px;
        max-width: 90%;
    }
    
    .cta-buttons {
        flex-direction: row;
        gap: 16px;
        margin-bottom: 40px;
        justify-content: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: auto;
        min-width: 160px;
        padding: 18px 36px;
    }
    
    .countdown-container {
        max-width: 350px;
        gap: 8px;
    }
    
    .time-block {
        padding: 12px 8px;
        min-width: 60px;
    }
    
    .time-number {
        font-size: 1.8rem;
        margin-bottom: 4px;
    }
    
    .time-label {
        font-size: 9px;
    }
    
    .time-separator {
        font-size: 1.8rem;
    }
}

/* Desktop Responsive */
@media (min-width: 1024px) {
    .hero-container {
        max-width: 1300px;
        padding: 0 50px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .countdown-container {
        max-width: 500px;
        gap: 14px;
    }
    
    .time-block {
        min-width: 90px;
        padding: 20px 16px;
    }
    
    .time-number {
        font-size: 2.5rem;
    }
    
    .social-proof {
        margin-bottom: 50px;
    }
    
    .time-separator {
        font-size: 1.8rem;
    }
    
    .btn-primary {
        max-width: 200px;
        padding: 12px 24px;
        font-size: 14px;
    }
    
    #tryBetaScroll {
        max-width: 240px;
        min-width: 180px;
        padding: 14px 28px;
        font-size: 15px;
        margin: 0 auto;
    }
}

/* Large Desktop */
@media (min-width: 1440px) {
    .hero-container {
        max-width: 1200px;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        max-width: 70%;
    }
}

/* Small Mobile Optimization */
@media (max-width: 480px) {
    .hero-section {
        padding: 50px 12px 30px;
    }
    
    .social-proof {
        margin-bottom: 30px;
    }
    
    .avatar {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .social-text {
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 28px;
    }
    
    .cta-buttons {
        margin-bottom: 28px;
        justify-content: center;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 15px;
        max-width: 260px;
    }
    
    .features-preview {
        margin-bottom: 30px;
    }
    
    .feature-tag {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .countdown-container {
        gap: 0.5rem;
        margin: 20px auto 15px auto;
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .time-block {
        padding: 10px 6px;
        min-width: 50px;
    }
    
    .time-number {
        font-size: 1.5rem;
        margin-bottom: 3px;
    }
    
    .time-label {
        font-size: 9px;
    }
    
    .time-separator {
        font-size: 1.2rem;
    }
}

/* Animation and Transitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-main > * {
    animation: fadeInUp 0.8s ease-out;
}

.social-proof {
    animation: fadeInUp 0.6s ease-out;
}

.countdown-section {
    animation: fadeInUp 1s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
}

/* Partnership Section - Mobile First */
.partnership-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.partnership-content {
    text-align: center;
    position: relative;
}

.partnership-header {
    margin-bottom: 50px;
}

.partnership-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.2;
}

.partnership-subtitle-thin {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    line-height: 1.3;
}

.partnership-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 450px;
    margin: 0 auto;
}

.partnership-value {
    margin-bottom: 50px;
    text-align: center;
}

.value-proposition {
    margin-bottom: 30px;
}

.value-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
}

.value-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.requirements-simple {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.requirement-item {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.requirement-item:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFC300;
    font-weight: 700;
}

.partnership-stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 16px;
    min-width: 90px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 195, 0, 0.3);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFC300;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partnership-features {
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.feature-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.partnership-cta {
    margin-top: 40px;
}

.partnership-btn {
    background: #FFC300 !important;
    color: #000000 !important;
    border: none !important;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.partnership-btn:hover {
    background: #FFD700 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 195, 0, 0.4);
}

/* Partnership Section Responsive Design */
@media (min-width: 768px) {
    .partnership-section {
        padding: 80px 0;
    }
    
    .partnership-title {
        font-size: 2.5rem;
    }
    
    .partnership-subtitle {
        font-size: 1.1rem;
        max-width: 500px;
    }
    
    .partnership-stats {
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .stat-card {
        padding: 24px 20px;
        min-width: 120px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .partnership-features {
        max-width: 600px;
        margin: 0 auto 50px auto;
    }
    
    .feature-item {
        padding: 16px 0;
    }
    
    .feature-text {
        font-size: 1rem;
    }
    
    .partnership-btn {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .partnership-section {
        padding: 50px 0;
    }
    
    .partnership-header {
        margin-bottom: 30px;
    }
    
    .partnership-title {
        font-size: 1.8rem;
    }
    
    .partnership-subtitle {
        font-size: 0.95rem;
    }
    
    .partnership-stats {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .stat-card {
        padding: 16px 12px;
        min-width: 80px;
    }
    
    .stat-value {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .partnership-features {
        margin-bottom: 30px;
    }
    
    .feature-item {
        padding: 10px 0;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }
    
    .partnership-btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

/* Floating animation for decorative elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.spinning {
    animation: spin 6s cubic-bezier(0.1, 0.9, 0.25, 1) forwards;
}

/* Email Capture Section */
.email-capture-section {
    background: rgba(17, 17, 17, 0.8);
    border-radius: 16px;
    padding: 3rem;
    margin: 4rem auto;
    max-width: 600px;
    border: 1px solid rgba(255, 68, 68, 0.2);
    backdrop-filter: blur(10px);
}

.email-capture-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.email-capture-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.6;
}

.beta-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff4444, #ff6666);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.email-input {
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: #ff4444;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1);
}

.email-input::placeholder {
    color: #888888;
}

.email-submit-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff4444, #ff6666);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.email-submit-btn:hover {
    background: linear-gradient(135deg, #ff3333, #ff5555);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.3);
}

.email-submit-btn:active {
    transform: translateY(0);
}

/* Coming Soon Content */
.coming-soon-content {
    text-align: center;
    padding: 2rem 0;
}

.coming-soon-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.coming-soon-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* University Section Modifications */
.coming-soon-badge {
    background: linear-gradient(135deg, #ff4444, #ff6666);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.university-preview {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 68, 68, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.preview-text {
    color: #cccccc;
    font-style: italic;
    margin: 0;
    text-align: center;
}

/* Phone Promotion Styles */
.phone-promotion-container {
    text-align: center;
    margin: 3rem 0;
}

.phone-promotion-content {
    background: rgba(17, 17, 17, 0.8);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(255, 68, 68, 0.2);
    backdrop-filter: blur(10px);
    max-width: 500px;
    margin: 0 auto;
}

.phone-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.phone-promotion-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.phone-promotion-description {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Coming Soon CTA Styles */
.coming-soon-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(17, 17, 17, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.cta-coming-soon-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff4444;
    margin-bottom: 0.5rem;
}

.cta-beta-text {
    font-size: 1rem;
    color: #cccccc;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .countdown-container {
        gap: 0.8rem;
        margin: 30px auto 20px auto;
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .countdown-number {
        font-size: 3.5rem;
    }
    
    .countdown-label {
        font-size: 1rem;
    }
    
    .countdown-header {
        font-size: 2rem;
    }
    
    .email-capture-section {
        margin: 2rem 1rem;
        padding: 2rem;
    }
    
    .coming-soon-title {
        font-size: 2.5rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.1rem;
    }
    
    .phone-promotion-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .phone-icon-large {
        font-size: 3rem;
    }
    
    .phone-promotion-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .countdown-container {
        gap: 0.5rem;
        margin: 20px auto 15px auto;
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .countdown-number {
        font-size: 2.8rem;
    }
    
    .countdown-item {
        min-width: 80px;
    }
    
    .email-capture-section {
        padding: 1.5rem;
    }
    
    .phone-promotion-content {
        padding: 1.5rem;
    }
    
    .phone-icon-large {
        font-size: 2.5rem;
    }
}
