:root {
          --primary-color: #0052FF;
          --secondary-color: #ff006e;
          --background-dark: #000000;
          --card-background: #111111;
          --text-light: #ffffff;
          --text-muted: #a0a0a0;
          --border-radius: 12px;
          --star-size: 16px;
          --padding: 6px 12px;
          --gap-stars: 2px;
          --gap-text: 6px;
        }

        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
          font-family: 'Inter', sans-serif;
        }

        body {
          font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
          -webkit-font-smoothing: antialiased;
          background-color: #000;
          min-height: 2000px !important;
          overflow-x: hidden;
          color: #ffffff;
        }

        /* Navigation */
        nav {
          display: flex;
          justify-content: space-between;
          align-items: center;
          height: 80px;
          width: 90%;
          border-radius: 20px;
          position: fixed;
          top: 30px;
          left: 50%;
          transform: translateX(-50%);
          z-index: 1000;
          background-color: rgba(0, 0, 0, 0.5);
          backdrop-filter: blur(8px);
          -webkit-backdrop-filter: blur(8px);
          padding: 10px 20px;
        }

        .nav-left {
          display: flex;
          align-items: center;
          gap: 30px;
        }

        .nav-links {
          display: flex;
          gap: 30px;
          margin-left: 30px;
            align-items: center;
        }

        .nav-links a {
          color: white;
          text-decoration: none;
          font-size: 14px;
          font-weight: 500;
          transition: opacity 0.3s ease;
          opacity: 1;
        }

        .nav-links a:hover {
          opacity: 0.7;
        }

        .nav-right {
          display: flex;
          align-items: center;
          gap: 15px;
        }

        .logo img {
          height: 70px;
          display: block;
          position: relative;
          top: 5px;
        }

        .sign-in-btn {
          color: white;
          background: transparent;
          border: none;
          cursor: pointer;
          padding: 8px 15px;
          font-size: 13px;
          border-radius: 8px;
          font-weight: 600;
          opacity: 1;
          transition: opacity 0.3s ease;
          text-decoration: none;
        }

        .sign-in-btn:hover {
          opacity: 0.8;
          text-decoration: none;
           color: white !important;
        }

        .sign-in-btn:active {
          opacity: 0.7;
        }

        .play-btn {
          color: white;
          background-color: transparent;
          text-decoration: none;
          border: 1px solid white;
          border-radius: 20px;
          padding: 10px 22px;
          font-weight: 600;
          cursor: pointer;
          opacity: 1;
          transition: opacity 0.3s ease;
          font-size: 13px;
        }

        .play-btn:hover {
          opacity: 0.8;
        }

        .play-btn:active {
          opacity: 0.7;
        }

        /* ===========================
           NOTIFICATION BUTTON
           =========================== */
        .notif-btn {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: none;
            cursor: pointer;
            color: white;
            padding: 6px;
            border-radius: 10px;
            transition: opacity 0.3s ease, background 0.2s ease;
            flex-shrink: 0;
        }

        .notif-btn:hover {
            opacity: 0.7;
            background: rgba(255, 255, 255, 0.08);
        }

        @media (max-width: 767px) {
            .notif-btn { display: flex; }
        }

        /* Mobile Menu Elements */
        .mobile-menu-toggle {
            display: none;
            color: white;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 1002;
            padding: 6px;
            width: 36px;
            height: 36px;
            align-items: center; 
            justify-content: center;
            position: relative;
            
        }

        .menu-icon, .close-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: opacity 0.3s ease;
        }

        .mobile-menu-toggle .close-icon {
            display: none;
        }

        .mobile-menu-toggle.active .menu-icon {
            display: none;
        }

        .mobile-menu-toggle.active .close-icon {
            display: block;
        }

        .mobile-menu {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100vh;
          background: rgba(0, 0, 0, 0.95);
          z-index: 1001;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          gap: 30px;
          opacity: 0;
          transition: opacity 0.3s ease;
          border-radius: 20px;
        }

        .mobile-menu a {
          color: white;
          text-decoration: none;
          font-size: 24px;
          font-weight: 500;
          padding: 10px 20px;
          transition: all 0.3s ease;
        }

        .mobile-menu a:hover {
          opacity: 0.7;
          transform: translateX(10px);
        }

        .mobile-menu-close {
          position: absolute;
          top: 30px;
          right: 30px;
          background: transparent;
          border: none;
          color: white;
          font-size: 30px;
          cursor: pointer;
          z-index: 1002;
        }

        .mobile-menu.active {
          display: flex;
          opacity: 1;
        }

        /* Hero Section */
        .Hero {
          position: absolute;
          z-index: 100 !important;
          top: 50vh;
          left: 50%;
          transform: translate(-50%, -50%);
          text-align: center;
          padding: 50px 20px;
          max-width: 800px;
          width: 90%;
        }

        .Hero h1 {
          font-size: 66px;
          font-weight: 700;
          margin-bottom: 20px;
          text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
          color: white;
        }

        .Hero h1 img {
          height: 190px;
          vertical-align: middle;
          margin: 0 10px;
        }

        /* Download Button */
        .Download {
          background: white;
          color: black;
          border: none;
          padding: 14px 32px;
          font-size: 16px;
          font-weight: 600;
          border-radius: 50px;
          cursor: pointer;
          position: relative;
          text-transform: uppercase;
          letter-spacing: 1px;
          transition: all 0.3s ease;
          overflow: hidden;
        }
       /* Remplacez la règle .Learn existante par celle-ci */

