:root {
    --primary: 263 90% 51%;
    --primary-foreground: 210 40% 98%;
    --secondary: 199 89% 48%;
    --secondary-foreground: 0 0% 100%;
    --accent: 328 85% 55%;
    --accent-foreground: 0 0% 100%;
    --background: 240 10% 4%;
    --foreground: 0 0% 100%;
    --card: 240 10% 6%;
    --card-foreground: 0 0% 100%;
    --popover: 240 10% 4%;
    --popover-foreground: 0 0% 100%;
    --muted: 240 5% 15%;
    --muted-foreground: 240 5% 65%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;
    --border: 240 5% 25%;
    --input: 240 5% 20%;
    --ring: 263 90% 51%;
    --radius: 0.75rem;
    /* Neon renkler */
    --neon-purple: 263 90% 51%;
    --neon-blue: 199 89% 48%;
    --neon-pink: 328 85% 55%;
    --neon-green: 142 71% 45%;
    --neon-yellow: 54 100% 50%;
    /* Gölgeler */
    --neon-shadow-purple: 0 0 10px rgba(125, 59, 255, 0.5), 0 0 20px rgba(125, 59, 255, 0.3);
    --neon-shadow-blue: 0 0 10px rgba(0, 174, 255, 0.5), 0 0 20px rgba(0, 174, 255, 0.3);
    --neon-shadow-pink: 0 0 10px rgba(255, 30, 143, 0.5), 0 0 20px rgba(255, 30, 143, 0.3);
    --neon-shadow-green: 0 0 10px rgba(37, 213, 95, 0.5), 0 0 20px rgba(37, 213, 95, 0.3);
    /* Temel Renkler */
    --next-primary: 122, 67%, 48%;
    --next-primary-foreground: 0 0% 100%;
    --next-secondary: 262, 80%, 50%;
    --next-secondary-foreground: 0 0% 100%;
    --next-accent: 339, 89%, 49%;
    --next-accent-foreground: 0 0% 100%;
    --next-background: 240, 10%, 4%;
    --next-foreground: 0 0% 98%;
    --next-card: 240, 7%, 8%;
    --next-card-foreground: 0 0% 98%;
    --next-muted: 213, 10%, 15%;
    --next-muted-foreground: 215, 20%, 65%;
    --next-border: 240, 5%, 20%;
    --next-input: 240, 5%, 15%;
    /* Neon Renkleri */
    --next-neon-purple: 260, 100%, 70%;
    --next-neon-blue: 210, 100%, 70%;
    --next-neon-pink: 320, 100%, 70%;
    /* Radio Grotesk Font */
    font-family: "Radio Grotesk", system-ui, sans-serif;
}

.light {
    --primary: 263 90% 51%;
    --primary-foreground: 0 0% 100%;
    --secondary: 199 89% 48%;
    --secondary-foreground: 0 0% 100%;
    --accent: 328 85% 55%;
    --accent-foreground: 0 0% 100%;
    --background: 0 0% 100%;
    --foreground: 240 10% 4%;
    --card: 0 0% 98%;
    --card-foreground: 240 10% 4%;
    --popover: 0 0% 100%;
    --popover-foreground: 240 10% 4%;
    --muted: 240 5% 90%;
    --muted-foreground: 240 5% 40%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;
    --border: 240 5% 85%;
    --input: 240 5% 90%;
    --ring: 263 90% 51%;
}

