/* Open Beta Modal Styles */
.openbeta-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.openbeta-modal {
    position: relative;
    max-width: 700px;
    width: 90%;
    background: rgba(10, 15, 25, 0.95);
    border: 2px solid rgba(120, 150, 180, 0.5);
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(120, 150, 180, 0.4);
    animation: slideIn 0.4s ease;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

@keyframes slideIn {
    from { 
        transform: scale(0.9) translateY(-30px);
        opacity: 0;
    }
    to { 
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.openbeta-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 35px;
    color: #7896b4;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    background: none;
    border: none;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.openbeta-modal-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.openbeta-modal-header {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(180deg, rgba(120, 150, 180, 0.15) 0%, transparent 100%);
}

.openbeta-modal-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 15px;
    text-shadow: 0 0 25px rgba(120, 150, 180, 0.9), 3px 3px 8px rgba(0, 0, 0, 0.8);
}

.openbeta-modal-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    text-shadow: 0 0 15px rgba(120, 150, 180, 0.5), 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.6;
}

.openbeta-countdown {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.openbeta-countdown .countdown-item {
    background: linear-gradient(135deg, rgba(120, 150, 180, 0.2) 0%, rgba(120, 150, 180, 0.05) 100%);
    border: 2px solid rgba(120, 150, 180, 0.5);
    border-radius: 10px;
    padding: 20px 25px;
    min-width: 90px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.openbeta-countdown .countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(120, 150, 180, 0.4);
    border-color: rgba(120, 150, 180, 0.7);
}

.openbeta-countdown .countdown-value {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #7896b4;
    text-shadow: 0 0 15px rgba(120, 150, 180, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1;
    margin-bottom: 8px;
}

.openbeta-countdown .countdown-label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(120, 150, 180, 0.5);
}

/* Beta Date Info */
.beta-date-info {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 20px;
    margin-bottom: 10px;
    padding: 12px 20px;
    background: rgba(120, 150, 180, 0.1);
    border: 1px solid rgba(120, 150, 180, 0.3);
    border-radius: 8px;
    text-align: center;
}

.beta-date-info i {
    color: #7896b4;
    margin-right: 8px;
}

.beta-date-info strong {
    color: #7896b4;
}

/* CTA Buttons */
.openbeta-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.openbeta-btn {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 35px;
    border-radius: 8px;
    border: 2px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.openbeta-btn.primary {
    background: linear-gradient(135deg, #7896b4 0%, #5a7a94 100%);
    color: #ffffff;
    border-color: rgba(120, 150, 180, 0.5);
}

.openbeta-btn.primary:hover {
    background: linear-gradient(135deg, #8aa5c0 0%, #6b8ba8 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(120, 150, 180, 0.5);
    border-color: rgba(120, 150, 180, 0.7);
}

.openbeta-btn.secondary {
    background: linear-gradient(135deg, rgba(120, 150, 180, 0.2) 0%, rgba(120, 150, 180, 0.1) 100%);
    color: #7896b4;
    border-color: rgba(120, 150, 180, 0.5);
}

.openbeta-btn.secondary:hover {
    background: linear-gradient(135deg, rgba(120, 150, 180, 0.3) 0%, rgba(120, 150, 180, 0.2) 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(120, 150, 180, 0.4);
    border-color: rgba(120, 150, 180, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .openbeta-modal {
        width: 95%;
        max-width: none;
    }

    .openbeta-modal-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .openbeta-modal-subtitle {
        font-size: 0.95rem;
    }

    .openbeta-countdown {
        gap: 15px;
    }

    .openbeta-countdown .countdown-item {
        min-width: 70px;
        padding: 15px 18px;
    }

    .openbeta-countdown .countdown-value {
        font-size: 2rem;
    }

    .openbeta-countdown .countdown-label {
        font-size: 0.7rem;
    }

    .openbeta-cta {
        flex-direction: column;
        gap: 10px;
    }

    .openbeta-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .openbeta-modal-header {
        padding: 40px 20px;
    }

    .openbeta-modal-title {
        font-size: 1.6rem;
    }

    .openbeta-countdown {
        gap: 10px;
    }

    .openbeta-countdown .countdown-item {
        min-width: 60px;
        padding: 12px 15px;
    }

    .openbeta-countdown .countdown-value {
        font-size: 1.8rem;
    }
}
