:root {
        --primary-color: #d4920a;
        --secondary-color: #b5711c;
        --bg-dark: #0c0c0e;
        --bg-surface: #161618;
        --border-color: #2a2720;
        --text-primary: #f0e8d5;
        --text-secondary: #9a8f7a;
        --gradient-gold: linear-gradient(135deg, #d4920a 0%, #f5c842 100%);

        --font-display: "Cinzel Decorative", serif;
        --font-body: "DM Sans", sans-serif;
        --font-accent: "Bebas Neue", sans-serif;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        background-color: var(--bg-dark);
        color: var(--text-primary);
        font-family: var(--font-body);
        line-height: 1.6;
        overflow-x: hidden;
        scroll-behavior: smooth;
      }
      a {
        text-decoration: none;
        color: inherit;
      }
      ul {
        list-style: none;
      }

      /* Typography */
      h1,
      h2,
      h3,
      h4 {
        font-family: var(--font-display);
        font-weight: 700;
      }
      h2 {
        border-left: 3px solid var(--primary-color);
        padding-left: 1rem;
        text-transform: uppercase;
        margin-bottom: 2rem;
        font-size: 32px;
        font-family: var(--font-body);
      }
      h2.center-title {
        border-left: none;
        padding-left: 0;
        text-align: center;
      }

      /* Buttons */
      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        font-family: var(--font-body);
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
      }
      .btn-type-a {
        background-color: var(--primary-color);
        color: #000;
        border: none;
      }
      .btn-type-a:hover {
        filter: brightness(1.1);
      }
      .btn-type-b {
        background-color: transparent;
        color: var(--primary-color);
        border: 1.5px solid var(--primary-color);
      }
      .btn-type-b:hover {
        background-color: rgba(212, 146, 10, 0.12);
      }

      .btn-large {
        padding: 16px 40px;
        font-size: 1.1rem;
      }

      /* Navbar */
      .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 5%;
        z-index: 1000;
        background-color: rgba(12, 12, 14, 0.5);
        backdrop-filter: blur(10px);
        transition: background-color 0.3s ease;
      }
      .navbar.scrolled {
        background-color: var(--bg-dark);
      }
      .nav-brand img {
        height: 40px;
        width: auto;
        display: block;
      }
      .nav-links {
        display: flex;
        gap: 2rem;
      }
      .nav-links a {
        font-size: 0.95rem;
        font-weight: 500;
        transition: color 0.3s ease;
      }
      .nav-links a:hover {
        color: var(--primary-color);
      }
      .nav-actions {
        display: flex;
        gap: 1rem;
      }
      .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
      }
      .hamburger span {
        width: 25px;
        height: 2px;
        background-color: var(--text-primary);
        transition: 0.3s;
      }

      .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-dark);
        padding: 100px 5% 2rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
      }
      .mobile-menu.active {
        transform: translateY(0);
      }

      /* General Layout */
      .section {
        padding: 80px 5%;
      }
      .bg-dark {
        background-color: var(--bg-dark);
      }
      .bg-surface {
        background-color: var(--bg-surface);
      }
      .text-center {
        text-align: center;
      }

      /* Animations */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      .anim-1 {
        opacity: 0;
        animation: fadeInUp 0.6s ease 0s forwards;
      }
      .anim-2 {
        opacity: 0;
        animation: fadeInUp 0.6s ease 0.15s forwards;
      }
      .anim-3 {
        opacity: 0;
        animation: fadeInUp 0.6s ease 0.3s forwards;
      }

      /* HERO - Register Specific */
      .hero-register {
        position: relative;
        min-height: 90vh;
        display: flex;
        align-items: center;
        background-color: var(--bg-dark);
        padding-top: 80px;
        overflow: hidden;
      }
      .hero-register::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 50vw;
        height: 60vw;
        background: radial-gradient(
          circle,
          rgba(212, 146, 10, 0.18) 0%,
          transparent 65%
        );
        z-index: 0;
        pointer-events: none;
      }
      .hero-register-container {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 1;
        padding: 0 5%;
      }
      .hero-register-content {
        width: 55%;
        padding-right: 2rem;
      }
      .hero-register h1 {
        font-size: 44px;
        background: var(--gradient-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1.5rem;
        line-height: 1.15;
      }
      .hero-register p {
        font-size: 18px;
        color: var(--text-primary);
        max-width: 460px;
        margin-bottom: 2.5rem;
      }
      .hero-register-img {
        width: 45%;
        display: flex;
        justify-content: flex-end;
        position: absolute;
        right: -5%;
        bottom: 0;
        height: 90vh;
      }
      .hero-register-img img {
        height: 100%;
        width: auto;
        object-fit: contain;
        object-position: bottom right;
      }

      /* WHY REGISTER - Section 2 */
      .trust-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
      }
      .trust-item {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }
      .trust-icon svg {
        width: 40px;
        height: 40px;
        stroke: var(--primary-color);
        stroke-width: 1.5;
        fill: none;
      }
      .trust-item h3 {
        font-family: var(--font-body);
        font-size: 18px;
        font-weight: 700;
      }
      .trust-item p {
        font-size: 14px;
        color: var(--text-secondary);
      }

      /* HOW TO REGISTER - Section 3 (Vertical Steps) */
      .step-vert-container {
        display: flex;
        flex-direction: column;
        max-width: 800px;
        margin: 0 auto;
        padding-top: 2rem;
      }
      .step-vert-item {
        display: flex;
        margin-bottom: 40px;
        position: relative;
      }
      .step-vert-item:last-child {
        margin-bottom: 3rem;
      }
      .step-vert-item:not(:last-child)::after {
        content: "";
        position: absolute;
        left: 24px;
        top: 60px;
        bottom: -30px;
        border-left: 2px dashed var(--primary-color);
        opacity: 0.5;
      }
      .step-vert-num {
        width: 80px;
        flex-shrink: 0;
        font-family: var(--font-accent);
        font-size: 56px;
        background: var(--gradient-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: flex;
        align-items: flex-start;
        line-height: 1;
        z-index: 2;
        background-color: var(--bg-dark);
      }
      .step-vert-content {
        flex-grow: 1;
        max-width: 600px;
        padding-top: 6px;
      }
      .step-vert-content h3 {
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 18px;
        margin-bottom: 0.5rem;
        color: var(--text-primary);
      }
      .step-vert-content p {
        font-family: var(--font-body);
        font-size: 15px;
        color: var(--text-secondary);
        line-height: 1.6;
      }
      .step-vert-cta-wrapper {
        text-align: center;
        margin-top: 1rem;
      }

      /* REGISTRATION TIPS - Section 4 */
      .tips-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
      .tip-card {
        background-color: var(--bg-dark);
        border-radius: 12px;
        border-left: 3px solid var(--primary-color);
        padding: 24px 20px;
        display: flex;
        flex-direction: column;
        min-height: 140px;
      }
      .tip-card h4 {
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 16px;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
      }
      .tip-card p {
        font-size: 14px;
        color: var(--text-secondary);
        flex-grow: 1;
      }

      /* WHAT YOU GET - Section 5 */
      .wyg-grid {
        display: grid;
        grid-template-columns: repeat(3, 2fr);
        gap: 24px;
        margin-bottom: 3rem;
      }
      .wyg-card {
        background-color: var(--bg-surface);
        border-radius: 12px;
        border: 1px solid var(--border-color);
        padding: 20px;
        transition: border-color 0.25s ease;
      }
      .wyg-card:hover {
        border-color: var(--primary-color);
      }
      .wyg-icon svg {
        width: 20px;
        height: 20px;
        stroke: var(--primary-color);
        stroke-width: 2;
        fill: none;
        margin-bottom: 12px;
      }
      .wyg-card h4 {
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 15px;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
      }
      .wyg-card p {
        font-size: 14px;
        color: var(--text-secondary);
      }
      .wyg-cta-wrapper {
        text-align: center;
      }

      /* PAYMENT METHODS - Section 6 */
      .payment-grid {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 2rem;
        margin-bottom: 2rem;
      }
      .payment-item {
        text-align: center;
        flex: 1;
        min-width: 120px;
      }
      .payment-icon {
        width: 60px;
        height: 60px;
        background-color: #2a2720;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 0.5rem;
        font-weight: bold;
        color: #fff;
        filter: saturate(80%);
      }
      .payment-item span {
        font-size: 0.85rem;
        color: var(--text-secondary);
        font-weight: 500;
      }
      .payment-subtext {
        text-align: center;
        color: var(--text-secondary);
        font-size: 14px;
        margin-bottom: 2rem;
      }

      /* TRUST SIGNALS - Section 7 */
      .license-badges {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 24px;
      }
      .license-badge {
        border: 1px solid var(--primary-color);
        border-radius: 4px;
        padding: 6px 12px;
        color: var(--primary-color);
        font-size: 14px;
        font-weight: 600;
        font-family: var(--font-body);
      }
      .trust-banner-img {
        width: 100%;
        max-height: 240px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 32px;
      }
      .trust-text-block {
        max-width: 760px;
        margin: 0 auto 2.5rem;
        text-align: center;
      }
      .trust-text-block p {
        color: var(--text-secondary);
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 1.2rem;
      }
      .trust-text-block p:last-child {
        margin-bottom: 0;
      }

      /* FAQ - Section 8 */
      .faq-wrapper {
        max-width: 800px;
        margin: 0 auto;
      }
      .faq-item {
        border-bottom: 1px solid var(--border-color);
      }
      .faq-question {
        padding: 20px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        font-weight: 600;
      }
      .faq-icon {
        color: var(--primary-color);
        font-size: 20px;
        font-weight: bold;
        transition: transform 0.3s;
      }
      .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
      }
      .faq-answer-inner {
        padding: 0 24px 20px 24px;
        color: var(--text-secondary);
      }

      /* Footer */
      .footer {
        background-color: #000;
        padding: 80px 5% 40px;
        border-top: 1px solid var(--border-color);
      }
      .footer-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-bottom: 3rem;
      }
      .footer-col h4 {
        font-family: var(--font-display);
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        font-size: 1.25rem;
      }
      .footer-links li {
        margin-bottom: 0.75rem;
      }
      .footer-links a {
        color: var(--text-secondary);
        font-size: 0.9rem;
        transition: color 0.3s;
      }
      .footer-links a:hover {
        color: var(--primary-color);
      }
      .footer-bottom {
        border-top: 1px solid var(--border-color);
        padding-top: 2rem;
        text-align: center;
        color: var(--text-secondary);
        font-size: 0.85rem;
      }

      /* Floating CTA */
      .floating-cta {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        z-index: 999;
        background-color: var(--primary-color);
        color: #000;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 700;
        box-shadow: 0 4px 20px rgba(212, 146, 10, 0.4);
        animation: pulse 2s infinite;
      }

      @keyframes pulse {
        0% {
          box-shadow: 0 0 0 0 rgba(212, 146, 10, 0.4);
        }
        70% {
          box-shadow: 0 0 0 15px rgba(212, 146, 10, 0);
        }
        100% {
          box-shadow: 0 0 0 0 rgba(212, 146, 10, 0);
        }
      }

      /* Responsive */
      @media (max-width: 1023px) {
        .hero-register h1 {
          font-size: 36px;
        }
        .hero-register-content {
          width: 60%;
        }
        .hero-register-img {
          width: 50%;
          right: -10%;
        }
        .trust-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .wyg-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .footer-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 767px) {
        .section {
          padding: 48px 5%;
        }
        .nav-links,
        .nav-actions {
          display: none;
        }
        .hamburger {
          display: flex;
        }

        .hero-register {
          flex-direction: column;
          text-align: center;
          justify-content: center;
          min-height: auto;
          padding-top: 120px;
        }
        .hero-register-container {
          flex-direction: column;
        }
        .hero-register-content {
          width: 100%;
          padding-right: 0;
        }
        .hero-register h1 {
          font-size: 30px;
        }
        .hero-register p {
          margin: 0 auto 2rem;
        }
        .hero-register-img {
          position: relative;
          width: 100%;
          height: auto;
          right: 0;
          margin-top: 2rem;
          justify-content: center;
        }

        .btn {
          width: 100%;
        }
        h2 {
          font-size: 26px;
        }

        .trust-grid {
          grid-template-columns: 1fr;
        }
        .tips-grid {
          grid-template-columns: 1fr;
        }
        .wyg-grid {
          grid-template-columns: 1fr;
        }

        .step-vert-num {
          width: 60px;
          font-size: 40px;
        }
        .step-vert-item:not(:last-child)::after {
          left: 18px;
          top: 48px;
        }

        .payment-grid {
          justify-content: flex-start;
        }
        .payment-item {
          flex: 0 0 30%;
        }

        .footer-grid {
          grid-template-columns: 1fr;
        }
        .floating-cta {
          bottom: 1rem;
          right: 1rem;
          padding: 0.75rem 1.5rem;
        }
      }
