 :root {
            --primary-dark: #0f0514;
            --secondary-dark: #1a0b2e;
            --accent-purple: #8A2BE2;
            --accent-pink: #FF1493;
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.7);
            --glass-bg: rgba(26, 11, 46, 0.8);
            --neon-purple: 0 0 10px rgba(138, 43, 226, 0.4),
                          0 0 20px rgba(138, 43, 226, 0.3),
                          0 0 30px rgba(138, 43, 226, 0.2);
            --space-gradient: linear-gradient(45deg, #1a0b2e, #2b0b45);
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
            color: var(--text-primary);
            min-height: 100vh;
            margin: 0;
            overflow-x: hidden;
        }

       /* Navbar Styles */
    .main-navbar {
        background: rgba(26, 11, 46, 0.8);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(138, 43, 226, 0.2);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        padding: 0.75rem 0;
    }

    .navbar-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-logo {
        color: #ffffff;
        font-size: 1.5rem;
        font-weight: 600;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        text-shadow: 0 0 10px rgba(138, 43, 226, 0.4),
                    0 0 20px rgba(138, 43, 226, 0.3),
                    0 0 30px rgba(138, 43, 226, 0.2);
    }

    .navbar-logo i {
        color: #8A2BE2;
    }

    .navbar-toggle {
        display: none;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }

    .toggle-icon {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .toggle-icon span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: #ffffff;
        transition: 0.3s ease;
    }

    .navbar-menu {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }

    .menu-links {
        display: flex;
        gap: 2rem;
        align-items: center;
    }

    .menu-link {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem;
        transition: 0.3s ease;
        position: relative;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .menu-link:hover,
    .menu-link.active {
        color: #ffffff;
    }

    .menu-link.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(45deg, #8A2BE2, #FF1493);
        box-shadow: 0 0 10px rgba(138, 43, 226, 0.4),
                    0 0 20px rgba(138, 43, 226, 0.3),
                    0 0 30px rgba(138, 43, 226, 0.2);
    }

    .profile-link,
    .logout-link {
        padding: 0.5rem 1rem;
        border-radius: 20px;
        border: 1px solid rgba(138, 43, 226, 0.2);
    }

    .profile-link:hover,
    .logout-link:hover {
        background: rgba(26, 11, 46, 0.8);
        box-shadow: 0 0 10px rgba(138, 43, 226, 0.4),
                    0 0 20px rgba(138, 43, 226, 0.3),
                    0 0 30px rgba(138, 43, 226, 0.2);
    }

/* Mobil & Tablet Görünüm */
@media (max-width: 1199px) {
        .navbar-toggle {
            display: block;
        }

        .navbar-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(26, 11, 46, 0.8);
            padding: 1rem;
            z-index: 100;
        }

        .navbar-menu.show {
            display: block;
        }

        .menu-links {
            flex-direction: column;
            gap: 0.8rem;
        }
    }


        /* Hero Section */
        .hero-section {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .hero-background::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(0deg, rgba(15, 5, 20, 0.8), rgba(15, 5, 20, 0.4));
        }

        .hero-background video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.6;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            margin-top: 3rem;
            position: relative;
            letter-spacing: 2px;
            background: linear-gradient(45deg, var(--accent-purple), var(--accent-pink), #9c27b0, #e91e63);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 300% 300%;
            animation: gradientShift 8s ease infinite, titleReveal 1s ease-out forwards;
            opacity: 0;
            transform: translateY(-20px);
            text-transform: uppercase;
        }

        .hero-title::after {
            content: 'CİNEFİA';
            position: absolute;
            left: 0;
            top: 0;
            color: transparent;
            -webkit-text-stroke: 1px rgba(138, 43, 226, 0.2);
            z-index: -1;
            animation: glowPulse 2s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

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

        @keyframes glowPulse {
            0%, 100% {
                filter: drop-shadow(0 0 15px rgba(138, 43, 226, 0.3));
                transform: scale(1.01);
            }
            50% {
                filter: drop-shadow(0 0 25px rgba(138, 43, 226, 0.5));
                transform: scale(1);
            }
        }


        .hero-subtitle {
            font-size: 2rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-align: center;
            animation: subtitleFade 1.2s ease-in-out forwards;
            opacity: 0;
            transform: translateY(20px);
        }

        .accent-text {
            position: relative;
            background: linear-gradient(120deg, var(--accent-purple), var(--accent-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }

        .accent-text::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-purple), transparent);
            transform-origin: left;
            animation: underlineSlide 0.8s ease-out forwards 1.2s;
        }

        @keyframes underlineSlide {
            from {
                transform: scaleX(0);
            }
            to {
                transform: scaleX(1);
            }
        }

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

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            opacity: 0.7;
        }

        /* Buttons */
        .space-btn {
            background: linear-gradient(45deg, var(--accent-purple), #4B0082);
            color: var(--text-primary);
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            margin: 0.5rem;
            z-index: 1;
            text-decoration: none;
            display: inline-block;
        }

        .space-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #8A2BE2, #FF1493);
            opacity: 0;
            z-index: -1;
            transition: opacity 0.3s ease;
        }

        .space-btn:hover::before {
            opacity: 1;
        }

        .space-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 20px rgba(138, 43, 226, 0.6);
            color: white;
        }

        .space-btn-outline {
            background: transparent;
            border: 2px solid var(--accent-purple);
            color: var(--text-primary);
            font-size: 0.85rem;
        }

        @media (max-width: 768px) {
            .space-btn {
                padding: 0.8rem 1.6rem;
                font-size: 0.9rem;
                margin: 0.3rem;
            }
            
            .space-btn-outline {
                font-size: 0.9rem;
                padding: 0.8rem 1.6rem;
            }
        }

        /* Problem Solution Section */
        .problem-solution {
            padding: 4rem 0;
            background: rgba(15, 5, 20, 0.8);
        }

        .solution-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            padding: 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .solution-card {
            background: var(--glass-bg);
            border-radius: 12px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(138, 43, 226, 0.1);
            backdrop-filter: blur(10px);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            position: relative;
            overflow: hidden;
        }

        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--accent-purple), var(--accent-pink));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .solution-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(138, 43, 226, 0.15);
            border-color: rgba(138, 43, 226, 0.3);
        }

        .solution-card:hover::before {
            opacity: 1;
        }

        .solution-icon {
            font-size: 1.8rem;
            color: var(--accent-purple);
            margin-bottom: 1rem;
            background: rgba(138, 43, 226, 0.1);
            width: 45px;
            height: 45px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .solution-card:hover .solution-icon {
            background: var(--accent-purple);
            color: white;
            transform: scale(1.1);
        }

        .solution-title {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
            color: var(--text-primary);
            font-weight: 600;
            line-height: 1.3;
        }

        .solution-text {
            color: var(--text-secondary);
            line-height: 1.5;
            font-size: 0.95rem;
            margin: 0;
        }


        /* Problem Section Title Styles */
        .problem-title {
            margin-bottom: 4rem;
            position: relative;
        }

        .problem-title::before,
        .problem-title::after {
            content: '?';
            position: absolute;
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-purple);
            opacity: 0.1;
            font-family: 'Arial', sans-serif;
        }

        .problem-title::before {
            left: 20%;
            transform: translateX(-50%) rotate(-15deg);
            animation: float-left 3s ease-in-out infinite;
        }

        .problem-title::after {
            right: 20%;
            transform: translateX(50%) rotate(15deg);
            animation: float-right 3s ease-in-out infinite;
        }

        .problem-decoration {
            position: relative;
            overflow: visible;
        }

        .decoration-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1.2rem;
            color: white;
            background: var(--accent-purple);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse-question 2s infinite;
        }

        @keyframes float-left {
            0%, 100% {
                transform: translateX(-50%) rotate(-15deg) translateY(0);
            }
            50% {
                transform: translateX(-50%) rotate(-15deg) translateY(-10px);
            }
        }

        @keyframes float-right {
            0%, 100% {
                transform: translateX(50%) rotate(15deg) translateY(0);
            }
            50% {
                transform: translateX(50%) rotate(15deg) translateY(-10px);
            }
        }

        @keyframes pulse-question {
            0% {
                box-shadow: 0 0 0 0 rgba(138, 43, 226, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(138, 43, 226, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(138, 43, 226, 0);
            }
        }

       
        /* How it Works Section */
        .how-it-works {
            padding: 6rem 0;
            background: var(--space-gradient);
            position: relative;
            overflow: hidden;
        }

        .how-it-works::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: linear-gradient(45deg, rgba(138, 43, 226, 0.1), rgba(0, 0, 0, 0));
            pointer-events: none;
        }

        .timeline {
            display: flex;
            justify-content: space-between;
            align-items: stretch;
            padding: 3rem 1rem;
            position: relative;
            overflow-x: auto;
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
            scrollbar-width: thin;
            scrollbar-color: var(--accent-purple) transparent;
        }

        .timeline::-webkit-scrollbar {
            height: 6px;
        }

        .timeline::-webkit-scrollbar-track {
            background: rgba(138, 43, 226, 0.1);
            border-radius: 10px;
        }

        .timeline::-webkit-scrollbar-thumb {
            background: var(--accent-purple);
            border-radius: 10px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 30px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(to right, var(--accent-purple), var(--accent-pink));
            transform: translateY(-50%);
            z-index: 0;
            opacity: 0.3;
        }

        .timeline-item {
            flex: 1;
            min-width: 280px;
            max-width: 320px;
            background: var(--glass-bg);
            border-radius: 15px;
            padding: 1.8rem;
            position: relative;
            z-index: 1;
            border: 1px solid rgba(138, 43, 226, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, var(--accent-purple), var(--accent-pink));
            border-radius: 15px 15px 0 0;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .timeline-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(138, 43, 226, 0.2);
            border-color: rgba(138, 43, 226, 0.3);
        }

        .timeline-item:hover::before {
            opacity: 1;
        }

        .timeline-icon {
            width: 65px;
            height: 65px;
            background: rgba(138, 43, 226, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            color: var(--accent-purple);
            transition: all 0.4s ease;
            position: relative;
        }

        .timeline-icon::after {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 14px;
            background: linear-gradient(45deg, var(--accent-purple), var(--accent-pink));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .timeline-item:hover .timeline-icon {
            background: var(--accent-purple);
            color: white;
            transform: scale(1.1) rotate(5deg);
        }

        .timeline-item:hover .timeline-icon::after {
            opacity: 1;
        }

        .timeline-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .timeline-content h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
            font-weight: 600;
            background: linear-gradient(to right, var(--accent-purple), var(--accent-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .timeline-content p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .timeline-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: auto;
        }

        .timeline-features span {
            font-size: 0.85rem;
            color: var(--text-secondary);
            background: rgba(138, 43, 226, 0.08);
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(138, 43, 226, 0.1);
        }

        .timeline-features span:hover {
            background: rgba(138, 43, 226, 0.15);
            transform: translateY(-2px);
        }

        .timeline-features i {
            font-size: 0.9rem;
            color: var(--accent-purple);
        }

       

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--text-primary);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .title-accent {
            background: linear-gradient(to right, var(--accent-purple), var(--accent-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }

        .title-decoration {
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 4px;
            background: linear-gradient(to right, var(--accent-purple), var(--accent-pink));
            border-radius: 2px;
        }

        .title-decoration::before,
        .title-decoration::after {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-purple);
            top: 50%;
            transform: translateY(-50%);
            animation: pulse 2s infinite;
        }

        .title-decoration::before {
            left: -4px;
            animation-delay: 0s;
        }

        .title-decoration::after {
            right: -4px;
            animation-delay: 1s;
        }

        @keyframes pulse {
            0% {
                transform: translateY(-50%) scale(1);
                opacity: 1;
            }
            50% {
                transform: translateY(-50%) scale(1.5);
                opacity: 0.5;
            }
            100% {
                transform: translateY(-50%) scale(1);
                opacity: 1;
            }
        }

        .section-title::before,
        .section-title::after {
            content: '{ }';
            position: absolute;
            font-size: 1.5rem;
            color: var(--accent-purple);
            opacity: 0.3;
            font-family: monospace;
        }

        .section-title::before {
            left: 25%;
            transform: translateX(-50%);
        }

        .section-title::after {
            right: 25%;
            transform: translateX(50%);
        }

       
        /* Features Grid */
        .features {
            padding: 6rem 0;
            background: linear-gradient(135deg, rgba(15, 5, 20, 0.95), rgba(30, 10, 40, 0.95));
            position: relative;
        }

        .features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('path/to/pattern.png') repeat;
            opacity: 0.05;
            pointer-events: none;
        }

        .feature-card {
            background: var(--glass-bg);
            border-radius: 15px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(138, 43, 226, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--accent-purple), var(--accent-pink));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: rgba(138, 43, 226, 0.3);
            box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(138, 43, 226, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            color: var(--accent-purple);
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .feature-card:hover .feature-icon {
            background: var(--accent-purple);
            color: white;
            transform: scale(1.1) rotate(10deg);
        }

        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
            position: relative;
            z-index: 1;
            font-weight: 600;
        }

        .feature-card p {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 0.95rem;
            position: relative;
            z-index: 1;
        }

       

        /* Discover CTA */
        .discover-cta {
            position: relative;
            padding: 8rem 0;
            background: linear-gradient(135deg, rgba(20, 10, 30, 0.95), rgba(40, 15, 60, 0.95)), 
                        url('assets/img/pattern-bg.jpg') center/cover;
            overflow: hidden;
        }

        .discover-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(138, 43, 226, 0.2), transparent 60%);
            animation: glowPulse 4s ease-in-out infinite;
        }

        .discover-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .discover-wrapper {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            border: 1px solid rgba(138, 43, 226, 0.2);
            box-shadow: 0 0 30px rgba(138, 43, 226, 0.1);
            backdrop-filter: blur(10px);
            transform: translateY(20px);
            opacity: 0;
            animation: wrapperReveal 0.8s ease-out forwards;
        }

        .discover-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 3rem;
            line-height: 1.2;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .discover-text {
            color: var(--text-primary);
            opacity: 0.9;
        }

        .discover-highlight {
            background: linear-gradient(120deg, var(--accent-purple), var(--accent-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            display: inline-block;
        }

        .discover-highlight::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-purple), var(--accent-pink), transparent);
            transform: scaleX(0);
            animation: highlightReveal 0.8s ease-out forwards 0.5s;
        }

        .discover-buttons {
            position: relative;
        }

        .discover-btn {
            position: relative;
            padding: 1rem 2.5rem;
            font-size: 1.2rem;
            font-weight: 600;
            overflow: hidden;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-content {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            position: relative;
            z-index: 1;
        }

        .btn-icon {
            font-size: 1.3rem;
            transition: transform 0.3s ease;
        }

        .btn-shine {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent,
                rgba(255, 255, 255, 0.1),
                transparent
            );
            transform: translateX(-100%);
            animation: shine 3s infinite;
        }

        @keyframes patternFloat {
            from {
                transform: translateY(0);
            }
            to {
                transform: translateY(-100%);
            }
        }

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

        @keyframes highlightReveal {
            to {
                transform: scaleX(1);
            }
        }

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

        .discover-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
        }

        .discover-btn:hover .btn-icon {
            transform: translateX(3px) rotate(15deg);
        }

        

        /* Footer */
        .footer {
            position: relative;
            background: linear-gradient(135deg, rgba(20, 10, 30, 0.97), rgba(40, 15, 60, 0.97));
            padding: 6rem 0 2rem;
            color: var(--text-secondary);
            overflow: hidden;
        }

        .footer-waves {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            transform: rotate(180deg);
        }

        .wave {
            position: absolute;
            top: -50px;
            left: 0;
            width: 200%;
            height: 50px;
            background: url('assets/img/wave.svg') repeat-x;
            animation: wave 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
            transform-origin: center bottom;
            opacity: 0.1;
        }

        #wave1 { z-index: 4; opacity: 0.3; animation-delay: 0s; }
        #wave2 { z-index: 3; opacity: 0.2; animation-delay: 2s; }
        #wave3 { z-index: 2; opacity: 0.1; animation-delay: 4s; }
        #wave4 { z-index: 1; opacity: 0.05; animation-delay: 6s; }

        @keyframes wave {
            0% { transform: translateX(0) translateZ(0) scaleY(1) }
            50% { transform: translateX(-25%) translateZ(0) scaleY(0.8) }
            100% { transform: translateX(-50%) translateZ(0) scaleY(1) }
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 2fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand {
            padding-right: 2rem;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(120deg, var(--accent-purple), var(--accent-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }

        .footer-desc {
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--accent-purple);
            color: white;
            transform: translateY(-3px);
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .footer-section h5 {
            color: var(--text-primary);
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section ul a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-section ul a:hover {
            color: var(--accent-purple);
            transform: translateX(5px);
        }

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

        .copyright {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .footer-legal {
            display: flex;
            gap: 2rem;
        }

        .footer-legal a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: var(--accent-purple);
        }

        

        .special-link {
            position: relative;
            background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            padding-right: 20px;
        }

        .special-link i {
            font-size: 0.7em;
            margin-right: 5px;
            animation: starTwinkle 1.5s ease-in-out infinite;
        }

        @keyframes starTwinkle {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.7;
                transform: scale(1.2);
            }
        }

        .space-btn-outline i {
            margin-right: 8px;
            transition: transform 0.3s ease;
        }

        .space-btn-outline:hover i {
            transform: rotate(45deg);
        }

        /* Modal */
        .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        z-index: 1000;
        overflow-y: auto;
    }

    .modal-content {
        position: relative;
        background: linear-gradient(135deg, rgba(30, 15, 45, 0.97), rgba(50, 20, 70, 0.97));
        margin: 5% auto;
        padding: 0;
        width: 70%;
        max-width: 800px;
        border-radius: 15px;
        box-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
        animation: modalFade 0.3s ease-out;
    }

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

    .modal-header h2 {
        color: var(--text-primary);
        margin: 0;
        font-size: 1.8rem;
        background: linear-gradient(120deg, var(--accent-purple), var(--accent-pink));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .modal-body {
        padding: 2rem;
        color: var(--text-secondary);
    }

    .modal-body h3 {
        color: var(--accent-purple);
        margin: 1.5rem 0 1rem;
    }

    .modal-body ul {
        list-style: none;
        padding-left: 0;
    }

    .modal-body ul li {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        position: relative;
    }

    .modal-body ul li::before {
        content: '•';
        color: var(--accent-purple);
        position: absolute;
        left: 0;
    }

    .close-modal {
        color: var(--text-secondary);
        font-size: 2rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .close-modal:hover {
        color: var(--accent-purple);
        transform: rotate(90deg);
    }

    @keyframes modalFade {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

   

    .footer-tmdb {
        text-align: center;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-tmdb p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .tmdb-logo {
        height: 15px;
        width: auto;
        opacity: 0.9;
        transition: opacity 0.3s ease;
    }

    .tmdb-logo:hover {
        opacity: 1;
    }

    .cookie-consent {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(30, 15, 45, 0.97), rgba(50, 20, 70, 0.97));
        padding: 1rem;
        z-index: 1000;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        animation: slideUp 0.5s ease-out;
    }

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

    .cookie-content p {
        color: var(--text-secondary);
        margin: 0;
        flex: 1;
    }

    .cookie-buttons {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    .cookie-accept {
        background: var(--accent-purple);
        color: white;
        border: none;
        padding: 0.5rem 1.5rem;
        border-radius: 25px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .cookie-accept:hover {
        background: var(--accent-pink);
        transform: translateY(-2px);
    }

    .cookie-learn-more {
        color: var(--text-secondary);
        text-decoration: none;
        padding: 0.5rem 1rem;
    }

    .cookie-learn-more:hover {
        color: var(--accent-purple);
    }

    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }

    

    .space-btn-login {
        background: linear-gradient(45deg, var(--accent-purple), var(--deep-purple));
        color: white;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: transform 0.3s ease;
    }

    .space-btn-login:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    }

    .space-btn-login i {
        margin-right: 5px;
    }

    
        /* Responsive düzenlemeler */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 3.5rem;
                letter-spacing: 1px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2.8rem;
            }
        }

        
        /* Responsive Tasarım */
        @media (max-width: 992px) {
            .solution-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.25rem;
            }
        }

        @media (max-width: 576px) {
            .solution-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
                padding: 0.5rem;
            }
            
            .solution-card {
                padding: 1.25rem;
            }
            
            .solution-title {
                font-size: 1.1rem;
            }
        }

         /* Responsive düzenlemeler */
         @media (max-width: 768px) {
            .problem-title::before,
            .problem-title::after {
                font-size: 2rem;
            }
            
            .problem-title::before {
                left: 15%;
            }
            
            .problem-title::after {
                right: 15%;
            }
        }

        @media (max-width: 576px) {
            .problem-title::before,
            .problem-title::after {
                display: none;
            }
            
            .decoration-icon {
                width: 25px;
                height: 25px;
                font-size: 1rem;
            }
        }

         /* Responsive Design */
         @media (max-width: 1200px) {
            .timeline-item {
                min-width: 250px;
            }
        }

        @media (max-width: 992px) {
            .timeline {
                flex-direction: column;
                align-items: center;
                padding: 1rem 0;
            }

            .timeline::before {
                display: none;
            }

            .timeline-item {
                width: 100%;
                max-width: 500px;
                margin-bottom: 1rem;
            }

            .timeline-item:hover {
                transform: translateY(-5px);
            }
        }

        @media (max-width: 576px) {
            .how-it-works {
                padding: 2rem 0;
            }

            .timeline {
                padding: 1rem 0;
            }

            .timeline-item {
                padding: 1.5rem;
            }

            .timeline-content h3 {
                font-size: 1.2rem;
            }

            .timeline-features {
                gap: 0.5rem;
            }

            .timeline-features span {
                padding: 0.3rem 0.6rem;
                font-size: 0.8rem;
            }
        }

         /* Responsive ayarlamalar */
         @media (max-width: 768px) {
            .section-title {
                font-size: 2.2rem;
            }

            .section-title::before,
            .section-title::after {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 1.8rem;
            }

            .title-decoration {
                width: 100px;
            }
        }

        /* Features Grid Responsive Tasarım */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            padding: 2rem 0;
            max-width: 1400px;
            margin: 0 auto;
        }

        @media (max-width: 1200px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
                padding: 1.5rem;
            }

            .feature-card {
                padding: 1.8rem;
            }
        }

        @media (max-width: 992px) {
            .features-grid {
                padding: 1rem;
            }

            .feature-card {
                padding: 1.5rem;
            }

            .feature-icon {
                width: 55px;
                height: 55px;
                font-size: 1.6rem;
            }
        }

        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.2rem;
            }

            .feature-card {
                padding: 1.3rem;
            }

            .feature-icon {
                width: 45px;
                height: 45px;
                font-size: 1.4rem;
                margin-bottom: 1rem;
            }

            .feature-card h3 {
                font-size: 1.1rem;
                margin-bottom: 0.5rem;
            }

            .feature-card p {
                font-size: 0.9rem;
                line-height: 1.4;
            }
        }

        @media (max-width: 576px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
                padding: 0.8rem;
            }

            .feature-card {
                padding: 1rem;
            }

            .feature-icon {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .feature-card h3 {
                font-size: 1rem;
            }

            .feature-card p {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 400px) {
            .features-grid {
                gap: 0.8rem;
                padding: 0.5rem;
            }

            .feature-card {
                padding: 0.8rem;
            }
        }

        /* Responsive düzenlemeler */
        @media (max-width: 768px) {
            .discover-title {
                font-size: 2.8rem;
            }
            
            .discover-wrapper {
                padding: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .discover-title {
                font-size: 2.2rem;
            }
            
            .discover-btn {
                padding: 0.8rem 2rem;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .footer-brand {
                padding-right: 0;
                text-align: center;
            }

            .footer-social {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .footer-legal {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .footer-links {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer {
                padding: 4rem 0 2rem;
            }
        }
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 3rem;
            }
            .hero-subtitle {
                font-size: 1.3rem;
            }
            .timeline {
                flex-direction: column;
                align-items: center;
            }
            .timeline::before {
                display: none;
            }
            .timeline-item {
                margin-bottom: 2rem;
            }
            .discover-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .modal-content {
                width: 90%;
                margin: 10% auto;
            }
        }

        @media (max-width: 768px) {
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-buttons {
                width: 100%;
                justify-content: center;
            }
        }

        /* ============ TABLET GÖRÜNÜMÜ (769px - 1024px) ============ */
        @media screen and (min-width: 769px) and (max-width: 1024px) {
            /* Hero Section - Tablet */
            .hero-title {
                font-size: 3.8rem;
                letter-spacing: 1.5px;
            }
            
            .hero-subtitle {
                font-size: 1.6rem;
            }
            
            /* Solution Grid - Tablet */
            .solution-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.3rem;
                padding: 1.2rem;
            }
            
            .solution-card {
                padding: 1.3rem;
            }
            
            .solution-icon {
                font-size: 1.6rem;
                width: 42px;
                height: 42px;
            }
            
            .solution-title {
                font-size: 1.15rem;
            }
            
            .solution-text {
                font-size: 0.92rem;
            }
            
            /* Features Grid - Tablet */
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.4rem;
                padding: 1.3rem;
            }
            
            .feature-card {
                padding: 1.6rem;
            }
            
            .feature-icon {
                width: 52px;
                height: 52px;
                font-size: 1.5rem;
            }
            
            .feature-card h3 {
                font-size: 1.2rem;
            }
            
            .feature-card p {
                font-size: 0.92rem;
            }
            
            /* Timeline - Tablet */
            .timeline {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                gap: 1.5rem;
                padding: 2rem 1rem;
            }
            
            .timeline-item {
                flex: 0 0 calc(50% - 1rem);
                min-width: 280px;
                max-width: 360px;
            }
            
            .timeline-icon {
                width: 58px;
                height: 58px;
                font-size: 1.6rem;
            }
            
            .timeline-content h3 {
                font-size: 1.25rem;
            }
            
            .timeline-content p {
                font-size: 0.9rem;
            }
            
            .timeline-features span {
                font-size: 0.82rem;
                padding: 0.35rem 0.7rem;
            }
            
            /* Section Title - Tablet */
            .section-title {
                font-size: 2.4rem;
            }
            
            .title-decoration {
                width: 130px;
            }
            
            /* Discover CTA - Tablet */
            .discover-title {
                font-size: 3rem;
            }
            
            .discover-wrapper {
                padding: 1.8rem;
                max-width: 700px;
            }
            
            .discover-btn {
                padding: 0.9rem 2.2rem;
                font-size: 1.1rem;
            }
            
            /* Buttons - Tablet */
            .space-btn {
                padding: 0.9rem 2rem;
                font-size: 1rem;
            }
            
            /* Footer - Tablet */
            .footer-content {
                grid-template-columns: 1fr 1.5fr;
                gap: 3rem;
            }
            
            .footer-links {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }
            
            .footer-section h5 {
                font-size: 1.1rem;
            }
            
            /* Modal - Tablet */
            .modal-content {
                width: 75%;
                margin: 8% auto;
            }
            
            .modal-header h2 {
                font-size: 1.6rem;
            }
            
            .modal-body {
                padding: 1.8rem;
            }
        }