@font-face {
    font-family: 'Radio Grotesk';
    src: url('/fonts/RadioGrotesk-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Radio Grotesk';
    src: url('/fonts/RadioGrotesk-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Radio Grotesk";
    src: url("../fonts/RadioGrotesk-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Radio Grotesk', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: hsl(var(--foreground));
    background-color: hsl(var(--background));
    line-height: 1.5;
    overflow-x: hidden;
    font-weight: 500;
}

.rc-anchor-light {
    background: #000000 !important;
    color: #ffffff !important;
}

.next-absolute {
    position: absolute;
}

.next-justify-center {
    justify-content: center;
}

/* Layout */
.next-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 1280px;
}

.next-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

.next-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

    .next-header.scrolled {
        background-color: rgba(19, 21, 32, 0.9);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

        .next-header.scrolled .next-logo {
            font-size: 1.5rem;
        }

        .next-header.scrolled .next-nav {
            height: 3.5rem;
        }

.next-nav {
    display: flex;
    height: 4rem;
    align-items: center;
    justify-content: space-between;
}

.next-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    text-decoration: none;
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
}

.next-main {
    flex: 1;
}

.next-footer {
    background-color: hsl(var(--card));
    padding: 4rem 0 2rem;
    margin-top: auto;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Neon efektleri */
.next-neon-text-purple {
    color: hsl(var(--neon-purple));
    text-shadow: var(--neon-shadow-purple);
}

.next-neon-text-blue {
    color: hsl(var(--neon-blue));
    text-shadow: var(--neon-shadow-blue);
}

.next-neon-text-pink {
    color: hsl(var(--neon-pink));
    text-shadow: var(--neon-shadow-pink);
}

.next-neon-border {
    position: relative;
}

    .next-neon-border::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: var(--radius);
        padding: 1px;
        background: linear-gradient(45deg, hsl(var(--neon-purple)), hsl(var(--neon-blue)), hsl(var(--neon-pink)), hsl(var(--neon-purple)) );
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

.next-glow {
    position: relative;
}

    .next-glow::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 60%;
        background: linear-gradient(to bottom, rgba(125, 59, 255, 0.1), rgba(0, 174, 255, 0.05), transparent);
        filter: blur(60px);
        z-index: -1;
    }

    .next-glow::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 40%;
        background: linear-gradient(to top, rgba(255, 30, 143, 0.05), transparent);
        filter: blur(40px);
        z-index: -1;
    }

/* Hero bölümü */
.next-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
    background-color: hsl(var(--next-background));
    overflow: hidden;
}

    .next-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient( circle at 50% 50%, hsla(var(--next-neon-purple), 0.15) 0%, transparent 50% );
        z-index: 1;
    }

    .next-hero::after {
        content: '';
        position: absolute;
        bottom: -50%;
        left: -20%;
        width: 140%;
        height: 120%;
        background: radial-gradient( ellipse at 30% 80%, hsla(var(--next-neon-blue), 0.2) 0%, transparent 60% ), radial-gradient( ellipse at 70% 60%, hsla(var(--next-neon-pink), 0.2) 0%, transparent 60% );
        z-index: 1;
    }

    .next-hero > * {
        position: relative;
        z-index: 10;
    }

.next-hero-title {
    font-family: "Radio Grotesk", system-ui, sans-serif;
    font-weight: 700;
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: hsl(var(--next-foreground));
}

.next-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: hsla(var(--next-foreground), 0.8);
    max-width: 42rem;
}

.next-hero-image {
    position: relative;
}

    .next-hero-image img {
        position: relative;
        z-index: 2;
    }

    .next-hero-image::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 80%;
        height: 80%;
        transform: translate(-50%, -50%);
        background: radial-gradient( circle, hsla(var(--next-neon-purple), 0.3) 0%, transparent 70% );
        filter: blur(40px);
        z-index: 1;
    }

/* Neon Text Effect */
.next-neon-text-purple {
    color: hsl(var(--next-neon-purple));
    text-shadow: 0 0 10px hsla(var(--next-neon-purple), 0.5), 0 0 20px hsla(var(--next-neon-purple), 0.3);
}

.next-neon-text-blue {
    color: hsl(var(--next-neon-blue));
    text-shadow: 0 0 10px hsla(var(--next-neon-blue), 0.5), 0 0 20px hsla(var(--next-neon-blue), 0.3);
}

.next-neon-text-pink {
    color: hsl(var(--next-neon-pink));
    text-shadow: 0 0 10px hsla(var(--next-neon-pink), 0.5), 0 0 20px hsla(var(--next-neon-pink), 0.3);
}

/* Neon Border */
.next-neon-border {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    z-index: 1;
}

    .next-neon-border::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient( 90deg, transparent 0%, hsl(var(--next-neon-purple)) 30%, hsl(var(--next-neon-blue)) 50%, hsl(var(--next-neon-pink)) 70%, transparent 100% );
        z-index: -1;
        filter: blur(4px);
    }

