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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #0a0a0a;
            color: white;
            overflow-x: hidden;
            -webkit-user-select: none; /* Chrome, Safari */
            -moz-user-select: none; /* Firefox */
            -ms-user-select: none; /* IE */
            user-select: none; /* Standard */
        }

        /* Header - Soldan Giriş */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            position: relative;
            z-index: 100;
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInFromTop 1s ease-out 0.3s forwards;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-img {
            height: 40px;
            width: auto;
            max-width: 120px;
            object-fit: contain;
            transition: all 0.3s ease;
        }

        .logo-img:hover {
            transform: scale(1.05);
        }

        .menu-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .menu-toggle i {
            font-size: 18px;
            color: #ffffff;
            transition: all 0.3s ease;
        }

        .menu-toggle:hover i {
            color: #00f165;
            transform: scale(1.1);
        }

        /* Main Content */
        .main-content {
            text-align: center;
            padding: 60px 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Top Banner */
        .top-banner {
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            padding: 12px 24px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 40px;
            font-size: 14px;
            color: #a1a1aa;
            opacity: 0;
            transform: translateY(-30px);
            animation: slideInFromTop 1s ease-out 0.3s forwards;
        }

        .read-more {
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
        }

        .read-more-img {
            height: 20px;
            width: auto;
            filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
            animation: gradientShift 3s ease-in-out infinite;
            transition: all 0.3s ease;
        }

        .read-more:hover .read-more-img {
            transform: scale(1.1);
        }

        .read-more::after {
            content: '→';
            font-size: 16px;
            font-family: 'Inter', sans-serif;
            color: #00ff6a;
            transition: all 0.3s ease;
        }

        .read-more:hover::after {
            transform: translateX(2px);
        }

        @keyframes gradientShift {
            0%, 100% {
                filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
            }
            50% {
                filter: brightness(0) saturate(100%) invert(84%) sepia(6%) saturate(67%) hue-rotate(17deg) brightness(99%) contrast(92%);
            }
        }

        /* Main Heading - Üstten Giriş */
        .main-heading {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 600;
            line-height: 1.1;
            margin-bottom: 24px;
            opacity: 0;
            transform: translateY(-30px);
            animation: slideInFromTop 1s ease-out 0.5s forwards;
        }

        /* Subtitle - Üstten Giriş */
        .subtitle {
            font-size: 18px;
            color: #a1a1aa;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto 40px;
            font-weight: 400;
            opacity: 0;
            transform: translateY(-30px);
            animation: slideInFromTop 1s ease-out 0.7s forwards;
        }

        /* Buttons - Üstten Giriş */
        .buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin-bottom: 60px;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(-30px);
            animation: slideInFromTop 1s ease-out 0.9s forwards;
        }

        .btn {
            padding: 14px 28px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: white;
            color: #0a0a0a;
        }

        .btn-primary:hover {
            background: #f1f5f9;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        /* Trusted Section */
        .trusted-section {
            margin-top: 80px;
            opacity: 0;
            transform: translateY(-30px);
            animation: slideInFromTop 1s ease-out 1.1s forwards;
        }

        /* Trusted Text - Soldan Giriş */
        .trusted-text {
            font-size: 16px;
            color: #71717a;
            margin-bottom: 40px;
            font-weight: 400;
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInFromLeft 1s ease-out 1.3s forwards;
        }

        /* Brands - Sağdan Giriş */
        .brands {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
            max-width: 900px;
            margin: 0 auto;
            opacity: 0;
            transform: translateX(50px);
            animation: slideInFromRight 1s ease-out 1.5s forwards;
        }

        .brand-container {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 24px 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 180px;
            height: 80px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .brand-container:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        .brand-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
            transition: left 0.5s ease;
        }

        .brand-container:hover::before {
            left: 100%;
        }

        .brand-logo {
            max-width: 120px;
            max-height: 40px;
            width: auto;
            height: auto;
            opacity: 0.6;
            transition: opacity 0.3s ease;
            filter: grayscale(100%);
        }

        .brand-container:hover .brand-logo {
            opacity: 0.8;
            filter: grayscale(0%);
        }

        /* Mobile Carousel */
        .brands-carousel {
            display: none;
            position: relative;
            width: 100%;
            overflow: hidden;
            height: 60px;
            opacity: 0;
            transform: translateX(50px);
            animation: slideInFromRight 1s ease-out 1.5s forwards;
        }

        .brands-carousel::before,
        .brands-carousel::after {
            content: '';
            position: absolute;
            top: 0;
            width: 40px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .brands-carousel::before {
            left: 0;
            background: linear-gradient(to right, #0a0a0a, transparent);
        }

        .brands-carousel::after {
            right: 0;
            background: linear-gradient(to left, #0a0a0a, transparent);
        }

        .brands-track {
            display: flex;
            align-items: center;
            animation: scrollRightToLeft 20s linear infinite;
            width: max-content;
        }

        .brand-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 12px 20px;
            margin-right: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 140px;
            height: 50px;
            flex-shrink: 0;
        }

        .mobile-brand-logo {
            max-width: 100px;
            max-height: 30px;
            width: auto;
            height: auto;
            opacity: 0.6;
            filter: grayscale(100%);
        }

        /* Scroll Triggered Sections */
        .scroll-section {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .scroll-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Creative Layouts */
        .features-hero {
            margin-top: 60px;
            position: relative;
            overflow: hidden;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

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

        .hero-title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 600;
            background: linear-gradient(135deg, #ffffff, #00f165);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 24px;
        }

        .hero-subtitle {
            font-size: 18px;
            color: #a1a1aa;
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }

        /* Feature Grid */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .feature-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 40px 32px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .feature-item:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(99, 102, 241, 0.3);
            transform: translateY(-8px);
        }

        .feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #00f165, #8b5cf6);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .feature-item:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #00f165, #8b5cf6);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            position: relative;
        }

        .feature-icon::after {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, #00f165, #8b5cf6);
            border-radius: 18px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-item:hover .feature-icon::after {
            opacity: 0.3;
        }

        .feature-icon i {
            font-size: 28px;
            color: white;
        }

        .feature-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 16px;
            color: white;
        }

        .feature-description {
            font-size: 14px;
            color: #a1a1aa;
            line-height: 1.6;
        }

        /* Bonus Showcase */
        .bonus-showcase {
            margin-top: 30px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .bonus-content {
            padding: 40px;
        }

        .bonus-badge {
            display: inline-block;
            background: linear-gradient(135deg, #00f165, #8b5cf6);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }

        .bonus-title {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 600;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .bonus-description {
            font-size: 16px;
            color: #a1a1aa;
            line-height: 1.6;
            margin-bottom: 32px;
        }

        .bonus-stats {
            display: flex;
            gap: 32px;
            margin-bottom: 32px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 24px;
            font-weight: 600;
            color: #00f165;
            display: block;
        }

        .stat-label {
            font-size: 12px;
            color: #71717a;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .bonus-visual {
            position: relative;
            height: 400px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .bonus-visual::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, #00f165, #8b5cf6);
            border-radius: 50%;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .bonus-visual i {
            font-size: 80px;
            color: #00f165;
            z-index: 2;
            position: relative;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .header { padding: 20px; }
            .main-content { padding: 40px 20px; }
            .brands { display: none; }
            .brands-carousel { display: block; }
            .read-more-img { height: 25px; margin-top: 5px; }
            .bonus-showcase { grid-template-columns: 1fr; gap: 60px; }
            .bonus-stats { justify-content: center; }
            .feature-grid { grid-template-columns: 1fr; gap: 24px; }
        }

        @media (max-width: 480px) {
            .main-heading { font-size: 2rem; }
            .subtitle { font-size: 16px; }
            .logo-img { height: 35px; max-width: 300px; }
            .feature-item { padding: 32px 24px; }
        }

        /* Animations */
        @keyframes slideInFromTop {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

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

        @keyframes scrollRightToLeft {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }