        :root {
            --primary-color: #FF1744;
            --secondary-color: #00E5FF;
            --accent-color: #FFD600;
            --dark-bg: #0A0E27;
            --card-bg: #151B3D;
            --text-primary: #FFFFFF;
            --text-secondary: #B0BEC5;
            --gradient-primary: linear-gradient(135deg, #FF1744 0%, #F50057 100%);
            --gradient-secondary: linear-gradient(135deg, #00E5FF 0%, #00BCD4 100%);
            --gradient-dark: linear-gradient(180deg, #0A0E27 0%, #1A1F3A 100%);
            --shadow-sm: 0 4px 6px rgba(255, 23, 68, 0.1);
            --shadow-md: 0 8px 16px rgba(255, 23, 68, 0.2);
            --shadow-lg: 0 20px 40px rgba(255, 23, 68, 0.3);
            --shadow-glow: 0 0 30px rgba(0, 229, 255, 0.4);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container,
        section.container,
        .container-fluid.container {
            max-width: 1400px !important;
            margin: 0 auto !important;
            padding: 0 15px !important;
            width: 100% !important;
        }

        .site-header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 23, 68, 0.2);
            box-shadow: 0 8px 16px rgba(255, 23, 68, 0.2);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

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

        .logo img {
            height: 40px;
            width: auto;
        }

        .main-nav {
            display: flex;
            align-items: center;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
            position: relative;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--secondary-color);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .mobile-cta-wrapper {
            display: none;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .nav-list {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin: 0;
        }

        .nav-list a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-list a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }

        .nav-list a:hover {
            color: var(--primary-color);
        }

        .nav-list a:hover::after {
            width: 100%;
        }

        .cta-button {
            padding: 0.875rem 2rem;
            background: var(--gradient-primary);
            color: var(--text-primary);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.4s ease;
            box-shadow: var(--shadow-md);
            border: none;
            cursor: pointer;
            display: inline-block;
            position: relative;
            overflow: hidden;
            font-size: 1rem;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: var(--shadow-lg);
            color: var(--text-primary);
        }

        main {
            margin-top: 80px;
        }

        body > section:first-of-type {
            margin-top: 80px !important;
        }

        body > section.container:first-of-type {
            margin-top: 80px !important;
            padding-top: 4.5rem !important;
        }

        section {
            padding: 6rem 0;
            position: relative;
        }

        section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 23, 68, 0.3), transparent);
        }

        h1 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        h2 {
            font-size: clamp(1.75rem, 3.5vw, 2.75rem);
            font-weight: 800;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 60%;
            height: 4px;
            background: var(--gradient-secondary);
            border-radius: 2px;
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--secondary-color);
        }

        h4 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--accent-color);
        }

        p {
            margin-bottom: 1.5rem;
            color: var(--text-secondary);
            font-size: 1.125rem;
        }

        .hero-section {
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: var(--gradient-dark);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(circle, rgba(255, 23, 68, 0.15) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        .text-block {
            background: var(--card-bg);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(255, 23, 68, 0.1);
            margin-top: 3rem;
        }

        .timeline-content {
            background: var(--card-bg);
            padding: 3rem;
            border-radius: 20px;
            border-left: 4px solid var(--primary-color);
            box-shadow: var(--shadow-md);
            margin: 2rem 0;
        }

        .feature-list ul {
            list-style: none;
            padding-left: 0;
            margin: 2rem 0;
        }

        .feature-list li {
            padding: 1rem 0 1rem 3rem;
            position: relative;
            color: var(--text-secondary);
            font-size: 1.125rem;
            transition: all 0.3s ease;
        }

        .feature-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-size: 1.5rem;
            font-weight: 700;
        }

        .feature-list li:hover {
            color: var(--text-primary);
            transform: translateX(10px);
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .info-card {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(0, 229, 255, 0.1);
        }

        .info-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: var(--shadow-glow);
            border-color: var(--secondary-color);
        }

        .info-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .info-card:hover img {
            transform: scale(1.1);
        }

        .info-card h3,
        .info-card p {
            padding: 0 2rem;
        }

        .info-card h3 {
            padding-top: 2rem;
        }

        .info-card p:last-child {
            padding-bottom: 2rem;
        }

        .category-block {
            background: var(--card-bg);
            padding: 3rem;
            border-radius: 20px;
            margin: 3rem 0;
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(255, 215, 0, 0.1);
        }

        .category-block img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 15px;
            margin: 2rem 0;
            box-shadow: var(--shadow-lg);
        }

        .strategy-item {
            background: linear-gradient(135deg, rgba(255, 23, 68, 0.05) 0%, rgba(0, 229, 255, 0.05) 100%);
            padding: 3rem;
            border-radius: 20px;
            margin: 3rem 0;
            border-left: 5px solid var(--accent-color);
            box-shadow: var(--shadow-md);
        }

        .table-wrapper {
            overflow-x: auto;
            margin: 3rem 0;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
        }

        .payment-table {
            min-width: 800px;
        }

        .feature-block {
            background: var(--card-bg);
            padding: 3rem;
            border-radius: 20px;
            margin: 3rem 0;
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(0, 229, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .feature-block::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient-secondary);
        }

        .accordion-item {
            background: var(--card-bg);
            border-radius: 15px;
            margin-bottom: 1.5rem;
            overflow: hidden;
            border: 1px solid rgba(255, 23, 68, 0.1);
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            border-color: var(--primary-color);
            box-shadow: var(--shadow-md);
        }

        .accordion-header {
            width: 100%;
            padding: 2rem;
            background: none;
            border: none;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-primary);
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .accordion-header:hover {
            background: rgba(255, 23, 68, 0.05);
        }

        .accordion-header h3 {
            margin: 0;
            font-size: 1.25rem;
        }

        .accordion-icon {
            width: 30px;
            height: 30px;
            position: relative;
            flex-shrink: 0;
            margin-left: 1rem;
        }

        .accordion-icon::before,
        .accordion-icon::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            background: var(--primary-color);
            transition: all 0.3s ease;
        }

        .accordion-icon::before {
            width: 20px;
            height: 3px;
            transform: translate(-50%, -50%);
        }

        .accordion-icon::after {
            width: 3px;
            height: 20px;
            transform: translate(-50%, -50%);
        }

        .accordion-header[aria-expanded="true"] .accordion-icon::after {
            transform: translate(-50%, -50%) rotate(90deg);
            opacity: 0;
        }

        .accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 2rem;
        }

        .accordion-body.active {
            max-height: 1000px;
            padding: 0 2rem 2rem 2rem;
        }

        .cta-section {
            background: var(--gradient-primary);
            padding: 6rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

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

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            color: var(--text-primary);
            margin-bottom: 1.5rem;
        }

        .cta-section h2::after {
            background: rgba(255, 255, 255, 0.3);
            left: 50%;
            transform: translateX(-50%);
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.25rem;
            margin-bottom: 2rem;
        }

        .cta-section .cta-button {
            background: white;
            color: var(--primary-color);
            padding: 1.25rem 3rem;
            font-size: 1.25rem;
        }

        .cta-section .cta-button:hover {
            background: var(--text-primary);
        }

        .site-footer {
            background: var(--card-bg);
            padding: 3rem 0;
            border-top: 1px solid rgba(255, 23, 68, 0.2);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-info p {
            margin: 0.5rem 0;
            color: var(--text-secondary);
            font-size: 0.875rem;
        }

        .footer-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin: 0;
        }

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

        .footer-nav a:hover {
            color: var(--primary-color);
        }

        @media (max-width: 768px) {
            main {
                margin-top: 160px;
            }

            body > section:first-of-type {
                margin-top: 160px !important;
            }

            body > section.container:first-of-type {
                margin-top: 160px !important;
            }

            .hamburger {
                display: flex;
                order: 2;
            }

            .main-nav {
                position: fixed;
                top: 160px;
                left: 0;
                right: 0;
                background: rgba(10, 14, 39, 1);
                backdrop-filter: blur(20px);
                padding: 2rem;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                z-index: 999;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            }

            .main-nav.active {
                transform: translateX(0);
            }

            .nav-list {
                flex-direction: column;
                gap: 1.5rem;
            }

            .desktop-cta {
                display: none;
            }

            .mobile-cta-wrapper {
                display: block;
                text-align: center;
                padding: 1.5rem 0;
                border-top: 1px solid rgba(255, 23, 68, 0.1);
            }

            .mobile-cta-wrapper .cta-button {
                width: 100%;
                max-width: 600px;
                display: inline-block;
                padding: 1.25rem 4rem;
            }

            .hero-section {
                min-height: 70vh;
                padding-top: 2rem;
            }

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.75rem;
            }

            h3 {
                font-size: 1.5rem;
            }

            section {
                padding: 3rem 0;
            }

            .cards-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .table-wrapper {
                border-radius: 10px;
            }

            table th,
            table td {
                padding: 1rem;
                font-size: 0.875rem;
            }

            .text-block,
            .timeline-content,
            .category-block,
            .strategy-item,
            .feature-block {
                padding: 2rem;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
        }

        section.container,
        .container:not(.header-content):not(.footer-content),
        body > section.container {
            max-width: 1400px !important;
            width: 100% !important;
            margin-left: auto !important;
            margin-right: auto !important;
        }
        
        @media (min-width: 1400px) {
            section.container,
            .container:not(.header-content):not(.footer-content) {
                max-width: 1400px !important;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            .cards-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 576px) {
            .container,
            section.container {
                max-width: 1400px !important;
            }
        }
        
        @media (min-width: 768px) {
            .container,
            section.container {
                max-width: 1400px !important;
            }
        }
        
        @media (min-width: 992px) {
            .container,
            section.container {
                max-width: 1400px !important;
            }
        }
        
        @media (min-width: 1200px) {
            .container,
            section.container {
                max-width: 1400px !important;
            }
        }
        
        @media (min-width: 1400px) {
            .container,
            section.container {
                max-width: 1400px !important;
            }
        }

    

@media (max-width: 768px) {
            main {
                margin-top: 160px;
            }

            body > section:first-of-type {
                margin-top: 160px !important;
            }

            body > section.container:first-of-type {
                margin-top: 160px !important;
            }

            .hamburger {
                display: flex;
                order: 2;
            }

            .main-nav {
                position: fixed;
                top: 160px;
                left: 0;
                right: 0;
                background: rgba(10, 14, 39, 1);
                backdrop-filter: blur(20px);
                padding: 2rem;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                z-index: 999;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            }

            .main-nav.active {
                transform: translateX(0);
            }

            .nav-list {
                flex-direction: column;
                gap: 1.5rem;
            }

            .desktop-cta {
                display: none;
            }

            .mobile-cta-wrapper {
                display: block;
                text-align: center;
                padding: 1.5rem 0;
                border-top: 1px solid rgba(255, 23, 68, 0.1);
            }

            .mobile-cta-wrapper .cta-button {
                width: 100%;
                max-width: 600px;
                display: inline-block;
                padding: 1.25rem 4rem;
            }

            .hero-section {
                min-height: 70vh;
                padding-top: 2rem;
            }

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.75rem;
            }

            h3 {
                font-size: 1.5rem;
            }

            section {
                padding: 3rem 0;
            }

            .cards-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .table-wrapper {
                border-radius: 10px;
            }

            table th,
            table td {
                padding: 1rem;
                font-size: 0.875rem;
            }

            .text-block,
            .timeline-content,
            .category-block,
            .strategy-item,
            .feature-block {
                padding: 2rem;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
        }

        section.container,
        .container:not(.header-content):not(.footer-content),
        body > section.container {
            max-width: 1400px !important;
            width: 100% !important;
            margin-left: auto !important;
            margin-right: auto !important;
        }
        
        @media (min-width: 1400px) {
            section.container,
            .container:not(.header-content):not(.footer-content) {
                max-width: 1400px !important;
            }
        }