/* Glow Effect */
.next-glow {
    position: relative;
}

    .next-glow::before {
        content: '';
        position: absolute;
        top: 20%;
        left: -10%;
        width: 50%;
        height: 40%;
        background: radial-gradient( circle, hsla(var(--next-neon-blue), 0.3) 0%, transparent 70% );
        filter: blur(60px);
        z-index: 1;
    }

    .next-glow::after {
        content: '';
        position: absolute;
        bottom: 10%;
        right: -10%;
        width: 50%;
        height: 40%;
        background: radial-gradient( circle, hsla(var(--next-neon-pink), 0.3) 0%, transparent 70% );
        filter: blur(60px);
        z-index: 1;
    }

/* UI bileşenleri */
.next-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.2s ease;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    letter-spacing: -0.01em;
    line-height: 1;
    font-size: 1rem;
    white-space: nowrap;
    border: none;
}

.next-btn-primary {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    box-shadow: var(--neon-shadow-purple);
}

    .next-btn-primary:hover {
        background-color: hsl(var(--primary) / 0.9);
        transform: translateY(-2px);
        box-shadow: 0 0 15px rgba(125, 59, 255, 0.6), 0 0 30px rgba(125, 59, 255, 0.4);
    }

.next-btn-secondary {
    background-color: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
    box-shadow: var(--neon-shadow-blue);
}

    .next-btn-secondary:hover {
        background-color: hsl(var(--secondary) / 0.9);
        transform: translateY(-2px);
        box-shadow: 0 0 15px rgba(0, 174, 255, 0.6), 0 0 30px rgba(0, 174, 255, 0.4);
    }

.next-btn-accent {
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
    box-shadow: var(--neon-shadow-pink);
}

    .next-btn-accent:hover {
        background-color: hsl(var(--accent) / 0.9);
        transform: translateY(-2px);
        box-shadow: 0 0 15px rgba(255, 30, 143, 0.6), 0 0 30px rgba(255, 30, 143, 0.4);
    }

.next-btn-outline {
    background-color: transparent;
    border: 1px solid hsla(var(--foreground) / 0.2);
    color: hsl(var(--foreground));
    backdrop-filter: blur(4px);
}

    .next-btn-outline:hover {
        border-color: hsla(var(--foreground) / 0.4);
        background-color: hsla(var(--foreground) / 0.05);
        transform: translateY(-2px);
    }

.next-btn-link {
    background-color: transparent;
    color: hsl(var(--foreground));
    padding: 0;
    height: auto;
    text-decoration: none;
}

    .next-btn-link:hover {
        text-decoration: underline;
    }

.next-btn-icon {
    padding: 0.6em;
}

    .next-btn-icon svg {
        width: 1.4em;
        height: 1.4em;
    }

.next-card {
    background-color: hsl(var(--card));
    border-radius: var(--radius);
    border: 1px solid hsla(var(--border) / 0.5);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

    .next-card:hover {
        transform: translateY(-4px);
    }

.next-card-highlight {
    position: relative;
}

    .next-card-highlight::before {
        content: '';
        position: absolute;
        inset: 0;
        padding: 2px;
        background: linear-gradient(135deg, hsl(var(--neon-purple)), hsl(var(--neon-blue)), hsl(var(--neon-pink)), hsl(var(--neon-purple)) );
        border-radius: var(--radius);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

.next-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    border: 1px solid hsl(var(--input));
    background-color: hsla(var(--input) / 0.3);
    color: hsl(var(--foreground));
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    backdrop-filter: blur(4px);
}

    .next-input:focus {
        outline: none;
        border-color: hsl(var(--primary));
        box-shadow: 0 0 0 3px hsla(var(--primary) / 0.25);
    }

.next-label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.next-heading-1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: hsl(var(--foreground));
    margin-bottom: 2rem;
}

.next-heading-2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: hsl(var(--foreground));
    margin-bottom: 2rem;
}

.next-heading-3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: hsl(var(--foreground));
    margin-bottom: 2rem;
}

.next-text-large {
    font-size: 1.25rem;
    line-height: 1.5;
}

.next-text-base {
    font-size: 1rem;
    line-height: 1.5;
}

