 :root {
     --primary: #ff6b35;
     --primary-dark: #e55a2b;
     --secondary: #fbbf24;
     --accent: #00d9ff;
     --bg-black: #000000;
     --bg-dark: #0a0a0a;
     --surface: #1a1a1a;
     --surface-light: #252525;
     --border: #2a2a2a;
     --text: #ffffff;
     --text-muted: #a0a0a0;
     --success: #28a745;
     --warning: #ffc107;
     --danger: #dc3545;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Inter', sans-serif;
     background: var(--bg-black);
     color: var(--text);
     overflow-x: hidden;
 }

 ::-webkit-scrollbar {
     width: 10px;
 }

 ::-webkit-scrollbar-track {
     background: var(--bg-dark);
 }

 ::-webkit-scrollbar-thumb {
     background: var(--primary);
     border-radius: 5px;
 }

 /* Navbar */
 .navbar-custom {
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(20px);
     border-bottom: 1px solid var(--border);
     transition: all 0.3s ease;
     padding-top: 20px;
     padding-bottom: 20px;
 }

 .navbar-custom.scrolled {
     box-shadow: 0 4px 30px rgba(255, 107, 53, 0.1);
     border-bottom-color: var(--primary);
 }

 .navbar-brand-custom {
     display: flex;
     align-items: center;
     gap: 10px;
     font-weight: 800;
     font-size: 1.5rem;
     color: var(--text);
     text-decoration: none;
 }

 .logo-box {
     width: 200px;
     height: 70px;
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-weight: 900;
     font-size: 1.3rem;
 }

 .logo-box img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }


 .nav-link-custom {
     color: black !important;
     font-weight: 500;
     padding: 0.5rem 1rem !important;
     transition: all 0.3s ease;
 }

 .nav-link-custom:hover {
     color: var(--primary) !important;
 }

 .btn-gradient {
     background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
     color: white;
     border: none;
     padding: 0.75rem 1.8rem;
     border-radius: 12px;
     font-weight: 600;
     transition: all 0.3s ease;
 }

 .btn-gradient:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
 }

 /* Page Header */
 .page-header {
     background: linear-gradient(135deg, var(--bg-black) 0%, var(--bg-dark) 100%);
     padding: 150px 0 80px;
     position: relative;
     overflow: hidden;
     border-bottom: 1px solid var(--border);
 }

 .page-header::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
 }

 .breadcrumb-custom {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     margin-bottom: 2rem;
     font-size: 0.9rem;
 }

 .breadcrumb-custom a {
     color: var(--text-muted);
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .breadcrumb-custom a:hover {
     color: var(--primary);
 }

 .breadcrumb-separator {
     color: var(--text-muted);
 }

 .page-title {
     font-size: clamp(2.5rem, 5vw, 4rem);
     font-weight: 900;
     margin-bottom: 1rem;
     background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .last-updated {
     color: var(--text-muted);
     font-size: 1rem;
 }

 /* Terms Content */
 .terms-section {
     padding: 80px 0;
 }

 .terms-wrapper {
     display: grid;
     grid-template-columns: 280px 1fr;
     gap: 3rem;
     align-items: start;
 }

 /* Table of Contents */
 .toc-sidebar {
     position: sticky;
     top: 100px;
     background: var(--surface);
     border: 2px solid var(--border);
     border-radius: 20px;
     padding: 2rem;
     max-height: calc(100vh - 120px);
     overflow-y: auto;
 }

 .toc-sidebar h2 {
     font-size: 1.1rem;
     font-weight: 700;
     margin-bottom: 1.5rem;
     color: var(--text);
     padding-bottom: 1rem;
     border-bottom: 2px solid var(--border);
 }

 .toc-nav ul {
     list-style: none;
 }

 .toc-nav a {
     display: block;
     color: var(--text-muted);
     text-decoration: none;
     padding: 0.75rem 0 0.75rem 1rem;
     font-size: 0.9rem;
     border-left: 3px solid transparent;
     transition: all 0.3s ease;
 }

 .toc-nav a:hover,
 .toc-nav a.active {
     color: var(--primary);
     border-left-color: var(--primary);
     background: rgba(255, 107, 53, 0.05);
 }

 /* Terms Content Cards */
 .terms-main {
     max-width: 900px;
 }

 .terms-card {
     background: var(--surface);
     border: 2px solid var(--border);
     border-radius: 20px;
     margin-bottom: 2rem;
     overflow: hidden;
     transition: all 0.3s ease;
 }

 .terms-card:hover {
     border-color: var(--primary);
     box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
 }

 .section-header {
     background: var(--surface-light);
     padding: 1.5rem 2rem;
     cursor: pointer;
     border-bottom: 2px solid var(--border);
     display: flex;
     align-items: center;
     justify-content: space-between;
     transition: all 0.3s ease;
 }

 .section-header:hover {
     background: var(--surface);
 }

 .section-header h2 {
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--text);
     margin: 0;
 }

 .toggle-icon {
     width: 32px;
     height: 32px;
     background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.5rem;
     font-weight: 700;
     transition: transform 0.3s ease;
 }

 .section-header[aria-expanded="true"] .toggle-icon {
     transform: rotate(45deg);
 }

 .section-content {
     padding: 2rem;
     display: none;
 }

 .section-content.show {
     display: block;
 }

 .section-content h3 {
     font-size: 1.25rem;
     font-weight: 700;
     color: var(--text);
     margin: 2rem 0 1rem 0;
 }

 .section-content h3:first-child {
     margin-top: 0;
 }

 .section-content p {
     color: var(--text);
     line-height: 1.8;
     margin-bottom: 1.5rem;
 }

 .section-content ul,
 .section-content ol {
     margin: 1.5rem 0;
     padding-left: 2rem;
 }

 .section-content li {
     color: var(--text);
     line-height: 1.8;
     margin-bottom: 0.75rem;
 }

 /* Notice Boxes */
 .notice-box {
     padding: 1.5rem;
     border-radius: 12px;
     margin: 2rem 0;
     border-left: 4px solid;
 }

 .notice-important {
     background: rgba(255, 107, 53, 0.1);
     border-left-color: var(--primary);
 }

 .notice-warning {
     background: rgba(255, 193, 7, 0.1);
     border-left-color: var(--warning);
 }

 .notice-danger {
     background: rgba(220, 53, 69, 0.1);
     border-left-color: var(--danger);
 }

 .notice-box h3 {
     color: var(--text);
     font-size: 1.1rem;
     font-weight: 700;
     margin: 0 0 1rem 0 !important;
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .notice-box p {
     color: var(--text);
     margin: 0;
 }

 /* Contact Details */
 .contact-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 1.5rem;
     margin: 2rem 0;
 }

 .contact-card {
     background: var(--surface-light);
     padding: 1.5rem;
     border-radius: 12px;
     border: 1px solid var(--border);
     transition: all 0.3s ease;
 }

 .contact-card:hover {
     border-color: var(--primary);
     transform: translateY(-5px);
 }

 .contact-card h3 {
     color: var(--primary);
     font-size: 1rem;
     font-weight: 700;
     margin: 0 0 0.75rem 0 !important;
 }

 .contact-card p {
     color: var(--text);
     margin: 0;
 }

 .contact-card a {
     color: var(--primary);
     text-decoration: none;
     font-weight: 600;
 }

 .contact-card a:hover {
     text-decoration: underline;
 }

 /* Footer */
 .footer {
     background: var(--bg-dark);
     border-top: 1px solid var(--border);
     padding: 4rem 0 2rem;
     margin-top: 5rem;
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 3rem;
     margin-bottom: 3rem;
 }

 .footer-title {
     color: var(--text);
     font-weight: 700;
     margin-bottom: 1.5rem;
 }

 .footer-link {
     color: var(--text-muted);
     text-decoration: none;
     display: block;
     margin-bottom: 0.75rem;
     transition: color 0.3s ease;
 }

 .footer-link:hover {
     color: var(--primary);
 }

 .footer-bottom {
     border-top: 1px solid var(--border);
     padding-top: 2rem;
     text-align: center;
 }

 .footer-bottom p {
     color: var(--text-muted);
     margin: 0;
 }

 /* Responsive */
 @media (max-width: 992px) {
     .terms-wrapper {
         grid-template-columns: 1fr;
     }

     .toc-sidebar {
         position: static;
         max-height: none;
     }
 }

 @media (max-width: 768px) {
     .page-header {
         padding: 120px 0 60px;
     }

     .section-header {
         padding: 1.25rem 1.5rem;
     }

     .section-header h2 {
         font-size: 1.25rem;
     }

     .section-content {
         padding: 1.5rem;
     }

     .contact-grid {
         grid-template-columns: 1fr;
     }
 }