/* product.css */

* {
    font-family: 'Inter', sans-serif !important;
}

body {
    background-color: #0a0f1a;
    background-image:
        linear-gradient(rgba(6, 182, 212, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 182, 212, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0%,100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

.pricing-option.active .rounded-2xl {
    border-color: rgba(6,182,212,0.5) !important;
    border-width: 2px !important;
    background: linear-gradient(to bottom right, rgba(15,23,42,0.4), rgba(30,41,59,0.4));
    box-shadow: 0 0 25px rgba(6,182,212,0.25);
}

.glow-spot {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: glow 4s ease-in-out infinite;
    pointer-events: none;
}

.feature-tab {
    transition: all 0.3s ease;
}

.feature-tab.active {
    background: linear-gradient(135deg, rgba(6,182,212,0.15), rgba(6,182,212,0.05));
    border-color: rgba(6,182,212,0.5) !important;
    color: white;
}

.feature-content {
    display: none;
}

.feature-content.active {
    display: block;
}

/* ===============================
   Fullscreen Image Modal
================================ */

.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(5, 10, 20, 0.92);
    backdrop-filter: blur(10px);
    padding: 40px;
}

.modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 95vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}

.modal-close {
    position: fixed;
    top: 24px;
    right: 32px;
    font-size: 42px;
    font-weight: 300;
    color: white;
    cursor: pointer;
    z-index: 10000;
    transition: opacity 0.2s ease;
}

.modal-close:hover {
    opacity: 0.6;
}