.next-text-small {
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Utilityler */
.next-relative {
    position: relative;
}

.next-flex {
    display: flex;
}

.next-items-center {
    align-items: center;
}

.next-justify-between {
    justify-content: space-between;
}

.next-gap-2 {
    gap: 0.5rem;
}

.next-gap-4 {
    gap: 1rem;
}

.next-gap-6 {
    gap: 1.5rem;
}

.next-gap-8 {
    gap: 2rem;
}

.next-grid {
    display: grid;
    gap: 1rem;
}

@media screen and (max-width: 768px) {
    .next-grid-mobile-fix {
        gap: 6rem !important;
    }
}

.next-grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.next-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.next-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.next-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .next-md-grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .next-md-grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .next-md-grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.next-py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.next-py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.next-py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.next-py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.next-px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.next-px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.next-mt-2 {
    margin-top: 0.5rem;
}

.next-mt-4 {
    margin-top: 1rem;
}

.next-mb-2 {
    margin-bottom: 0.5rem;
}

.next-mb-4 {
    margin-bottom: 1rem;
}

.next-mb-6 {
    margin-bottom: 1.5rem;
}

.next-mb-8 {
    margin-bottom: 2rem;
}

.next-space-y-2 > * + * {
    margin-top: 0.5rem;
}

.next-space-y-4 > * + * {
    margin-top: 1rem;
}

.next-space-y-6 > * + * {
    margin-top: 1.5rem;
}

.next-space-y-8 > * + * {
    margin-top: 2rem;
}

.next-text-center {
    text-align: center;
}

/* Animasyonlar */
.next-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.next-slide-up {
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.next-slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
    opacity: 0;
    transform: translateX(30px);
}

@keyframes slideInRight {
    from {
        transform: translateX(30px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.next-slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
    opacity: 0;
    transform: translateX(-30px);
}

@keyframes slideInLeft {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.next-scale-in {
    animation: scaleIn 0.8s ease-out forwards;
    opacity: 0;
    transform: scale(0.9);
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Animasyon gecikmeleri */
.next-delay-100 {
    animation-delay: 100ms;
}

.next-delay-200 {
    animation-delay: 200ms;
}

.next-delay-300 {
    animation-delay: 300ms;
}

.next-delay-400 {
    animation-delay: 400ms;
}

.next-delay-500 {
    animation-delay: 500ms;
}

/* Floating buttons */
.next-floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 40;
}

.next-floating-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    box-shadow: var(--neon-shadow-purple);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    backdrop-filter: blur(10px);
}

    .next-floating-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 15px rgba(125, 59, 255, 0.6), 0 0 30px rgba(125, 59, 255, 0.4);
    }

/* Komut paleti */
.next-command-palette {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(420px, 90vw);
    background-color: hsla(var(--card) / 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    padding: 0.75rem;
    border: 1px solid hsla(var(--border) / 0.5);
    z-index: 1000;
}

    .next-command-palette::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: var(--radius);
        padding: 1px;
        background: linear-gradient(45deg, hsla(var(--neon-purple) / 0.7), hsla(var(--neon-blue) / 0.7), hsla(var(--neon-pink) / 0.7), hsla(var(--neon-purple) / 0.7) );
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

.next-command-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: transparent;
    color: hsl(var(--foreground));
    border: none;
    font-size: 1rem;
    font-family: inherit;
}

    .next-command-input:focus {
        outline: none;
    }

.next-command-list {
    margin-top: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.next-command-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .next-command-item:hover {
        background-color: hsla(var(--foreground) / 0.05);
    }

.next-command-item-active {
    background-color: hsla(var(--foreground) / 0.08);
}

.next-command-item-icon {
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--primary));
}

.next-command-item-text {
    flex: 1;
}

.next-command-item-shortcut {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
}

/* Responsive utilities */
@media (max-width: 768px) {
    .next-hidden-mobile {
        display: none;
    }

    .next-header {
        position: relative;
        background-color: hsl(var(--background));
    }

    .next-hero {
        padding-top: 0;
    }

    .next-hero-title {
        font-size: 3rem;
    }

    .next-hero-subtitle {
        font-size: 1.125rem;
    }
}

@media (min-width: 769px) {
    .next-hidden-desktop {
        display: none;
    }
}

@media (max-width: 640px) {
    .next-hero-title {
        font-size: 2.5rem;
    }

    .next-hero-subtitle {
        font-size: 1rem;
    }
}

/* Offcanvas mobile menu */
.next-offcanvas {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background-color: var(--next-bg-color);
    z-index: 1050;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

    .next-offcanvas.active {
        right: 0;
    }

.next-offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

    .next-offcanvas-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.next-offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.next-offcanvas-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.next-offcanvas-close {
    background: none;
    border: none;
    color: var(--next-text-color);
    cursor: pointer;
}

.next-offcanvas-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.next-offcanvas-footer {
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.next-offcanvas-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next-offcanvas-menu-item {
    margin-bottom: 0.5rem;
}

.next-offcanvas-menu-link {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: var(--next-text-color);
    text-decoration: none;
    transition: background-color 0.2s ease;
}

    .next-offcanvas-menu-link:hover,
    .next-offcanvas-menu-link.active {
        background-color: rgba(255, 255, 255, 0.1);
    }

.next-offcanvas-menu-icon {
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile bottom navigation */
.next-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--next-bg-color);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    padding: 0.5rem 0;
    backdrop-filter: blur(5px);
}

.next-bottom-nav-menu {
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding: 0;
    margin: 0;
}

.next-bottom-nav-item {
    flex: 1;
    text-align: center;
}

.next-bottom-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    color: var(--next-text-color);
    text-decoration: none;
    font-size: 0.7rem;
    transition: color 0.2s ease;
}

    .next-bottom-nav-link:hover,
    .next-bottom-nav-link.active {
        color: var(--next-neon-color-blue);
    }

.next-bottom-nav-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-bottom: 0.25rem;
}

