    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary-orange: #E06500;
      --dark-bg: #1a1a1a;
      --darker-bg: #0f0f0f;
      --white-text: #ffffff;
      --gray-text: #b0b0b0;
      --light-gray: #2a2a2a;
      --accent-red: #ff4444;
      --success-green: #4CAF50;
      --border-color: #333333;
      --hover-orange: #ff7700;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
      background-color: var(--dark-bg);
      color: var(--white-text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Header */
    header {
      background-color: var(--darker-bg);
      border-bottom: 1px solid var(--border-color);
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(10px);
    }

    .header-content {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 60px;
      gap: 1rem;
    }

    .logo-section {
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: var(--white-text);
      flex-shrink: 0;
      min-width: 50px;
      height: 50px;
    }

    .logo-section img {
      /*height: 45px;*/
      width: auto;
      max-width: 180px;
    }

    /* Navigation */
    nav {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 0;
      align-items: center;
      flex-wrap: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    nav ul::-webkit-scrollbar {
      display: none;
    }

    nav li {
      border-right: 1px solid var(--border-color);
      flex-shrink: 0;
    }

    nav li:last-child {
      border-right: none;
    }

    nav a {
      display: block;
      padding: 0.7rem 1rem;
      color: var(--gray-text);
      text-decoration: none;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      white-space: nowrap;
    }

    nav a:hover {
      color: var(--primary-orange);
      background-color: rgba(224, 101, 0, 0.1);
    }

    .access-btn {
      background-color: var(--primary-orange);
      color: white !important;
      border-radius: 6px;
      padding: 0.6rem 1.2rem !important;
      border: none;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
      flex-shrink: 0;
      font-size: 0.9rem;
    }

    .access-btn:hover {
      background-color: var(--hover-orange);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(224, 101, 0, 0.3);
    }

    /* Mobile Menu Toggle */
    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      flex-shrink: 0;
    }

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

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

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

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

    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, rgba(224, 101, 0, 0.15) 0%, rgba(255, 68, 68, 0.1) 100%),
                  url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(224,101,0,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="rgba(15,15,15,0.8)"/><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
      padding: 4rem 1.5rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero h1 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 800;
      margin-bottom: 1rem;
      color: var(--white-text);
      line-height: 1.2;
    }

    .hero h1 em {
      color: var(--primary-orange);
      font-style: italic;
      font-weight: 900;
    }

    .hero p {
      font-size: 1.1rem;
      color: var(--gray-text);
      max-width: 800px;
      margin: 1rem auto 2rem;
      line-height: 1.8;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 2rem;
      margin: 2rem 0 3rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .stat {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .stat-number {
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary-orange);
    }

    .stat-label {
      font-size: 0.9rem;
      color: var(--gray-text);
      margin-top: 0.5rem;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn {
      padding: 1rem 2rem;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
    }

    .btn-primary {
      background-color: var(--primary-orange);
      color: white;
    }

    .btn-primary:hover {
      background-color: var(--hover-orange);
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(224, 101, 0, 0.3);
    }

    .btn-secondary {
      background-color: transparent;
      color: var(--primary-orange);
      border: 2px solid var(--primary-orange);
    }

    .btn-secondary:hover {
      background-color: rgba(224, 101, 0, 0.1);
    }

    /* Container */
    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* Main Section */
    main {
      padding: 4rem 0;
    }

    section {
      margin-bottom: 5rem;
      padding: 2rem;
      border-radius: 12px;
      background-color: var(--light-gray);
      border: 1px solid var(--border-color);
    }

    h2 {
      font-size: 2rem;
      margin-bottom: 2rem;
      color: var(--white-text);
    }

    h3 {
      font-size: 1.3rem;
      margin-top: 1.5rem;
      margin-bottom: 1rem;
      color: var(--primary-orange);
    }

    p {
      color: var(--gray-text);
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }

    a {
      color: var(--primary-orange);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    a:hover {
      /*color: var(--hover-orange);*/
      /*text-decoration: underline;*/
    }

    /* Category Grid */
    .category-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin: 2rem 0;
    }

    .category-card {
      background: linear-gradient(135deg, rgba(224, 101, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      padding: 1.5rem;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .category-card:hover {
      border-color: var(--primary-orange);
      background: linear-gradient(135deg, rgba(224, 101, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(224, 101, 0, 0.2);
    }

    .category-card h4 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
      color: var(--primary-orange);
    }

    .category-card p {
      font-size: 0.95rem;
      margin-bottom: 1rem;
    }

    .category-card a {
      display: inline-block;
      color: var(--primary-orange);
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .category-card a:hover {
      color: var(--hover-orange);
    }

    /* Features Grid */
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      margin: 2rem 0;
    }

    .feature {
      text-align: center;
      padding: 1.5rem;
      border-radius: 10px;
      background-color: rgba(224, 101, 0, 0.05);
      border: 1px solid var(--border-color);
      transition: all 0.3s ease;
    }

    .feature:hover {
      background-color: rgba(224, 101, 0, 0.1);
      border-color: var(--primary-orange);
    }

    .feature-icon {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }

    .feature h4 {
      color: var(--primary-orange);
      margin-bottom: 0.5rem;
    }

    .feature p {
      font-size: 0.9rem;
    }

    /* Format Section */
    .format-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin: 2rem 0;
    }

    .format-card {
      background: linear-gradient(135deg, rgba(224, 101, 0, 0.15) 0%, rgba(0, 0, 0, 0.2) 100%);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      padding: 2rem;
      text-align: center;
      transition: all 0.3s ease;
    }

    .format-card:hover {
      border-color: var(--primary-orange);
      transform: translateY(-5px);
    }

    .format-label {
      font-size: 1.3rem;
      color: var(--primary-orange);
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .format-card p {
      font-size: 0.95rem;
    }

    /* FAQ Section */
    .faq-item {
      background: rgba(224, 101, 0, 0.05);
      border-left: 4px solid var(--primary-orange);
      padding: 1.5rem;
      margin-bottom: 1rem;
      border-radius: 6px;
      transition: all 0.3s ease;
    }

    .faq-item:hover {
      background: rgba(224, 101, 0, 0.1);
    }

    .faq-item h4 {
      color: var(--primary-orange);
      margin-bottom: 0.5rem;
      font-size: 1rem;
    }

    .faq-item p {
      color: var(--gray-text);
      margin: 0;
      font-size: 0.95rem;
    }

    /* Catalog Section */
    .catalog-section {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
      margin: 2rem 0;
    }

    .catalog-item {
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(224, 101, 0, 0.1) 100%);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      padding: 1.5rem;
      text-align: center;
      transition: all 0.3s ease;
    }

    .catalog-item:hover {
      border-color: var(--primary-orange);
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(224, 101, 0, 0.15) 100%);
      transform: scale(1.05);
    }

    .catalog-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .catalog-item h4 {
      color: var(--white-text);
      margin-bottom: 0.5rem;
    }

    .catalog-item p {
      font-size: 0.85rem;
    }

    /* News Section */
    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin: 2rem 0;
    }

    .news-card {
      background: linear-gradient(135deg, rgba(224, 101, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      padding: 1.5rem;
      transition: all 0.3s ease;
    }

    .news-card:hover {
      border-color: var(--primary-orange);
      transform: translateY(-5px);
    }

    .news-type {
      display: inline-block;
      background-color: var(--primary-orange);
      color: white;
      padding: 0.3rem 0.8rem;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .news-card h4 {
      color: var(--white-text);
      margin-bottom: 0.5rem;
    }

    .news-card p {
      font-size: 0.9rem;
    }

    /* Trust Section */
    .trust-section {
      background: linear-gradient(135deg, rgba(224, 101, 0, 0.15) 0%, rgba(76, 175, 80, 0.1) 100%);
      border: 1px solid var(--border-color);
      padding: 2rem;
      border-radius: 10px;
      margin: 2rem 0;
    }

    .trust-items {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1.5rem;
      margin-top: 1.5rem;
    }

    .trust-item {
      text-align: center;
      padding: 1.5rem;
      background: rgba(0, 0, 0, 0.3);
      border-radius: 8px;
    }

    .trust-icon {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }

    .trust-item h4 {
      color: var(--primary-orange);
      margin-bottom: 0.3rem;
      font-size: 0.95rem;
    }

    .trust-item p {
      font-size: 0.85rem;
    }

    /* Footer */
    footer {
      background-color: var(--darker-bg);
      border-top: 1px solid var(--border-color);
      padding: 3rem 1.5rem;
      margin-top: 5rem;
    }

    .footer-content {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }

    footer h4 {
      color: var(--primary-orange);
      margin-bottom: 1rem;
    }

    footer ul {
      list-style: none;
    }

    footer li {
      margin-bottom: 0.5rem;
    }

    footer a {
      color: var(--gray-text);
      transition: color 0.3s ease;
    }

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

    .footer-bottom {
      border-top: 1px solid var(--border-color);
      padding-top: 2rem;
      text-align: center;
      color: var(--gray-text);
      font-size: 0.9rem;
    }

    /* Tablet Responsive (768px) */
    @media (max-width: 1024px) {
      .header-content {
        padding: 0 1rem;
      }

      nav a {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
      }

      .access-btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.85rem;
      }

      h2 {
        font-size: 1.5rem;
      }

      section {
        padding: 1.5rem;
      }
    }

    /* Mobile Responsive (768px and below) */
    @media (max-width: 768px) {
      .header-content {
        height: 56px;
        padding: 0 1rem;
      }

      .logo-section {
        min-width: 45px;
        height: 45px;
      }

      .logo-section img {
        max-width: 100px;
      }

      /* Show mobile menu toggle */
      .menu-toggle {
        display: flex;
      }

      /* Hide nav by default on mobile */
      nav {
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background-color: var(--darker-bg);
        border-bottom: 1px solid var(--border-color);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        flex: none;
      }

      /* Show nav when active */
      nav.active {
        max-height: 400px;
        overflow-y: auto;
      }

      nav ul {
        flex-direction: column;
        gap: 0;
        overflow: visible;
        padding: 0.5rem 0;
      }

      nav li {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
      }

      nav li:last-child {
        border-bottom: none;
      }

      nav a {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
      }

      .access-btn {
        padding: 0.8rem 1.5rem !important;
        font-size: 0.95rem;
        margin: 0.5rem 1.5rem;
        width: auto;
        border: none;
      }

      /* Hero adjustments */
      .hero {
        padding: 2rem 1rem;
      }

      .hero h1 {
        font-size: 1.5rem;
      }

      .hero p {
        font-size: 0.95rem;
      }

      .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 1.5rem 0 2rem;
      }

      .stat-number {
        font-size: 1.5rem;
      }

      .stat-label {
        font-size: 0.8rem;
      }

      .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
      }

      .btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
      }

      h2 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
      }

      h3 {
        font-size: 1.1rem;
      }

      p {
        font-size: 0.95rem;
      }

      section {
        padding: 1.5rem 1rem;
        margin-bottom: 3rem;
      }

      .category-grid,
      .features,
      .format-grid,
      .news-grid,
      .trust-items {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .container {
        padding: 0 1rem;
      }

      main {
        padding: 2rem 0;
      }

      footer {
        padding: 2rem 1rem;
      }

      .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
    }

    /* Small Mobile (480px and below) */
    @media (max-width: 480px) {
      .header-content {
        height: 50px;
        padding: 0 0.8rem;
      }

      .logo-section {
        min-width: 40px;
        height: 40px;
      }

      .menu-toggle span {
        width: 22px;
        height: 2px;
      }

      nav {
        top: 50px;
      }

      .hero h1 {
        font-size: 1.3rem;
      }

      .hero p {
        font-size: 0.85rem;
        margin: 0.8rem 0 1.5rem;
      }

      .hero-stats {
        gap: 0.8rem;
        margin: 1rem 0 1.5rem;
      }

      .stat-number {
        font-size: 1.2rem;
      }

      .stat-label {
        font-size: 0.75rem;
      }

      h2 {
        font-size: 1.1rem;
      }

      h3 {
        font-size: 1rem;
      }

      p {
        font-size: 0.9rem;
      }

      .category-card h4 {
        font-size: 0.95rem;
      }

      .category-card p {
        font-size: 0.85rem;
      }

      section {
        padding: 1.2rem 0.8rem;
        border-radius: 8px;
      }
    }
