.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

body {
    background-color: #0e0e0e;
    color: #E5E2E1;
    font-family: 'Epilogue', sans-serif;
}

.neon-glow {
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.4), 0 0 20px rgba(0, 255, 157, 0.2);
}

.glass-panel {
    background: rgba(32, 31, 31, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glow-accent {
    filter: drop-shadow(0 0 8px rgba(0, 255, 157, 0.3));
}

.glow-line {
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.3), transparent);
}

.btn-modern {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-modern:hover {
    box-shadow: 0 0 25px rgba(0, 255, 157, 0.4);
    transform: translateY(-2px);
}

.card-hover {
    transition: all 0.5s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 255, 157, 0.4) !important;
    box-shadow: 0 10px 30px -10px rgba(0, 255, 157, 0.2);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #050505;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.8s ease;
}

.preloader-text {
    margin-top: 1rem;
    font-family: 'Syne', sans-serif;
    color: #00FF9D;
    letter-spacing: 4px;
    animation: blink 1s infinite;
    font-size: 0.75rem;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Header scrolled */
#header.scrolled {
    background: rgba(14, 14, 14, 0.95) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 0.75rem;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: #E5E2E1;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    line-height: 1;
}

.lightbox-close:hover {
    opacity: 1;
}

/* Screenshots */
.screenshot-card {
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(32, 31, 31, 0.6);
    transition: all 0.4s ease;
}

.screenshot-card:hover {
    border-color: rgba(0, 255, 157, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.screenshot-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.screenshot-caption {
    padding: 1.25rem 1.5rem;
}

/* Email toast */
.email-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(0, 255, 157, 0.15);
    border: 1px solid rgba(0, 255, 157, 0.3);
    color: #00FF9D;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
    z-index: 9000;
    backdrop-filter: blur(8px);
}

.email-toast.visible {
    transform: translateX(-50%) translateY(0);
}

/* Compliance table */
.compliance-table {
    width: 100%;
    border-collapse: collapse;
}

/* Compliance ring animation */
.compliance-ring {
    animation: drawRing 2s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
    filter: drop-shadow(0 0 8px rgba(0, 255, 157, 0.7));
}

@keyframes drawRing {
    to {
        stroke-dashoffset: 0;
    }
}

/* Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    gap: 2rem;
    padding: 0 1rem;
}

.carousel-slide {
    flex: 0 0 100%;
    max-width: 800px;
    opacity: 0.4;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

@media (min-width: 768px) {
    .carousel-slide {
        flex: 0 0 70%;
    }
}

@media (min-width: 1024px) {
    .carousel-slide {
        flex: 0 0 60%;
    }
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.carousel-btn {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 157, 0.2);
    background: rgba(32, 31, 31, 0.4);
    color: #00FF9D;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.carousel-btn:hover {
    background: rgba(0, 255, 157, 0.1);
    border-color: rgba(0, 255, 157, 0.5);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.75rem;
}

.carousel-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #00FF9D;
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
}
