
        :root {
            --neon-pink: #ff2a6d;
            --electric-blue: #05d9e8;
            --dark-purple: #2e2157;
            --cyber-yellow: #f9f002;
            --matrix-green: #0f0;
            --black: #010101;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }

        body {
            background-color: var(--black);
            color: white;
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 80px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(2, 2, 22, 0.9);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 2px solid var(--neon-pink);
            box-shadow: 0 0 15px var(--neon-pink);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img {
            height: 40px;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: bold;
            background: linear-gradient(90deg, var(--neon-pink), var(--electric-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 5px rgba(255, 42, 109, 0.5);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            position: relative;
            padding: 0.5rem 0;
        }

        nav a:hover {
            color: var(--neon-pink);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--neon-pink);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: white;
            transition: all 0.3s ease;
        }

        .burger.active div:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger.active div:nth-child(2) {
            opacity: 0;
        }

        .burger.active div:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        section {
            padding: 4rem 2rem;
            position: relative;
        }

        .hero {
            height: 90vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            color: white;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, var(--neon-pink), var(--electric-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(5, 217, 232, 0.5);
            animation: glow 2s infinite alternate;
        }

        @keyframes glow {
            from {
                text-shadow: 0 0 10px rgba(5, 217, 232, 0.5);
            }
            to {
                text-shadow: 0 0 20px rgba(255, 42, 109, 0.8), 0 0 30px rgba(5, 217, 232, 0.6);
            }
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin-bottom: 2rem;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: linear-gradient(45deg, var(--neon-pink), var(--electric-blue));
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 0 15px rgba(255, 42, 109, 0.5);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 20px rgba(5, 217, 232, 0.7);
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.5rem;
            color: var(--electric-blue);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--neon-pink), var(--electric-blue));
        }

        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
            align-items: center;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 20px var(--neon-pink);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature {
            background: rgba(46, 33, 87, 0.7);
            padding: 2rem;
            border-radius: 10px;
            border-left: 4px solid var(--neon-pink);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(255, 42, 109, 0.3);
        }

        .feature h3 {
            color: var(--cyber-yellow);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .pricing {
            background: linear-gradient(rgba(46, 33, 87, 0.9), rgba(46, 33, 87, 0.9));
        }

        .pricing-plans {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
        }

        .plan {
            background: rgba(1, 1, 1, 0.7);
            padding: 2rem;
            border-radius: 10px;
            flex: 1;
            min-width: 250px;
            max-width: 350px;
            border: 2px solid var(--electric-blue);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .plan:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 30px rgba(5, 217, 232, 0.5);
        }

        .plan-popular {
            border-color: var(--neon-pink);
        }

        .plan-popular::before {
            content: 'POPÜLER';
            position: absolute;
            top: 10px;
            right: -30px;
            background-color: var(--neon-pink);
            color: var(--black);
            padding: 0.2rem 2rem;
            transform: rotate(45deg);
            font-weight: bold;
            font-size: 0.8rem;
        }

        .plan h3 {
            color: var(--electric-blue);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .plan-price {
            font-size: 2rem;
            font-weight: bold;
            color: white;
            margin-bottom: 1.5rem;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .plan-features li {
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .plan-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--matrix-green);
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1rem;
            margin-top: 3rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            box-shadow: 0 0 10px rgba(5, 217, 232, 0.3);
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 0 20px rgba(255, 42, 109, 0.5);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 1rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }

        .reviews {
            background: linear-gradient(rgba(46, 33, 87, 0.9), rgba(46, 33, 87, 0.9));
        }

        .reviews-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            margin-top: 3rem;
        }

        .reviews-slider {
            display: flex;
            transition: transform 0.5s ease;
        }

        .review {
            min-width: 100%;
            padding: 2rem;
            background: rgba(1, 1, 1, 0.7);
            border-radius: 10px;
            border: 1px solid var(--electric-blue);
            box-shadow: 0 0 15px rgba(5, 217, 232, 0.3);
        }

        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .review-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1rem;
            border: 2px solid var(--neon-pink);
        }

        .review-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .review-author {
            font-weight: bold;
            color: var(--electric-blue);
        }

        .review-rating {
            color: var(--cyber-yellow);
            margin-top: 0.3rem;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
            margin-bottom: 1em;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .policy-page{
            max-width: 1000px;
            margin: 0px auto;
            display: grid;
            gap: 32px;
        }

        .slider-dot.active {
            background-color: var(--neon-pink);
            transform: scale(1.2);
        }

        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            overflow: hidden;
        }

        .faq-question {
            padding: 1rem;
            background: rgba(46, 33, 87, 0.7);
            color: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
        }

        .faq-question:hover {
            background: rgba(70, 50, 120, 0.7);
        }

        .faq-answer {
            padding: 0 1rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background: rgba(1, 1, 1, 0.5);
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 1rem;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(46, 33, 87, 0.7);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(255, 42, 109, 0.3);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--electric-blue);
        }

        .form-control {
            width: 100%;
            padding: 0.8rem;
            background: rgba(1, 1, 1, 0.5);
            border: 1px solid var(--electric-blue);
            border-radius: 5px;
            color: white;
            font-size: 1rem;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--neon-pink);
            box-shadow: 0 0 10px rgba(255, 42, 109, 0.5);
        }

        textarea.form-control {
            min-height: 150px;
            resize: none;
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background: linear-gradient(135deg, var(--dark-purple), var(--black));
            padding: 2rem;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 2px solid var(--neon-pink);
            box-shadow: 0 0 30px rgba(255, 42, 109, 0.7);
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--electric-blue);
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--dark-purple);
            padding: 1rem 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-top: 2px solid var(--electric-blue);
        }

        .cookie-banner p {
            margin-right: 1rem;
            flex: 1;
            min-width: 250px;
        }

        .cookie-banner-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid var(--electric-blue);
            color: var(--electric-blue);
        }

        .btn-secondary:hover {
            background: rgba(5, 217, 232, 0.2);
        }

        footer {
            background: linear-gradient(to right, var(--dark-purple), var(--black));
            color: white;
            padding: 3rem 2rem 1rem;
            border-top: 2px solid var(--neon-pink);
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            justify-content: space-between;
            margin-bottom: 2rem;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
        }

        .footer-column h3 {
            color: var(--electric-blue);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--neon-pink);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--neon-pink);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 2rem;
        }

        .disclaimer {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 3rem;
            padding: 1rem;
            background: rgba(1, 1, 1, 0.3);
            border-radius: 5px;
        }

        @media (max-width: 768px) {
            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(2, 2, 22, 0.95);
                padding: 2rem;
                clip-path: circle(0 at 90% -10%);
                transition: clip-path 0.5s ease;
                pointer-events: none;
            }

            nav.active {
                clip-path: circle(150% at 90% -10%);
                pointer-events: all;
            }

            nav ul {
                flex-direction: column;
                gap: 1.5rem;
            }

            .burger {
                display: flex;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .pricing-plans {
                flex-direction: column;
                align-items: center;
            }

            .plan {
                max-width: 100%;
            }
        }

        /* Parallax effect */
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeIn 1s ease forwards;
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }

        .delay-3 {
            animation-delay: 0.6s;
        }
