    :root {
            --blue: #0c56db;
            --purple: #9333ea;
            --pink: #ec4899;
            --dark: #0f172a;
            --darker: #020617;
            --light: #f8fafc;
            --gray: #64748b;
            --light-gray: #e2e8f0;
            --success: #10b981;
            --warning: #f59e0b;
            --error: #ef4444;
            --info: #3b82f6;
            --code-bg: #1e293b;
        }
        
    .floating-shapes {
        position: absolute;
        width: 100%;
        height: 100%;
    }
    
    .shape {
        position: absolute;
        border-radius: 50%;
        filter: blur(40px);
        opacity: 0.06;
        animation: shapeFloat 20s ease-in-out infinite;
    }
    
    .shape-1 {
        width: 300px;
        height: 300px;
        background: var(--blue);
        top: 5%;
        left: 10%;
        animation-delay: 0s;
    }
    
    .shape-2 {
        width: 200px;
        height: 200px;
        background: var(--purple);
        top: 60%;
        right: 15%;
        animation-delay: 7s;
    }
    
    .shape-3 {
        width: 150px;
        height: 150px;
        background: var(--pink);
        bottom: 15%;
        left: 20%;
        animation-delay: 14s;
    }
    
    @keyframes shapeFloat {
        0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
        33% { transform: translateY(-80px) rotate(120deg) scale(1.1); }
        66% { transform: translateY(60px) rotate(240deg) scale(0.9); }
    }
    
    /* Legal Icons Animation */
    .floating-legal {
        position: absolute;
        width: 100%;
        height: 100%;
    }
    
    .legal-particle {
        position: absolute;
        font-size: 1.8rem;
        opacity: 0.08;
        animation: legalFloat 15s linear infinite;
    }
    
    .lp-1 { top: 15%; left: 20%; animation-delay: 0s; color: var(--blue); }
    .lp-2 { top: 45%; right: 25%; animation-delay: 4s; color: var(--purple); }
    .lp-3 { bottom: 25%; left: 30%; animation-delay: 8s; color: var(--pink); }
    .lp-4 { top: 70%; right: 20%; animation-delay: 12s; color: var(--success); }
    
    @keyframes legalFloat {
        0% { transform: translateY(0px) rotate(0deg); opacity: 0.08; }
        50% { transform: translateY(-150px) rotate(180deg); opacity: 0.15; }
        100% { transform: translateY(-300px) rotate(360deg); opacity: 0; }
    }
    
    /* Main Container */
    .terms-container {
        position: relative;
        z-index: 10;
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 20px;
    }
    
    /* Header Section */
    .terms-header {
        text-align: center;
        margin-bottom: 80px;
        animation: fadeInUp 1s ease-out;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .main-title {
        font-size: 4rem;
        font-weight: 800;
        background: #e2ae60;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        margin-bottom: 25px;
        line-height: 1.1;
    }
    
    .subtitle {
        font-size: 1.3rem;
        color: #cbd5e1;
        max-width: 700px;
        margin: 0 auto 30px;
        line-height: 1.6;
    }
    
    .last-updated {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(30, 41, 59, 0.6);
        backdrop-filter: blur(10px);
        padding: 12px 20px;
        border-radius: 25px;
        border: 1px solid rgba(148, 163, 184, 0.2);
        color: #94a3b8;
        font-size: 0.9rem;
        font-weight: 500;
    }
    
    .update-icon {
        width: 16px;
        height: 16px;
        fill: var(--blue);
    }
    
    /* Table of Contents */
    .toc-section {
        background: rgba(30, 41, 59, 0.5);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 40px;
        margin-bottom: 60px;
        border: 1px solid rgba(148, 163, 184, 0.1);
        animation: slideInLeft 1s ease-out 0.3s both;
    }
    
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .toc-title {
        font-size: 1.8rem;
        font-weight: 700;
        color: white;
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .toc-icon {
        width: 24px;
        height: 24px;
        fill: var(--purple);
    }
    
    .toc-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 15px;
        list-style: none;
    }
    
    .toc-item {
        background: rgba(15, 23, 42, 0.6);
        border-radius: 12px;
        transition: all 0.3s ease;
        border: 1px solid rgba(148, 163, 184, 0.1);
    }
    
    .toc-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        border-color: var(--blue);
    }
    
    .toc-link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 18px 20px;
        color: #cbd5e1;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .toc-link:hover {
        color: white;
        text-decoration: none;
    }
    
    .toc-number {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        background: linear-gradient(135deg, var(--blue), var(--purple));
        border-radius: 8px;
        color: white;
        font-weight: 700;
        font-size: 0.8rem;
        flex-shrink: 0;
    }
    
    /* Terms Content */
    .terms-content {
        animation: fadeInUp 1s ease-out 0.6s both;
    }
    
    .terms-section {
        background: rgba(30, 41, 59, 0.5);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 50px;
        margin-bottom: 40px;
        border: 1px solid rgba(148, 163, 184, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .terms-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
        transition: left 0.5s;
    }
    
    .terms-section:hover::before {
        left: 100%;
    }
    
    .terms-section:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }
    
    .section-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 2px solid rgba(148, 163, 184, 0.1);
    }
    
    .section-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .section-icon.card {
        background: linear-gradient(135deg, var(--blue), #1e40af);
    }
    
    .section-icon.mobile {
        background: linear-gradient(135deg, var(--purple), #7c3aed);
    }
    
    .section-icon.transfer {
        background: linear-gradient(135deg, var(--pink), #db2777);
    }
    
    .section-icon.qr {
        background: linear-gradient(135deg, var(--success), #059669);
    }
    
    .section-icon.link {
        background: linear-gradient(135deg, var(--warning), #d97706);
    }
    
    .section-icon.agent {
        background: linear-gradient(135deg, var(--info), #2563eb);
    }
    
    .section-icon.merchant {
        background: linear-gradient(135deg, #8b5cf6, #a855f7);
    }
    
    .section-icon.general {
        background: linear-gradient(135deg, #06b6d4, #0891b2);
    }
    
    .section-icon.liability {
        background: linear-gradient(135deg, var(--error), #dc2626);
    }
    
    .section-icon.changes {
        background: linear-gradient(135deg, #10b981, #059669);
    }
    
    .section-icon svg {
        width: 20px;
        height: 20px;
        fill: white;
    }
    
    .policy_pages-section-title {
        font-size: 2rem;
        font-weight: 700;
        color: white;
        margin: 0;
    }
    
    .section-content {
        color: #cbd5e1;
        line-height: 1.8;
    }
    
    .section-content h3 {
        color: white;
        font-size: 1.3rem;
        font-weight: 600;
        margin: 25px 0 15px 0;
    }
    
    .section-content p {
        margin-bottom: 15px;
    }
    
    .section-content ul {
        margin: 15px 0;
        padding-left: 25px;
    }
    
    .section-content li {
        margin-bottom: 8px;
        color: #cbd5e1;
    }
    
    .section-content strong {
        color: white;
        font-weight: 600;
    }
    
    /* Highlight Boxes */
    .highlight-box {
        background: rgba(12, 86, 219, 0.1);
        border: 1px solid rgba(12, 86, 219, 0.3);
        border-radius: 12px;
        padding: 20px;
        margin: 20px 0;
        border-left: 4px solid var(--blue);
    }
    
    .highlight-box.warning {
        background: rgba(245, 158, 11, 0.1);
        border-color: rgba(245, 158, 11, 0.3);
        border-left-color: var(--warning);
    }
    
    .highlight-box.error {
        background: rgba(239, 68, 68, 0.1);
        border-color: rgba(239, 68, 68, 0.3);
        border-left-color: var(--error);
    }
    
    .highlight-box.success {
        background: rgba(16, 185, 129, 0.1);
        border-color: rgba(16, 185, 129, 0.3);
        border-left-color: var(--success);
    }
    
    .highlight-box h4 {
        color: white;
        margin-top: 0;
        margin-bottom: 10px;
        font-size: 1.1rem;
    }
    
    /* Service Cards Grid */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin: 30px 0;
    }
    
    .service-card {
        background: rgba(15, 23, 42, 0.6);
        border-radius: 16px;
        padding: 25px;
        border: 1px solid rgba(148, 163, 184, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--blue), var(--purple), var(--pink));
    }
    
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        border-color: var(--purple);
    }
    
    .service-title {
        color: white;
        font-weight: 700;
        font-size: 1.2rem;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .service-icon {
        width: 24px;
        height: 24px;
        fill: var(--purple);
    }
    
    .service-desc {
        color: #94a3b8;
        line-height: 1.6;
    }
    
    /* Acceptance Section */
    .acceptance-section {
        background: linear-gradient(135deg, rgba(12, 86, 219, 0.1), rgba(147, 51, 234, 0.1));
        border: 2px solid rgba(147, 51, 234, 0.3);
        margin-top: 60px;
        position: relative;
    }
    
    .acceptance-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--blue), var(--purple), var(--pink));
    }
    
    /* Scroll Progress Bar */
    .scroll-progress {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: rgba(30, 41, 59, 0.5);
        z-index: 1000;
    }
    
    .scroll-progress-bar {
        height: 100%;
        background: linear-gradient(90deg, var(--blue), var(--purple), var(--pink));
        width: 0%;
        transition: width 0.1s ease;
    }
    
    /* Back to Top Button */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--blue), var(--purple));
        border: none;
        border-radius: 50%;
        color: white;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }
    
    .back-to-top:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(12, 86, 219, 0.3);
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) {
        .main-title {
            font-size: 3rem;
        }
        
        .terms-section {
            padding: 40px 30px;
        }
        
        .toc-section {
            padding: 30px 25px;
        }
    }
    
    @media (max-width: 768px) {
        .terms-container {
            padding: 40px 15px;
        }
        
        .main-title {
            font-size: 2.5rem;
        }
        
        .subtitle {
            font-size: 1.1rem;
        }
        
        .terms-section {
            padding: 30px 20px;
        }
        
        .toc-section {
            padding: 25px 20px;
        }
        
        .toc-list {
            grid-template-columns: 1fr;
        }
        
        .section-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }
        
        .policy_pages-section-title {
            font-size: 1.5rem;
        }
        
        .services-grid {
            grid-template-columns: 1fr;
        }
        
        .floating-legal {
            display: none;
        }
    }
    
    @media (max-width: 480px) {
        .main-title {
            font-size: 2rem;
        }
        
        .terms-section {
            padding: 25px 15px;
        }
        
        .toc-section {
            padding: 20px 15px;
        }
        
        .back-to-top {
            bottom: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
        }
    }
    
    /* Print Styles */
    @media print {
        .bg-animation,
        .floating-legal,
        .scroll-progress,
        .back-to-top {
            display: none !important;
        }
        
        body {
            background: white !important;
            color: black !important;
        }
        
        .terms-section,
        .toc-section {
            background: white !important;
            border: 1px solid #ccc !important;
            box-shadow: none !important;
        }
        
        .main-title {
            color: black !important;
        }
        
        .policy_pages-section-title,
        .toc-title {
            color: black !important;
        }
    }
