
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #6366f1;
            --primary-light: #8b5cf6;
            --primary-dark: #4f46e5;
            --secondary: #22c55e;
            --accent: #f97316;
            --dark: #0a0c10;
            --gray-dark: #1e1f2a;
            --gray: #6c727f;
            --gray-light: #eef2ff;
            --white: #ffffff;
            --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
            --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --border-radius: 12px;
            --border-radius-lg: 1.5rem;
            --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            background-color: var(--white);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* ================= TYPOGRAPHY ================= */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
        }

        h2 {
            font-size: clamp(1.75rem, 4vw, 2rem);
            margin-top: 2rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--gray-light);
        }

        h3 {
            font-size: clamp(1.25rem, 3vw, 1.5rem);
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
        }

        p {
            margin-bottom: 1rem;
            color: var(--gray);
            line-height: 1.7;
        }

        a {
            text-decoration: none;
            color: var(--primary);
            transition: var(--transition);
        }

        a:hover {
            color: var(--primary-dark);
        }

        ul,
        ol {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            color: var(--gray);
        }

        li {
            margin-bottom: 0.5rem;
        }

        /* ================= BUTTONS ================= */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 0.75rem 1.5rem;
            border-radius: 2rem;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            border: none;
            transition: var(--transition);
            text-align: center;
        }

        .btn--primary {
            background-color: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
        }

        .btn--primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 12px 20px -8px rgba(99, 102, 241, 0.4);
        }

        /* ================= HEADER ================= */
        .header {
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(16px);
            background: rgba(255, 255, 255, 0.92);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .header__inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            display: flex;
            align-items: baseline;
            gap: 0.25rem;
            text-decoration: none;
        }

        .logo__text {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), #8b5cf6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.02em;
        }

        .logo__tagline {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--gray);
            letter-spacing: 1px;
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            width: 30px;
            height: 20px;
            position: relative;
            z-index: 1001;
        }

        .nav-toggle__bar {
            display: block;
            width: 100%;
            height: 2px;
            background-color: var(--dark);
            margin: 5px 0;
            transition: var(--transition);
        }

        .nav {
            display: flex;
        }

        .nav__list {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

        .nav__link {
            text-decoration: none;
            font-weight: 500;
            color: var(--gray-dark);
            transition: var(--transition);
            position: relative;
        }

        .nav__link:hover {
            color: var(--primary);
        }

        /* ================= PAGE HERO ================= */
        .page-hero {
            padding: 100px 0 60px;
            background: linear-gradient(135deg, #f8f5ff 0%, #fff 100%);
            position: relative;
            overflow: hidden;
        }

        .page-hero__content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .page-hero__badge {
            display: inline-block;
            background: rgba(99, 102, 241, 0.1);
            backdrop-filter: blur(4px);
            padding: 0.5rem 1.25rem;
            border-radius: 2rem;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--primary);
            margin-bottom: 2rem;
            border: 1px solid rgba(99, 102, 241, 0.2);
        }

        .page-hero__title {
            margin-bottom: 20px;
        }

        .page-hero__description {
            font-size: 1.125rem;
            color: var(--gray);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ================= TERMS CONTENT ================= */
        .terms-content {
            padding: 60px 0 100px;
        }

        .terms-wrapper {
            max-width: 900px;
            margin: 0 auto;
            background: var(--white);
            border-radius: var(--border-radius-lg);
            padding: 3rem;
            box-shadow: var(--shadow);
        }

        .last-updated {
            background: var(--gray-light);
            padding: 1rem 1.5rem;
            border-radius: var(--border-radius);
            margin-bottom: 2rem;
            font-size: 0.9rem;
            color: var(--gray-dark);
            text-align: center;
        }

        .table-of-contents {
            background: #f8fafc;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin-bottom: 2rem;
            border: 1px solid var(--gray-light);
        }

        .table-of-contents h3 {
            margin-top: 0;
            margin-bottom: 1rem;
        }

        .table-of-contents ul {
            list-style: none;
            padding-left: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 0.5rem;
        }

        .table-of-contents li {
            margin-bottom: 0;
        }

        .table-of-contents a {
            color: var(--gray-dark);
            font-size: 0.9rem;
        }

        .table-of-contents a:hover {
            color: var(--primary);
        }

        .effective-date {
            font-size: 0.85rem;
            color: var(--gray);
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid var(--gray-light);
            text-align: center;
        }

        .notice-box {
            background: rgba(249, 115, 22, 0.1);
            border-left: 4px solid var(--accent);
            padding: 1rem 1.5rem;
            border-radius: var(--border-radius);
            margin: 1.5rem 0;
        }

        .notice-box p {
            margin-bottom: 0;
            color: var(--dark);
        }

        /* ================= FOOTER ================= */
        .footer {
            background: var(--dark);
            color: var(--white);
            padding: 4rem 0 2rem;
            margin-top: 0;
        }

        .footer__inner {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer__tagline {
            margin: 16px 0 24px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .footer__social {
            display: flex;
            gap: 12px;
        }

        .footer__social-link {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
            transition: var(--transition);
            text-decoration: none;
            color: var(--white);
        }

        .footer__social-link:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer__links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .footer__heading {
            font-size: 1.125rem;
            margin-bottom: 1.25rem;
            color: var(--white);
        }

        .footer__list {
            list-style: none;
            padding-left: 0;
        }

        .footer__list li {
            margin-bottom: 12px;
        }

        .footer__link {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.875rem;
            transition: var(--transition);
            text-decoration: none;
        }

        .footer__link:hover {
            color: var(--primary);
        }

        .footer__bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer__copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.8rem;
        }

        .footer__legal {
            display: flex;
            gap: 24px;
        }

        .footer__legal-link {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.8rem;
            text-decoration: none;
        }

        .footer__legal-link:hover {
            color: var(--primary);
        }

        /* ================= ANIMATIONS ================= */
        .fade {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* ================= RESPONSIVE ================= */
        @media (max-width: 1024px) {
            .container {
                padding: 0 1.5rem;
            }

            .footer__inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer__links {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }

            .nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background: var(--white);
                padding: 100px 40px 40px;
                transition: right 0.3s ease;
                box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
                z-index: 1000;
            }

            .nav.active {
                right: 0;
            }

            .nav__list {
                flex-direction: column;
                gap: 20px;
                align-items: flex-start;
            }

            .nav-toggle.active .nav-toggle__bar:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .nav-toggle.active .nav-toggle__bar:nth-child(2) {
                opacity: 0;
            }

            .nav-toggle.active .nav-toggle__bar:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }

            .terms-wrapper {
                padding: 1.5rem;
            }

            .table-of-contents ul {
                grid-template-columns: 1fr;
            }

            .footer__links {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer__bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 640px) {
            .nav__list {
                display: none;
            }

            .header__inner {
                justify-content: space-between;
            }
        }