.next-bottom-nav-text {
    white-space: nowrap;
    font-size: 0.7rem;
}

/* Modern animations */
.next-blur-in {
    animation: blurIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes blurIn {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: scale(0.95);
    }

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

.next-glow-in {
    animation: glowIn 1.2s ease forwards;
}

@keyframes glowIn {
    0% {
        opacity: 0;
        text-shadow: none;
    }

    100% {
        opacity: 1;
        text-shadow: 0 0 15px var(--next-neon-color-purple), 0 0 20px var(--next-neon-color-purple);
    }
}

.next-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

.next-pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.next-reveal {
    position: relative;
    overflow: hidden;
}

    .next-reveal::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, hsla(var(--neon-purple), 0.2), hsla(var(--neon-blue), 0.2), transparent );
        transform: translateX(-100%);
        animation: reveal 1.5s ease-in-out forwards;
    }

@keyframes reveal {
    to {
        transform: translateX(100%);
    }
}

/* Animation delays */
.next-delay-0 {
    animation-delay: 0s;
}

.next-delay-100 {
    animation-delay: 0.1s;
}

.next-delay-200 {
    animation-delay: 0.2s;
}

.next-delay-300 {
    animation-delay: 0.3s;
}

.next-delay-400 {
    animation-delay: 0.4s;
}

.next-delay-500 {
    animation-delay: 0.5s;
}

.next-delay-600 {
    animation-delay: 0.6s;
}

.next-delay-700 {
    animation-delay: 0.7s;
}

.next-delay-800 {
    animation-delay: 0.8s;
}

.next-delay-900 {
    animation-delay: 0.9s;
}

.next-delay-1000 {
    animation-delay: 1s;
}

/* Adjust main padding for bottom nav on mobile */
@media (max-width: 768px) {
    .next-main {
        padding-bottom: 4rem; /* Add space for the bottom nav */
    }

    .next-footer {
        padding-bottom: 4rem; /* Add space for the bottom nav */
    }
}

/* Scroll Top Button Visibility */
#scrollTopBtn {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Fixed Button - Bottom Right */
.next-floating-buttons {
    position: fixed;
    bottom: 5rem; /* Adjusted for mobile bottom nav */
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 990;
}

@media (min-width: 768px) {
    .next-floating-buttons {
        bottom: 2rem; /* Standard position on desktop */
    }
}

/* WhatsApp Fixed Button - Left Side */
.whatsapp-fixed-btn {
    position: fixed;
    left: 1rem;
    bottom: 5rem; /* Adjusted for mobile bottom nav */
    width: 56px;
    height: 56px;
    background-color: #25D366; /* WhatsApp green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 990;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .whatsapp-fixed-btn:hover {
        background-color: #20BA5A;
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
        color: white;
    }

    .whatsapp-fixed-btn i {
        width: 28px;
        height: 28px;
    }

@media (min-width: 768px) {
    .whatsapp-fixed-btn {
        bottom: 2rem; /* Standard position on desktop */
        left: 2rem;
    }
}

