@theme {
    --font-sans: 'Inter', sans-serif;
    --color-brand-blue: #1C2A43;
    --color-brand-orange: #F58220;
    --color-brand-dark: #111827;
    --color-brand-light: #F8FAFC;
    --color-brand-slate: #CCCDD1;

    --animate-scrolling: scroll 30s linear infinite;
    --animate-float: float 6s ease-in-out infinite;
    --animate-float-delayed: float 6s ease-in-out 3s infinite;
    --animate-fade-in-blur: fadeInBlur 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes fadeInBlur {
    0% {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

body {
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* Grid Background */
.bg-grid {
    background-size: 40px 40px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    mask-image: linear-gradient(to bottom, transparent, black, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent 10%, black 50%, transparent 90%);
}

.dark .bg-grid {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

/* Ambient Glows */
.glow-orange {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(245, 130, 32, 0.15);
    filter: blur(120px);
    border-radius: 50%;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.glow-blue {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(28, 42, 67, 0.3);
    filter: blur(150px);
    border-radius: 50%;
    z-index: -1;
    transition: opacity 0.4s ease;
}

/* Glassmorphism Input & Cards */
.glass-container {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.dark .glass-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Sleek Modern Cards for Neden section */
.sleek-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sleek-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(245, 130, 32, 0.1);
    border-color: rgba(245, 130, 32, 0.3);
}

.dark .sleek-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dark .sleek-card:hover {
    background: rgba(31, 41, 55, 0.8);
    border-color: rgba(245, 130, 32, 0.4);
    box-shadow: 0 20px 40px rgba(245, 130, 32, 0.15);
}

/* Hide scrollbar for ticker */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Custom Accordion styles for FAQ */
details>summary {
    list-style: none;
}

details>summary::-webkit-details-marker {
    display: none;
}

details[open] summary~* {
    animation: fade-in-up 0.4s ease-in-out;
}

details[open] summary .accordion-icon {
    transform: rotate(180deg);
}