.Learn {
  background: transparent;
  color: rgb(255, 255, 255);
  border: 2px solid rgb(255, 255, 255) !important;  /* Correction : "solid" au lieu de "solide" */
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  padding: 14px 32px;
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  overflow: hidden;
  right: -5px;
  top: 20px;
}

        .Learn::before {
          content: '';
          position: absolute;
          top: 0;
          left: -100%;
          width: 100%;
          height: 100%;
          background: linear-gradient(90deg, transparent, #888888, transparent);
          transition: left 0.5s;
          z-index: -1;
        }

        .Download:hover {
          color: rgba(0, 0, 0, 0.897);
          background-color: rgba(255, 255, 255, 0.87);
          border: none;
        }

        .Download:hover::before {
  left: 100%;
}

    .Learn:hover {
  color: white;
  border-color: #d6d6d6;
  box-shadow: 0 0 25px rgba(199, 199, 199, 0.5);
}
       .Btnl {
        width: 18px;
        height: 18px;
       }
        /* Footer */
        .main-content {
          display: flex;
          padding: 30px;
          gap: 150px;
          position: relative;
          top: 280px;
        }

        .footer-section {
          flex: 1;
        }

        .footer-section h3 {
          font-size: 16px;
          margin-bottom: 20px;
          font-weight: 600;
        }

        .footer-section ul {
          list-style: none;
        }

        .footer-section li {
          margin-bottom: 12px;
          font-size: 14px;
        }

        .footer-section a {
          color: #999;
          text-decoration: none;
          transition: color 0.3s;
        }

        .footer-section a:hover {
          color: #fff;
        }

        .header {
          display: flex;
          justify-content: space-between;
          align-items: flex-start;
          padding: 20px 30px;
          position: relative;
          top: 280px;
        }

        .xlogo {
          display: flex;
          flex-direction: column;
          gap: 10px;
        }

     

        .copyright {
          color: #666;
          font-size: 14px;
          position: relative;
          top: -20px;
        }

        /* Language Selector */
        .language-currency-selector {
          position: relative;
          display: inline-block;
        }

        .selector {
          background: transparent;
          border: 1px solid #333;
          color: #fff;
          padding: 12px 40px 12px 16px;
          border-radius: 6px;
          cursor: pointer;
          display: flex;
          align-items: center;
          gap: 8px;
          font-size: 14px;
          width: 180px;
          height: 50px;
          position: relative;
          transition: all 0.3s ease;
          font-weight: 500;
        }

        .selector:hover {
          border-color: #555;
          background: rgba(255, 255, 255, 0.05);
        }

        .selector::before {
          content: '';
          width: 16px;
          height: 16px;
          background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E") no-repeat center;
          background-size: contain;
          flex-shrink: 0;
        }

        .selector::after {
          content: '';
          width: 12px;
          height: 12px;
          background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E") no-repeat center;
          background-size: contain;
          position: absolute;
          right: 12px;
          transition: transform 0.3s ease;
        }

        .selector.active::after {
          transform: rotate(180deg);
        }

        .dropdown-menu {
          position: absolute;
          top: 100%;
          left: 0;
          right: 0;
          background: #1a1a1a;
          border: 1px solid #333;
          border-radius: 6px;
          margin-top: 4px;
          opacity: 0;
          visibility: hidden;
          transform: translateY(-10px);
          transition: all 0.3s ease;
          z-index: 1000;
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
          backdrop-filter: blur(10px);
        }

        .dropdown-menu.active {
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
        }

        .dropdown-content {
          display: flex;
          max-height: 300px;
          overflow: hidden;
        }

        .dropdown-section {
          flex: 1;
          padding: 16px;
        }

        .dropdown-section:first-child {
          border-right: 1px solid #333;
        }

        .section-title {
          color: #999;
          font-size: 12px;
          text-transform: uppercase;
          margin-bottom: 12px;
          font-weight: 600;
          letter-spacing: 0.5px;
        }

        .option-item {
          display: flex;
          align-items: center;
          gap: 8px;
          padding: 8px 0;
          cursor: pointer;
          transition: all 0.2s ease;
          color: #fff;
          font-size: 14px;
        }

        .option-item:hover {
          color: #0052FF;
          transform: translateX(2px);
        }

        .option-item.selected {
          color: #0052FF;
          font-weight: 600;
        }

        .option-item::before {
          content: '✓';
          color: #0052FF;
          font-weight: bold;
          opacity: 0;
          transition: opacity 0.2s ease;
        }

        /* RESPONSIVE MEDIA QUERIES */

        /* Large tablets et desktop (1024px et plus) */
        @media (min-width: 1024px) {
          .main-content {
            gap: 150px;
          }
          
          .Hero h1 {
            font-size: 76px;
          }
          
          .Hero h1 img {
            height: 220px;
          }
        }

        /* Tablettes (768px à 1023px) */
        @media (max-width: 1023px) and (min-width: 768px) {
          nav {
            width: 95%;
            padding: 8px 15px;
          }
          
          .nav-left {
            gap: 20px;
          }
          
          .nav-links {
            gap: 20px;
            margin-left: 20px;
          }
          
          .nav-links a {
            font-size: 13px;
          }
          
          .logo img {
            height: 60px;
          }
          
          .Hero {
            width: 95%;
            padding: 40px 20px;
          }
          
          .Hero h1 {
            font-size: 50px;
          }
          
          .Hero h1 img {
            height: 140px;
          }
          
          .main-content {
            gap: 60px;
            padding: 25px;
          }
          
          .footer-section {
            min-width: 180px;
          }
          
          .Download {
            padding: 12px 28px;
            font-size: 15px;
          }
        }

        /* Mobiles et petites tablettes (moins de 768px) */
        @media (max-width: 767px) {
          nav {
            width: 95%;
            padding: 8px 15px;
            height: 70px;
          }
          
          .nav-left {
            gap: 15px;
          }
          
          .nav-links {
            display: none;
          }
          
          .logo img {
            height: 50px;
          }

          /* nav-right : tout à droite, hamburger en dernier */
          .nav-right {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: auto;
          }
          
          .sign-in-btn {
            display: none;
          }
          
          .play-btn {
            padding: 8px 16px;
            font-size: 12px;
            order: 1;
          }

          /* Hamburger visible et à l'extrême droite */
          .mobile-menu-toggle {
            display: flex;
            order: 9;
          }
          
          .Hero {
            width: 95%;
            padding: 30px 15px;
            top: 45vh;
          }
          
          .Hero h1 {
            font-size: 36px;
            margin-bottom: 15px;
          }
          
          .Hero h1 img {
            height: 100px;
          }
          
          .Download {
            padding: 12px 24px;
            font-size: 14px;
          }
          
          .header {
            flex-direction: column;
            align-items: center;
            gap: 20px;
            padding: 20px;
          }
          
          .xlogo {
            align-items: center;
            text-align: center;
          }
          
               .logo-icon {
            width: 80px;
            height: 80px;
             position: relative;
            left: -20px !important;
            top: 20px !important;
        }
          
          .copyright {
            font-size: 12px;
            top: 0;
          }
          
          .main-content {
            flex-direction: column;
            gap: 30px;
            padding: 20px;
          }
          
          .footer-section {
            min-width: 100%;
          }
          
          .footer-section h3 {
            font-size: 18px;
            margin-bottom: 15px;
          }
          
          .footer-section li {
            font-size: 16px;
            margin-bottom: 10px;
          }
          
          .selector {
            width: 160px;
            height: 45px;
            font-size: 13px;
            padding: 10px 35px 10px 14px;
          }
          
          .dropdown-content {
            flex-direction: column;
            max-height: 400px;
            overflow-y: auto;
          }
          
          .dropdown-section:first-child {
            border-right: none;
            border-bottom: 1px solid #333;
          }
          
          .dropdown-section {
            padding: 12px;
          }
          
          .section-title {
            font-size: 11px;
          }
          
          .option-item {
            font-size: 13px;
            padding: 6px 0;
          }
        }

        /* Très petits écrans (moins de 480px) */
        @media (max-width: 479px) {
          nav {
            width: 98%;
            padding: 6px 12px;
            top: 15px;
          }
          
          .Hero {
            width: 98%;
            padding: 20px 10px;
          }
          
          .Hero h1 {
            font-size: 28px;
          }
          
          .Hero h1 img {
            height: 80px;
          }
          
          .Download {
            padding: 10px 20px;
            font-size: 13px;
          }
          
          .main-content {
            padding: 15px;
            gap: 25px;
          }
          
          .footer-section h3 {
            font-size: 16px;
          }
          
          .footer-section li {
            font-size: 14px;
          }
          
          .selector {
            width: 162px;
            height: 40px;
            font-size: 12px;
          }
        }

        /* Orientation paysage pour mobiles */
        @media (max-width: 767px) and (orientation: landscape) {
          .Hero {
            top: 40vh;
          }
          
          .Hero h1 {
            font-size: 32px;
          }
          
          .Hero h1 img {
            height: 90px;
          }
          
          .mobile-menu {
            justify-content: flex-start;
            padding-top: 80px;
          }
        }

        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
          body {
            -webkit-font-smoothing: subpixel-antialiased;
          }
        }

        .main-content {
          flex-wrap: wrap;
        }

        .footer-section {
          min-width: 200px;
        }
    
        .ycontainer {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            top: 80px;
        }

        .ytitle {
            font-size: 50px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 50px;
            color: #ffffff;
            opacity: 0;
            animation: slideDown 0.8s ease 0.2s forwards;
        }

        .accordion-item {
            background: transparent;
            margin-bottom: 14px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #2d2d2d;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 0.6s ease forwards;
            cursor: pointer;
            width: 900px;
            position: relative;
            left: -50px;
        }

        .accordion-item:nth-child(2) { animation-delay: 0.1s; }
        .accordion-item:nth-child(3) { animation-delay: 0.2s; }
        .accordion-item:nth-child(4) { animation-delay: 0.3s; }
        .accordion-item:nth-child(5) { animation-delay: 0.4s; }

        .accordion-item:hover {
            background: #2525256e;
            border-color: #404040;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
        }

        .accordion-item.active {
            background: #ffffff1e;
            border-color: #4545453b;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        }

        .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px;
            transition: all 0.3s ease;
        }

        .accordion-title {
            font-size: 1.15rem;
            font-weight: 500;
            color: #e8e8e8;
            transition: all 0.3s ease;
        }

        .accordion-item:hover .accordion-title {
            color: #ffffff;
            transform: translateX(4px);
        }

        .accordion-item.active .accordion-title {
            color: #ffffff;
        }

        .accordion-icon {
            width: 30px;
            height: 30px;
            background: #333333;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 600;
            color: #aaa;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
        }

        .accordion-item:hover .accordion-icon {
            background: #444444;
            color: #ddd;
            transform: scale(1.1);
        }

        .accordion-item.active .accordion-icon {
            transform: rotate(135deg) scale(1.1);
            background: #555555;
            color: #fff;
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            background: #1818188e;
        }

        .accordion-item.active .accordion-content {
            max-height: 400px;
        }

        .accordion-text {
            padding: 24px;
            color: #c0c0c0;
            font-size: 1rem;
            line-height: 1.7;
            opacity: 0;
            transform: translateY(-15px);
            transition: all 0.4s ease 0.1s;
        }

        .accordion-item.active .accordion-text {
            opacity: 1;
            transform: translateY(0);
        }

        .accordion-text strong {
            color: #ffffff;
            font-weight: 600;
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideUp {
            to { opacity: 1; transform: translateY(0); }
        }

        .accordion-item.active::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.03), transparent);
            pointer-events: none;
            opacity: 0;
            animation: shimmer 2s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { opacity: 0; }
            50% { opacity: 1; }
        }

        .accordion-item { position: relative; }

        .accordion-item.active::before {
            content: '';
            position: absolute;
            left: 0; top: 0; bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, #666, #444);
            animation: expandLine 0.3s ease;
        }

        @keyframes expandLine {
            from { height: 0; }
            to { height: 100%; }
        }

        @media (max-width: 768px) {
            body { padding: 40px 15px; }
            .ytitle { font-size: 2rem; margin-bottom: 35px; }
            .accordion-header { padding: 20px; }
            .accordion-title { font-size: 1.05rem; }
            .accordion-text { padding: 20px; font-size: 0.95rem; }
            .accordion-icon { width: 26px; height: 26px; font-size: 14px; }
        }

        .accordion-item:focus-within {
            outline: 2px solid #555;
            outline-offset: 2px;
        }

        .qcontainer {
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;
            gap: 0;
            padding: 60px 20px 72px;
            position: relative;
            left: 0;
        }

        .qright-section {
            display: flex;
            flex: 0 0 auto;
            justify-content: center;
        }
        .qcrypto-card {
            align-items: center;
            background: transparent;
            border: 1px solid #2a2d2f;
            border-radius: 24px;
            display: flex;
            gap: 18px;
            min-height: 112px;
            padding: 22px 24px;
            width: 430px;
            max-width: 430px;
            transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
        }

        .qcrypto-card:hover {
            background: rgba(255, 255, 255, 0.035);
            border-color: #3b3f43;
            transform: translateY(-1px);
        }

        .qcrypto-logo-wrap {
            align-items: center;
            display: flex;
            flex: 0 0 auto;
            justify-content: center;
        }

        .qcrypto-icon {
            background: #f4f4f4;
            border-radius: 50%;
            display: block;
            height: 76px;
            margin: 0;
            object-fit: cover;
            width: 76px;
        }

        .qcrypto-info {
            flex: 1 1 auto;
            min-width: 0;
        }

        .qcrypto-name {
            color: #ffffff;
            font-size: 21px;
            font-weight: 800;
            line-height: 1.1;
            margin: 0 0 8px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .qcrypto-market-row {
            align-items: baseline;
            display: flex;
            gap: 10px;
            min-width: 0;
            white-space: nowrap;
        }

        .qcrypto-price {
            color: #a8abb2;
            font-size: 22px;
            font-weight: 800;
            line-height: 1;
            margin: 0;
            white-space: nowrap;
        }

        .qcrypto-change {
            font-size: 18px;
            font-weight: 800;
            line-height: 1;
            margin: 0;
            white-space: nowrap;
        }

        .qcrypto-change.positive { color: #28d071; }
        .qcrypto-change.negative { color: #ff4b4b; }

        .qcrypto-chart {
            flex: 0 0 94px;
            height: 62px;
            width: 94px;
        }

        .qcrypto-chart polyline {
            fill: none;
            stroke: #28d071;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-width: 3.5;
            transition: points 0.25s ease;
        }

        .qupdate-indicator {
            display: none;
        }

        .qpulse-dot {
            display: none;
        }

        a { text-decoration: none; }
        .featured-collections {
            max-width: 1340px;
            margin: -28px auto 44px;
            padding: 0 8px;
            position: relative;
        }

        .featured-collections-header {
            margin-bottom: 18px;
        }

        .featured-collections-header h2 {
            color: #ffffff;
            font-size: 22px;
            font-weight: 900;
            letter-spacing: 0;
            line-height: 1.1;
            margin: 0 0 8px;
        }

        .featured-collections-header p {
            color: #a7a7ad;
            font-size: 14px;
            font-weight: 700;
            margin: 0;
        }

        .featured-collections-stage {
            position: relative;
        }

        .featured-collections-row {
            display: grid;
            gap: 14px;
            grid-auto-columns: minmax(310px, 1fr);
            grid-auto-flow: column;
            overflow-x: auto;
            overflow-y: hidden;
            padding-bottom: 2px;
            scroll-behavior: smooth;
            scrollbar-width: none;
        }

        .featured-collections-row::-webkit-scrollbar {
            display: none;
        }

        .featured-collection-card {
            background: #141414;
            border: 1px solid #252525;
            border-radius: 14px;
            display: block;
            height: 200px;
            min-width: 0;
            overflow: hidden;
            position: relative;
        }

        .featured-collection-card:hover {
            border-color: #3b3b3b;
        }

        .featured-collection-image {
            height: 100%;
            object-fit: cover;
            opacity: 0.86;
            transform: scale(1.02);
            width: 100%;
        }

        .featured-card-liquidation .featured-collection-image,
        .featured-card-riot .featured-collection-image,
        .featured-card-pass .featured-collection-image {
            background: linear-gradient(135deg, #202020, #4a4a4a);
            object-fit: contain;
            padding: 28px;
        }

        .featured-card-npc .featured-collection-image {
            background: linear-gradient(135deg, #26303a, #151719);
            object-fit: contain;
            padding: 20px;
        }

        .featured-collection-overlay {
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0.68) 78%, rgba(0, 0, 0, 0.9) 100%);
            inset: 0;
            position: absolute;
            z-index: 1;
        }

        .featured-collection-info {
            bottom: 14px;
            left: 12px;
            position: absolute;
            right: 12px;
            z-index: 2;
        }

        .featured-collection-info h3 {
            align-items: center;
            color: #ffffff;
            display: flex;
            font-size: 15px;
            font-weight: 900;
            gap: 4px;
            line-height: 1.15;
            margin: 0 0 7px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .featured-collection-info h3 .material-icons {
            color: #2094ff;
            flex: 0 0 auto;
            font-family: 'Material Icons' !important;
            font-size: 16px;
        }

        .featured-collection-info p {
            color: #bbbbc0;
            font-size: 14px;
            font-weight: 800;
            line-height: 1;
            margin: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .featured-collection-info strong {
            color: #ffffff;
            font-family: 'Space Mono', monospace !important;
            font-weight: 900;
        }

        .featured-loss {
            color: #ff3f4d;
            font-family: 'Space Mono', monospace !important;
            margin-left: 6px;
        }

        .featured-gain {
            color: #28d071;
            font-family: 'Space Mono', monospace !important;
            margin-left: 6px;
        }

        .featured-collections-prev,
        .featured-collections-next {
            align-items: center;
            background: rgba(18, 18, 18, 0.82);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            color: #ffffff;
            cursor: pointer;
            display: flex;
            height: 42px;
            justify-content: center;
            padding: 0;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            transition: background 0.18s ease, transform 0.18s ease;
            width: 42px;
            z-index: 4;
        }


        .featured-collections-prev {
            left: 18px;
            right: auto;
        }

        .featured-collections-next {
            left: auto;
            right: 18px;
        }
        .featured-collections-prev:hover,
        .featured-collections-next:hover {
            background: rgba(0, 0, 0, 0.95);
            transform: translateY(-50%) scale(1.04);
        }

        .featured-collections-prev .material-icons,
        .featured-collections-next .material-icons {
            font-family: 'Material Icons' !important;
            font-size: 26px;
        }

        .collection-showcase {
            max-width: 1220px;
            margin: 22px auto 96px;
            padding: 0 18px;
        }

        .collection-card {
            background: #15161a;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 22px;
            height: 470px;
            overflow: hidden;
            position: relative;
        }

        .collection-banner {
            background:
                linear-gradient(180deg, rgba(246, 246, 246, 0.95) 0%, rgba(181, 181, 181, 0.92) 47%, rgba(98, 98, 98, 0.96) 100%);
            border-radius: inherit;
            inset: 0;
            position: absolute;
            transition: background 0.25s ease;
        }

        .collection-arrow {
            align-items: center;
            background: rgba(0, 0, 0, 0.52);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 50%;
            color: #ffffff;
            cursor: pointer;
            display: flex;
            height: 34px;
            justify-content: center;
            opacity: 0;
            padding: 0;
            pointer-events: none;
            position: absolute;
            top: 43%;
            transform: translateY(-50%) scale(0.96);
            transition: opacity 0.18s ease, transform 0.18s ease, background 0.18s ease;
            width: 34px;
            z-index: 4;
        }

        .collection-arrow-left { left: 20px; }
        .collection-arrow-right { right: 20px; }

        .collection-arrow .material-icons {
            font-size: 22px;
            font-family: 'Material Icons' !important;
        }

        .collection-card:hover .collection-arrow,
        .collection-card:focus-within .collection-arrow {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(-50%) scale(1);
        }

        .collection-arrow:hover {
            background: rgba(0, 0, 0, 0.72);
        }

        .collection-card[data-theme="pix"] .collection-banner {
            background: linear-gradient(180deg, rgba(235, 246, 255, 0.96) 0%, rgba(155, 179, 206, 0.94) 48%, rgba(68, 87, 111, 0.98) 100%);
        }

        .collection-card[data-theme="arena"] .collection-banner {
            background: linear-gradient(180deg, rgba(238, 238, 238, 0.96) 0%, rgba(178, 164, 196, 0.94) 48%, rgba(71, 59, 86, 0.98) 100%);
        }

        .collection-card[data-theme="rewards"] .collection-banner {
            background: linear-gradient(180deg, rgba(247, 246, 234, 0.96) 0%, rgba(189, 177, 121, 0.94) 48%, rgba(83, 76, 42, 0.98) 100%);
        }

        .collection-card[data-theme="pass"] .collection-banner {
            background: linear-gradient(180deg, rgba(241, 244, 241, 0.96) 0%, rgba(150, 178, 158, 0.94) 48%, rgba(45, 78, 56, 0.98) 100%);
        }

        .collection-cover-image {
            border-radius: inherit;
            height: 100%;
            inset: 0;
            object-fit: cover;
            object-position: center;
            opacity: 1;
            position: absolute;
            transition: opacity 0.25s ease, transform 0.25s ease;
            transform: scale(1.01);
            width: 100%;
            z-index: 0;
        }

        .collection-card[data-theme="genesis"] .collection-cover-image {
            opacity: 1;
        }

        .collection-card[data-theme="genesis"] .collection-art-row {
            opacity: 0;
            pointer-events: none;
        }
        .collection-art-row {
            align-items: flex-end;
            display: flex;
            gap: 30px;
            justify-content: center;
            left: 4%;
            position: absolute;
            right: 4%;
            top: 78px;
            transition: opacity 0.2s ease, transform 0.2s ease;
        }

        .collection-character {
            align-items: center;
            background: rgba(255, 255, 255, 0.78);
            border: 2px solid rgba(0, 0, 0, 0.14);
            border-radius: 36px;
            box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
            display: flex;
            height: 136px;
            justify-content: center;
            overflow: hidden;
            transform: rotate(var(--tilt, 0deg));
            width: 108px;
        }

        .collection-character:nth-child(1) { --tilt: -5deg; }
        .collection-character:nth-child(2) { --tilt: 3deg; }
        .collection-character:nth-child(3) { --tilt: -2deg; }
        .collection-character:nth-child(4) { --tilt: 4deg; }
        .collection-character:nth-child(5) { --tilt: -3deg; }
        .collection-character:nth-child(6) { --tilt: 2deg; }
        .collection-character:nth-child(7) { --tilt: -4deg; }

        .collection-character.small {
            height: 112px;
            width: 90px;
        }

        .collection-character.tall {
            height: 158px;
            width: 118px;
        }

        .collection-character.round {
            border-radius: 50%;
            height: 128px;
            width: 128px;
        }

        .collection-character img {
            height: 100%;
            object-fit: cover;
            width: 100%;
        }

        .collection-shade {
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 33%, rgba(0, 0, 0, 0.56) 70%, rgba(0, 0, 0, 0.76) 100%);
            inset: 0;
            position: absolute;
            z-index: 1;
        }

        .collection-info {
            bottom: 26px;
            left: 58px;
            position: absolute;
            z-index: 2;
        }

        .collection-title-row {
            align-items: center;
            display: flex;
            gap: 7px;
            margin-bottom: 4px;
        }

        .collection-title-row h2 {
            color: #ffffff;
            font-size: 44px;
            font-weight: 900;
            letter-spacing: 0;
            line-height: 1;
            margin: 0;
        }
        .collection-astropi-logo {
            display: block;
            height: auto;
            max-height: 78px;
            object-fit: contain;
            object-position: left center;
            width: min(300px, 58vw);
        }

        .collection-verified .material-icons {
            color: #2094ff;
            font-size: 22px;
        }

        .collection-owner {
            align-items: center;
            color: #ffffff;
            display: flex;
            font-size: 16px;
            font-weight: 700;
            gap: 4px;
            margin-bottom: 16px;
        }

        .collection-owner .material-icons {
            color: rgba(255, 255, 255, 0.72);
            font-size: 19px;
        }
        .collection-game-offer {
            max-width: 520px;
        }

        .collection-game-eyebrow {
            color: #ffffff;
            font-size: 13px;
            font-weight: 900;
            letter-spacing: 1.7px;
            line-height: 1.2;
            margin: 16px 0 10px;
            text-transform: uppercase;
        }

        .collection-game-description {
            color: #ffffff;
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 0;
            line-height: 1.45;
            margin: 0 0 22px;
            max-width: 500px;
            text-shadow: 0 2px 14px rgba(0, 0, 0, 0.48);
        }

        .collection-game-price {
            color: #ffffff;
            font-size: 16px;
            font-weight: 900;
            letter-spacing: 0;
            line-height: 1;
            margin-bottom: 14px;
        }

        .collection-game-actions {
            align-items: center;
            display: flex;
            gap: 14px;
        }

        .collection-game-primary {
            align-items: center;
            border: 0;
            border-radius: 8px;
            cursor: pointer;
            display: inline-flex;
            font-size: 15px;
            font-weight: 900;
            height: 48px;
            justify-content: center;
            line-height: 1;
            text-decoration: none !important;
            transition: transform 0.18s ease, background 0.18s ease;
        }

        .collection-game-primary {
            background: #ffffff;
            color: #000000 !important;
            min-width: 154px;
            padding: 0 24px;
        }

        .collection-game-primary:hover,
        .collection-game-primary:focus {
            background: #f0f0f0;
            color: #000000 !important;
            transform: translateY(-1px);
        }
.collection-dots {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-top: 16px;
        }

        .collection-dot {
            background: #24262d;
            border: 0;
            border-radius: 999px;
            cursor: pointer;
            height: 5px;
            padding: 0;
            transition: background 0.18s ease, width 0.18s ease;
            width: 48px;
        }

        .collection-dot.active {
            background: #ffffff;
        }

        .collection-card.is-switching .collection-art-row,
        .collection-card.is-switching .collection-info {
            opacity: 0;
            transform: translateY(8px);
        }

        .collection-art-row,
        .collection-info {
            transition: opacity 0.18s ease, transform 0.18s ease;
        }
        .new-releases-section {
            max-width: 1010px;
            margin: -46px auto 92px;
            padding: 0;
        }

        .new-releases-header {
            align-items: center;
            display: flex;
            justify-content: space-between;
            margin-bottom: 24px;
        }

        .new-releases-title-link {
            align-items: center;
            color: #ffffff !important;
            display: inline-flex;
            gap: 8px;
            text-decoration: none !important;
            -webkit-tap-highlight-color: transparent;
        }

        .new-releases-title-link h2 {
            color: #ffffff;
            font-size: 23px;
            font-weight: 900;
            letter-spacing: 0;
            line-height: 1.1;
            margin: 0;
            text-decoration: none !important;
        }

        .new-releases-title-link .material-icons {
            color: #ffffff;
            font-family: 'Material Icons' !important;
            font-size: 25px;
            transition: transform 0.18s ease;
        }

        .new-releases-title-link:hover,
        .new-releases-title-link:focus,
        .new-releases-title-link:active,
        .new-releases-title-link:visited {
            border-bottom: 0 !important;
            box-shadow: none !important;
            color: #ffffff !important;
            outline: none;
            text-decoration: none !important;
        }

        .new-releases-title-link:hover .material-icons {
            transform: translateX(3px);
        }


        .new-releases-row {
            display: grid;
            gap: 20px;
            grid-auto-columns: 186px;
            grid-auto-flow: column;
            justify-content: center;
            overflow-x: auto;
            padding-bottom: 4px;
            scroll-behavior: smooth;
            scrollbar-width: none;
        }

        .new-releases-row::-webkit-scrollbar {
            display: none;
        }

        .new-release-card {
            color: #ffffff !important;
            display: block;
            min-width: 0;
            text-decoration: none !important;
            -webkit-tap-highlight-color: transparent;
        }

        .new-release-card:hover,
        .new-release-card:focus,
        .new-release-card:active,
        .new-release-card:visited {
            border-bottom: 0 !important;
            box-shadow: none !important;
            color: #ffffff !important;
            outline: none;
            text-decoration: none !important;
        }

        .new-release-card h3,
        .new-release-card p,
        .new-release-type,
        .new-release-poster span {
            text-decoration: none !important;
        }

        .new-release-poster {
            align-items: center;
            background: #15161b;
            border-radius: 7px;
            display: flex;
            height: 247px;
            justify-content: center;
            overflow: hidden;
            position: relative;
            width: 100%;
        }

        .new-release-poster::before {
            content: '';
            inset: 0;
            opacity: 0.9;
            position: absolute;
            z-index: 0;
        }

        .new-release-poster::after {
            background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.42) 100%);
            content: '';
            inset: 0;
            position: absolute;
            z-index: 2;
        }

        .new-release-poster img {
            filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.45));
            height: 112px;
            object-fit: contain;
            position: relative;
            width: 112px;
            z-index: 1;
        }

        .new-release-poster span {
            bottom: 22px;
            color: #ffffff;
            font-size: 20px;
            font-weight: 900;
            left: 12px;
            letter-spacing: 2px;
            line-height: 1;
            position: absolute;
            right: 12px;
            text-align: center;
            text-shadow: 0 3px 14px rgba(0, 0, 0, 0.75);
            z-index: 3;
        }

        .release-first-light::before {
            background: radial-gradient(circle at 62% 18%, rgba(255, 233, 157, 0.75), transparent 26%), linear-gradient(145deg, #191919 0%, #5d4b34 54%, #e1c27b 100%);
        }

        .release-subnautica::before {
            background: radial-gradient(circle at 34% 28%, rgba(89, 255, 146, 0.82), transparent 9%), radial-gradient(circle at 70% 30%, rgba(77, 248, 115, 0.7), transparent 10%), linear-gradient(160deg, #02172a 0%, #0b6776 52%, #1e1e72 100%);
        }

        .release-crimson::before {
            background: radial-gradient(circle at 76% 28%, rgba(255, 255, 255, 0.78), transparent 21%), linear-gradient(150deg, #e8e2d6 0%, #a18975 42%, #481f1c 100%);
        }

        .release-batman::before {
            background: radial-gradient(circle at 58% 26%, rgba(45, 149, 255, 0.68), transparent 22%), linear-gradient(150deg, #061129 0%, #143f76 48%, #071129 100%);
        }

        .release-instantale::before {
            background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 34%), #000000;
        }

        .release-subnautica span {
            color: #f7a72a;
            letter-spacing: 1px;
        }

        .release-crimson span,
        .release-instantale span {
            color: #f1f1f1;
            font-family: 'Space Mono', monospace !important;
            font-size: 18px;
            letter-spacing: 3px;
        }

        .release-batman span {
            font-size: 18px;
            letter-spacing: 0;
        }

        .new-release-type {
            color: #a6a6aa;
            display: block;
            font-size: 13px;
            font-weight: 700;
            margin-top: 12px;
        }

        .new-release-card h3 {
            color: #ffffff;
            display: -webkit-box;
            font-size: 16px;
            font-weight: 900;
            letter-spacing: 0;
            line-height: 1.22;
            margin: 7px 0 14px;
            min-height: 39px;
            overflow: hidden;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
        }

        .new-release-card p {
            color: #ffffff;
            font-size: 15px;
            font-weight: 900;
            margin: 0;
        }


        .featured-games-section {
            margin-top: -46px;
        }

        .release-featured-pix::before {
            background: radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.7), transparent 22%), linear-gradient(145deg, #111111 0%, #2b2c31 52%, #000000 100%);
        }

        .release-featured-astropi::before {
            background: radial-gradient(circle at 34% 25%, rgba(70, 255, 149, 0.72), transparent 10%), radial-gradient(circle at 70% 25%, rgba(70, 255, 149, 0.62), transparent 10%), linear-gradient(145deg, #062232 0%, #115263 52%, #07141b 100%);
        }

        .release-featured-pix::before {
            background: radial-gradient(circle at 67% 28%, rgba(255, 255, 255, 0.66), transparent 22%), linear-gradient(145deg, #d7c7b8 0%, #8c766c 48%, #331b18 100%);
        }

        .release-featured-nft::before {
            background: radial-gradient(circle at 50% 24%, rgba(66, 151, 255, 0.76), transparent 20%), linear-gradient(145deg, #061735 0%, #123e78 52%, #07101f 100%);
        }

        .release-featured-pass::before {
            background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 34%), #000000;
        }

        .release-featured-pix span,
        .release-featured-nft span,
        .release-featured-pass span {
            letter-spacing: 0;
        }


        .nft-101-section {
            max-width: 1340px;
            margin: 78px auto 96px;
            padding: 0 14px;
        }

        .nft-101-header {
            margin-bottom: 18px;
        }

        .nft-101-header h2 {
            color: #ffffff;
            font-size: 24px;
            font-weight: 900;
            letter-spacing: 0;
            line-height: 1.1;
            margin: 0 0 8px;
        }

        .nft-101-header p {
            color: #a4a4aa;
            font-size: 14px;
            font-weight: 800;
            line-height: 1.35;
            margin: 0;
        }

        .nft-101-grid {
            display: grid;
            gap: 14px;
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }

        .nft-101-card {
            color: #ffffff !important;
            display: block;
            min-width: 0;
            text-decoration: none !important;
        }

        .nft-101-card:hover,
        .nft-101-card:focus,
        .nft-101-card:visited {
            color: #ffffff !important;
            outline: none;
            text-decoration: none !important;
        }

        .nft-101-art {
            border-radius: 6px;
            height: 170px;
            overflow: hidden;
            position: relative;
        }

        .nft-101-blue .nft-101-art {
            background: linear-gradient(135deg, #1f83e2 0%, #22c4d8 100%);
        }

        .nft-101-yellow .nft-101-art {
            background: linear-gradient(135deg, #ffda39 0%, #ffa330 100%);
        }

        .nft-101-green .nft-101-art {
            background: linear-gradient(135deg, #72d684 0%, #17833f 100%);
        }

        .nft-101-gold .nft-101-art {
            background: linear-gradient(135deg, #ffd43b 0%, #f7a71e 100%);
        }

        .nft-101-card h3 {
            color: #ffffff;
            font-size: 14px;
            font-weight: 900;
            letter-spacing: 0;
            line-height: 1.25;
            margin: 13px 0 0;
            text-decoration: none !important;
        }

        .nft-101-polaroid {
            align-items: center;
            background: #eaf6ff;
            border-radius: 10px;
            box-shadow: 0 18px 28px rgba(0, 0, 0, 0.18);
            color: #111111;
            display: flex;
            font-size: 18px;
            font-weight: 900;
            height: 86px;
            justify-content: center;
            left: 36%;
            position: absolute;
            top: 38px;
            transform: rotate(7deg);
            width: 92px;
            z-index: 2;
        }

        .nft-101-polaroid::after {
            background: rgba(0, 0, 0, 0.12);
            border-radius: 999px;
            bottom: 12px;
            content: '';
            height: 6px;
            left: 18px;
            position: absolute;
            right: 18px;
        }

        .nft-101-polaroid.character {
            color: #18a8ad;
            font-size: 19px;
            left: 38%;
            top: 34px;
            transform: rotate(6deg);
        }

        .nft-101-polaroid.portrait {
            background: linear-gradient(180deg, #d6f6e6 0%, #f4f4f4 100%);
            left: 38%;
            top: 35px;
            transform: rotate(1deg);
        }

        .nft-101-polaroid.portrait::before {
            background: radial-gradient(circle at 50% 24%, #7d2c44 0 15%, transparent 16%), linear-gradient(90deg, #9e2b6a, #ffb04e);
            border-radius: 50% 50% 42% 42%;
            content: '';
            height: 44px;
            position: absolute;
            top: 18px;
            width: 42px;
        }

        .nft-101-polaroid.mint-card {
            background: #dce8ee;
            left: 38%;
            top: 30px;
            transform: rotate(7deg);
        }

        .nft-101-polaroid.mint-card::before {
            background: linear-gradient(180deg, #66707a, #2d343a);
            border-radius: 5px;
            content: '';
            height: 52px;
            position: absolute;
            top: 16px;
            width: 28px;
        }

        .nft-101-orb.ball {
            background: radial-gradient(circle at 30% 30%, #ffffff 0 15%, #2434a5 16% 29%, #ffffff 30% 46%, #2434a5 47% 59%, #ffffff 60%);
            border-radius: 50%;
            height: 34px;
            left: 20%;
            position: absolute;
            top: 36px;
            width: 34px;
        }

        .nft-101-note {
            color: #1756c8;
            font-size: 46px;
            font-weight: 900;
            position: absolute;
            right: 21%;
            top: 16px;
            transform: rotate(-12deg);
        }

        .nft-101-coin {
            align-items: center;
            background: #fff4c3;
            border: 5px solid rgba(255, 255, 255, 0.88);
            border-radius: 50%;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
            color: #d99a18;
            display: flex;
            font-size: 34px;
            font-weight: 900;
            height: 68px;
            justify-content: center;
            left: 28%;
            position: absolute;
            top: 60px;
            width: 68px;
            z-index: 3;
        }

        .nft-101-plus {
            align-items: center;
            background: #65d67f;
            border-radius: 50%;
            bottom: 18px;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
            color: #ffffff;
            display: flex;
            font-size: 58px;
            font-weight: 900;
            height: 58px;
            justify-content: center;
            line-height: 1;
            position: absolute;
            right: 27%;
            width: 58px;
            z-index: 4;
        }

        .nft-101-safe {
            background: linear-gradient(145deg, #f3fbff 0%, #98c5ff 56%, #4a8eea 100%);
            border: 5px solid rgba(255, 255, 255, 0.68);
            border-radius: 18px;
            box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
            height: 92px;
            position: absolute;
            right: 28%;
            top: 38px;
            transform: rotate(-9deg);
            width: 78px;
            z-index: 2;
        }

        .nft-101-safe::before {
            border: 4px solid #4d91ec;
            border-radius: 50%;
            content: '';
            height: 36px;
            left: 17px;
            position: absolute;
            top: 22px;
            width: 36px;
        }

        .nft-101-safe::after {
            background: #3a78d8;
            border-radius: 999px;
            content: '';
            height: 8px;
            left: 58px;
            position: absolute;
            top: 39px;
            width: 32px;
        }

        .nft-101-paper {
            background: rgba(255, 255, 255, 0.8);
            border-radius: 4px;
            height: 34px;
            position: absolute;
            width: 24px;
        }

        .nft-101-paper.left {
            bottom: 38px;
            left: 18%;
            transform: rotate(8deg);
        }

        .nft-101-paper.right {
            right: 15%;
            top: 48px;
            transform: rotate(14deg);
        }

        .nft-101-spark {
            background: #ffffff;
            clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
            height: 18px;
            position: absolute;
            width: 18px;
        }

        .nft-101-spark.one { bottom: 46px; left: 25%; }
        .nft-101-spark.two { right: 18%; top: 56px; }
        .nft-101-spark.three { left: 22%; top: 88px; }        @media (max-width: 900px) {
            .new-releases-section {
                max-width: 100%;
                margin: -34px auto 76px;
                padding: 0 16px;
            }

            .new-releases-row {
                gap: 16px;
                grid-auto-columns: 184px;
                justify-content: start;
            }

            .new-release-poster {
                height: 246px;
            }
        
            .nft-101-section {
                margin: 56px auto 74px;
                padding: 0 16px;
            }

            .nft-101-grid {
                grid-auto-columns: minmax(260px, 74vw);
                grid-auto-flow: column;
                grid-template-columns: none;
                overflow-x: auto;
                scrollbar-width: none;
            }

            .nft-101-grid::-webkit-scrollbar {
                display: none;
            }

            .nft-101-art {
                height: 160px;
            }}

        @media (max-width: 560px) {
            .new-releases-header {
                margin-bottom: 16px;
            }

            .new-releases-title-link h2 {
                font-size: 20px;
            }


            .new-releases-row {
                grid-auto-columns: 166px;
            }

            .new-release-poster {
                height: 222px;
            }

            .new-release-card h3 {
                font-size: 15px;
            }
        
            .nft-101-header h2 {
                font-size: 21px;
            }

            .nft-101-grid {
                grid-auto-columns: minmax(238px, 82vw);
            }

            .nft-101-art {
                height: 145px;
            }}
        @media (max-width: 900px) {
            .collection-showcase {
                max-width: 100%;
                padding: 0 16px;
            }

            .collection-card {
                height: 470px;
            }

            .collection-art-row {
                gap: 10px;
                left: 4%;
                right: 4%;
                top: 70px;
            }

            .collection-game-offer {
                max-width: 480px;
            }

            .collection-game-description {
                font-size: 17px;
            }
        }

        @media (max-width: 767px) {
            .collection-card {
                height: 640px;
            }

            .collection-art-row {
                flex-wrap: wrap;
                top: 70px;
            }

            .collection-character:nth-child(n+5) {
                display: none;
            }

            .collection-info {
                left: 16px;
                right: 16px;
            }

            .collection-title-row h2 {
                font-size: 28px;
            }

            .collection-astropi-logo {
                max-height: 58px;
                width: min(230px, 70vw);
            }

            .collection-game-offer {
                max-width: 100%;
            }

            .collection-game-eyebrow {
                font-size: 12px;
                margin-top: 14px;
            }

            .collection-game-description {
                font-size: 15px;
                line-height: 1.42;
                margin-bottom: 18px;
            }

            .collection-game-actions {
                gap: 10px;
            }

            .collection-game-primary {
                min-width: 136px;
                padding: 0 18px;
            }

            .collection-arrow {
                height: 32px;
                top: 36%;
                width: 32px;
            }

            .collection-arrow-left { left: 12px; }
            .collection-arrow-right { right: 12px; }
        }

        @media (max-width: 420px) {
            .collection-card {
                height: 640px;
            }


            .collection-game-primary {
                flex: 1;
                min-width: 0;
            }

            .collection-dot {
                width: 32px;
            }
        }
        @media (max-width: 1023px) and (min-width: 768px) {
            .qcontainer { left: 0; gap: 0; padding: 54px 30px 66px; max-width: 100%; }
.qcrypto-card { padding: 22px 24px; width: 430px; max-width: 430px; }
            .qcrypto-icon { width: 68px; height: 68px; }
        }
        @media (max-width: 767px) {
            .featured-collections {
                margin: -18px auto 34px;
                padding: 0 14px;
            }

            .featured-collections-header h2 {
                font-size: 20px;
            }

            .featured-collections-row {
                grid-auto-columns: minmax(284px, 86vw);
            }

            .featured-collection-card {
                height: 176px;
            }

            .featured-collections-prev,
            .featured-collections-next {
                height: 36px;
                width: 36px;
            }

            .featured-collections-prev {
                left: 20px;
                right: auto;
            }

            .featured-collections-next {
                left: auto;
                right: 20px;
            }
        }

        @media (max-width: 767px) {
            .qcontainer { flex-direction: column; left: 0; gap: 0; padding: 48px 20px 58px; text-align: center; }
.qright-section { width: 100%; }
            .qcrypto-card { margin: 0 auto; padding: 22px 24px; text-align: left; width: min(100%, 390px); max-width: 390px; }
            .qcrypto-icon { width: 64px; height: 64px; margin: 0; }
            .qcrypto-name { font-size: 21px; }
            .qcrypto-price { font-size: 22px; }
            .qcrypto-change { font-size: 18px; }
        }

        @media (max-width: 480px) {
            .qcontainer { padding: 38px 15px 48px; gap: 0; }
.qcrypto-card { border-radius: 24px; padding: 14px; width: min(100%, 300px); }
            .qcrypto-icon { width: 34px; height: 34px; }
            .qcrypto-name { font-size: 16px; margin-bottom: 5px; }
            .qcrypto-price { font-size: 14px; margin-bottom: 0; }
            .qcrypto-change { font-size: 13px; }
            .qcrypto-chart { flex-basis: 50px; height: 38px; width: 50px; }
            .qupdate-indicator { display: none; }
        }

        @media (max-width: 319px) {
            .qcontainer { padding: 30px 10px; }
.qcrypto-card { gap: 10px; padding: 12px; }
            .qcrypto-price { font-size: 13px; }
            .qcrypto-chart { display: none; }
        }


        @media (max-width: 1023px) and (min-width: 768px) {
            .ycontainer { padding: 0 30px; }
            .ytitle { font-size: 42px; margin-bottom: 45px; }
            .accordion-item { width: 100%; left: 0; }
        }

        @media (max-width: 767px) {
            .ycontainer { padding: 0 20px; top: 60px; }
            .ytitle { font-size: 32px; margin-bottom: 35px; }
            .accordion-item { width: 100%; left: 0; margin-bottom: 12px; }
            .accordion-header { padding: 18px; }
            .accordion-title { font-size: 1rem; line-height: 1.4; }
            .accordion-text { padding: 18px; font-size: 0.9rem; line-height: 1.6; }
            .accordion-icon { width: 28px; height: 28px; font-size: 21px; flex-shrink: 0; }
        }

        @media (max-width: 480px) {
            .ycontainer { padding: 0 15px; top: 50px; }
            .ytitle { font-size: 28px; margin-bottom: 30px; }
            .accordion-header { padding: 16px; }
            .accordion-title { font-size: 0.95rem; }
            .accordion-text { padding: 16px; font-size: 0.85rem; }
            .accordion-icon { width: 26px; height: 26px; font-size: 18px; }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.2); }
        }

        @keyframes flash-green {
            0%, 100% { background-color: transparent; }
            50% { background-color: rgba(0, 255, 136, 0.2); }
        }

        @keyframes flash-red {
            0%, 100% { background-color: transparent; }
            50% { background-color: rgba(255, 68, 68, 0.2); }
        }

        .flash-green.flash { animation: flash-green 0.5s ease; }
        .flash-red.flash { animation: flash-red 0.5s ease; }

        @media (max-width: 767px) {
            body { font-size: 16px; line-height: 1.6; }
            .Download, .play-btn { min-height: 48px; }
            .accordion-item { margin-bottom: 16px; }
        }

        @media (max-width: 767px) and (orientation: landscape) {
            .qcontainer { padding: 50px 20px; }
.ycontainer { top: 40px; }
        }

        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .qcrypto-card, .accordion-item { border-width: 1.5px; }
        }

        @media (max-width: 767px) {
            .accordion-item:focus { outline: 3px solid #fff; outline-offset: 3px; }
        }

        @media (max-height: 600px) {
            .qcontainer { padding: 40px 20px; }
            .ycontainer { top: 30px; }
            .ytitle { margin-bottom: 25px; }
        }
        .featured-card-dysfunctionals .featured-collection-image {
            object-position: center center;
            transform: translateX(7%) scale(1.16);
        }
        .featured-collection-image.featured-chatgpt-image {
            background: transparent !important;
            object-fit: cover !important;
            object-position: center center !important;
            opacity: 0.9;
            padding: 0 !important;
            transform: scale(1.03) !important;
        }