@media (max-width: 767px) {
    .whatsapp-fixed-btn {
        width: 52px;
        height: 52px;
        left: 0.75rem;
    }

        .whatsapp-fixed-btn i {
            width: 24px;
            height: 24px;
        }
}

/* Animasyonlar */
@keyframes next-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

@keyframes next-fade-left {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes next-fade-right {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes next-fade-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes next-fade-down {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes next-zoom-in {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes next-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes next-flip {
    0% {
        opacity: 0;
        transform: perspective(400px) rotateX(90deg);
    }

    100% {
        opacity: 1;
        transform: perspective(400px) rotateX(0deg);
    }
}

/* WOW Animasyon Sınıfları */
.next-bounce {
    animation: next-bounce 1s;
}

.next-fade-left {
    animation: next-fade-left 0.8s ease forwards;
}

.next-fade-right {
    animation: next-fade-right 0.8s ease forwards;
}

.next-fade-up {
    animation: next-fade-up 0.8s ease forwards;
}

.next-fade-down {
    animation: next-fade-down 0.8s ease forwards;
}

.next-zoom-in {
    animation: next-zoom-in 0.8s ease forwards;
}

.next-pulse {
    animation: next-pulse 2s infinite;
}

.next-flip {
    animation: next-flip 0.8s ease forwards;
}

/* Navigasyon Animasyonu */
.next-nav a:not(.next-logo) {
    position: relative;
    transition: all 0.3s ease;
}

    .next-nav a:not(.next-logo)::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -4px;
        left: 0;
        background: linear-gradient(90deg, hsl(var(--neon-blue)) 0%, hsl(var(--neon-purple)) 50%, hsl(var(--neon-pink)) 100%);
        box-shadow: var(--neon-shadow-blue);
        transition: width 0.3s ease, left 0.3s ease;
        transform-origin: bottom right;
        opacity: 0;
    }

    .next-nav a:not(.next-logo):hover::after,
    .next-nav a:not(.next-logo).next-nav-hover::after {
        width: 100%;
        opacity: 1;
        left: 0;
    }

/* Çerez izin bildirimi stilleri */
.next-cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: hsl(var(--card));
    padding: 0;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.next-cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.next-cookie-content {
    color: hsl(var(--foreground));
    flex: 1;
    min-width: 280px;
    margin-right: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.next-cookie-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.next-cookie-text {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.next-cookie-link {
    color: hsl(var(--neon-blue));
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s;
}

    .next-cookie-link:hover {
        color: hsl(var(--secondary));
    }

.next-cookie-divider {
    border: none;
    border-top: 1px solid hsl(var(--border));
    margin: 0.5rem 0;
}

.next-cookie-button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.next-cookie-button-accept {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    box-shadow: var(--neon-shadow-purple);
}

    .next-cookie-button-accept:hover {
        background-color: hsl(var(--primary) / 0.9);
        transform: translateY(-2px);
        box-shadow: 0 0 15px rgba(125, 59, 255, 0.6), 0 0 30px rgba(125, 59, 255, 0.4);
    }

@media (max-width: 768px) {
    .next-cookie-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .next-cookie-content {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 100%;
    }

    .next-cookie-button {
        align-self: flex-end;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
}

.next-space-y-2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.next-border-t {
    border: 1px solid #8080803d;
    padding: 1rem;
}

/* Next Alert Notifications - Sağ alttan çıkan bildirimler */
.next-alert {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    min-width: 300px;
    max-width: 500px;
    padding: 1rem 1.5rem;
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    animation: slideInFromRight 0.3s ease-out, fadeOut 0.3s ease-in 4.7s forwards;
    opacity: 1;
}

    .next-alert span {
        flex: 1;
        color: #ffffff;
        font-size: 0.95rem;
        line-height: 1.5;
    }

.next-alert-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

    .next-alert-close:hover {
        opacity: 0.7;
    }

    .next-alert-close span {
        line-height: 1;
    }

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Alert tipleri - hepsi aynı stil (siyah bg, beyaz text, beyaz border) */
.next-alert-success,
.next-alert-danger,
.next-alert-warning,
.next-alert-info,
.next-alert-details {
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #ffffff;
}

@media (max-width: 768px) {
    .next-alert {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        min-width: auto;
        max-width: none;
    }
}

.flex-column {
    flex-direction: column;
}
