
   :root {
      --primary: #dc2626;
      --primary-dark: #b91c1c;
      --secondary: #f59e0b;
      --accent: #ea580c;
      --surface: #1c1917;
      --surface-light: #292524;
      --text: #fef3c7;
      --text-muted: #d6d3d1;
      --gold: #fbbf24;
      --dark-red: #7f1d1d;
      --ember: #f97316;
    }

    * {
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: linear-gradient(135deg, #0c0a09 0%, #1c1917 50%, #0c0a09 100%);
      color: var(--text);
      overflow-x: hidden;
    }

    .orbitron {
      font-family: 'Orbitron', monospace;
    }

    /* Header Video Section */
    .hero-section {
      position: relative;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      text-align: center;
      max-width: 800px;
      padding: 2rem 1rem;
      margin-top: 700px;
    }

    /* Navigation */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(12, 10, 9, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(220, 38, 38, 0.3);
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      background: rgba(12, 10, 9, 0.98);
      box-shadow: 0 4px 20px rgba(220, 38, 38, 0.2);
    }

    .nav-logo {
      height: 40px;
      filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.6));
      transition: transform 0.3s ease;
    }

    .nav-logo:hover {
      transform: scale(1.05);
      filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.8));
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .nav-link {
      position: relative;
      color: var(--text-muted);
      text-decoration: none;
      font-weight: 500;
      padding: 0.5rem 0;
      transition: color 0.3s ease;
    }

    .nav-link:hover {
      color: var(--primary);
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--primary), var(--gold));
      transform: translateX(-50%);
      transition: width 0.3s ease;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .game-nav-icon {
      height: 32px;
      transition: all 0.3s ease;
      filter: grayscale(50%);
    }

    .game-nav-icon:hover {
      filter: grayscale(0%) drop-shadow(0 0 8px rgba(220, 38, 38, 0.8));
      transform: scale(1.1);
    }

    .text-right {
      text-align: right;
      margin-top: 23px;
    }

    /* Mobile Menu */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      background: rgba(12, 10, 9, 0.98);
      backdrop-filter: blur(20px);
      transition: right 0.3s ease;
      z-index: 999;
    }

    .mobile-menu.active {
      right: 0;
    }

    .mobile-menu-content {
      padding: 6rem 2rem 2rem;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .mobile-nav-link {
      color: var(--text);
      text-decoration: none;
      font-size: 1.25rem;
      font-weight: 600;
      padding: 1rem 0;
      border-bottom: 1px solid rgba(220, 38, 38, 0.3);
      transition: color 0.3s ease;
    }

    .mobile-nav-link:hover {
      color: var(--primary);
    }

    /* Hamburger Menu */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      padding: 0.5rem;
      gap: 4px;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: var(--primary);
      transition: all 0.3s ease;
      border-radius: 2px;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Game Cards */
    .game-card {
      background: linear-gradient(145deg, var(--surface), var(--surface-light));
      border-radius: 1.5rem;
      overflow: hidden;
      position: relative;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(220, 38, 38, 0.3);
      backdrop-filter: blur(10px);
    }

    .game-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 25px 50px rgba(220, 38, 38, 0.4), 0 0 30px rgba(251, 191, 36, 0.2);
      border-color: rgba(220, 38, 38, 0.6);
    }

    .game-card-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 200px;
      background-size: cover;
      background-position: center;
      filter: brightness(0.7);
      transition: filter 0.3s ease;
      border-top: 3px solid var(--primary);
      border-bottom: 3px solid var(--gold);
      box-shadow: 
        inset 0 3px 0 0 rgba(220, 38, 38, 0.5),
        inset 0 -3px 0 0 rgba(251, 191, 36, 0.5);
    }

    .game-card:hover .game-card-bg {
      filter: brightness(1);
      border-top-color: var(--gold);
      border-bottom-color: var(--primary);
    }

    .game-card-content {
      position: relative;
      z-index: 10;
      padding: 2rem;
      background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(28, 25, 23, 0.8) 50%,
        rgba(28, 25, 23, 0.95) 100%
      );
      min-height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .status-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      padding: 0.5rem 1rem;
      border-radius: 2rem;
      font-size: 0.875rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      backdrop-filter: blur(10px);
      z-index: 20;
    }

    .status-online {
      background: rgba(34, 197, 94, 0.2);
      color: #4ade80;
      border: 1px solid rgba(34, 197, 94, 0.3);
    }

    .status-coming-soon {
      background: rgba(251, 191, 36, 0.2);
      color: var(--gold);
      border: 1px solid rgba(251, 191, 36, 0.4);
    }

    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    .status-online .status-dot {
      background: #22c55e;
      box-shadow: 0 0 10px #22c55e;
    }

    .status-coming-soon .status-dot {
      background: var(--gold);
      box-shadow: 0 0 10px var(--gold);
    }

    .game-info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 1rem;
      margin: 1.5rem 0;
      margin-top: 100px;
    }

    .info-item {
      background: rgba(220, 38, 38, 0.15);
      padding: 1rem;
      border-radius: 0.75rem;
      text-align: center;
      border: 1px solid rgba(220, 38, 38, 0.3);
      transition: all 0.3s ease;
    }

    .info-item:hover {
      background: rgba(220, 38, 38, 0.25);
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
    }

    .info-label {
      font-size: 0.875rem;
      color: var(--text-muted);
      margin-bottom: 0.25rem;
    }

    .info-value {
      font-weight: 700;
      color: var(--gold);
      font-size: 1.125rem;
      text-shadow: 0 0 5px rgba(251, 191, 36, 0.5);
    }

    /* Container para os botões hero */
    .hero-buttons-container {
      padding: 2rem 0;
      margin: 2rem 0;
    }

    /* Hero Buttons com Efeitos Especiais */
    .hero-btn {
      position: relative;
      display: inline-block;
      text-decoration: none;
      border-radius: 1rem;
      overflow: visible;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      transform-style: preserve-3d;
      padding: 1rem;
      margin: 0.5rem;
    }

    .hero-btn-img {
      height: 6rem;
      width: auto;
      position: relative;
      z-index: 10;
      transition: all 0.4s cubic-bezier(0.5, 0, 0.6, 1);
      filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
      display: block;
    }

    .hero-btn-primary .hero-btn-glow {
      background: radial-gradient(circle, 
        rgba(220, 38, 38, 0.4) 0%, 
        rgba(251, 191, 36, 0.3) 10%, 
        transparent 20%
      );
      box-shadow: 
        0 0 10px rgba(220, 38, 38, 0.6),
        0 0 20px rgba(251, 191, 36, 0.4);
    }

    .hero-btn-secondary .hero-btn-glow {
      background: radial-gradient(circle, 
        rgba(88, 101, 242, 0.4) 0%, 
        rgba(139, 92, 246, 0.3) 10%, 
        transparent 20%
      );
      box-shadow: 
        0 0 10px rgba(88, 101, 242, 0.6),
        0 0 20px rgba(139, 92, 246, 0.4);
    }

    /* Hover Effects */
    .hero-btn:hover {
      transform: translateY(-3px) scale(1.05) !important;
      animation: none !important;
    }

    .hero-btn:hover .hero-btn-img {
      transform: scale(1.0);
      filter: drop-shadow(0 5px 16px rgba(0, 0, 0, 0.4));
    }

    .hero-btn-primary:hover .hero-btn-img {
      filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4)) 
              drop-shadow(0 0 5px rgba(220, 38, 38, 0.8))
              drop-shadow(0 0 10px rgba(251, 191, 36, 0.6)) !important;
    }

    .hero-btn-secondary:hover .hero-btn-img {
      filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4)) 
              drop-shadow(0 0 5px rgba(88, 101, 242, 0.8))
              drop-shadow(0 0 10px rgba(139, 92, 246, 0.6)) !important;
    }

    .hero-btn:hover .hero-btn-glow {
      transform: translate(-50%, -50%) scale(1) !important;
      opacity: 1 !important;
    }

    /* Active/Click Effects */
    .hero-btn:active {
      transform: translateY(-4px) scale(1.02) !important;
    }

    .hero-btn:active .hero-btn-img {
      transform: scale(1.05) !important;
    }

    .hero-btn-primary::before {
      background: radial-gradient(circle, 
        rgba(220, 38, 38, 0.15) 0%, 
        rgba(251, 191, 36, 0.1) 50%, 
        transparent 70%
      );
    }

    .hero-btn-secondary::before {
      background: radial-gradient(circle, 
        rgba(88, 101, 242, 0.15) 0%, 
        rgba(139, 92, 246, 0.1) 50%, 
        transparent 70%
      );
    }

    @keyframes hero-pulse {
      0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
      }
      50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.1);
      }
    }

    /* Floating Animation */
    .hero-btn {
      animation: hero-float 3s ease-in-out infinite;
    }

    .hero-btn:nth-child(2) {
      animation-delay: -3s;
    }

    @keyframes hero-float {
      0%, 100% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-5px);
      }
    }

    .btn {
      padding: 1rem 2rem;
      border-radius: 0.75rem;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--dark-red));
      color: white;
      box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
    }

    .btn-secondary {
      background: linear-gradient(135deg, var(--gold), var(--ember));
      color: #0c0a09;
      box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(251, 191, 36, 0.5);
    }

    .btn-success {
      background: linear-gradient(135deg, #059669, #065f46);
      color: white;
      box-shadow: 0 4px 15px rgba(5, 150, 105, 0.4);
    }

    .btn-success:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(5, 150, 105, 0.5);
    }

    .btn-info {
      background: linear-gradient(135deg, #0891b2, #155e75);
      color: white;
      box-shadow: 0 4px 15px rgba(8, 145, 178, 0.4);
    }

    .btn-info:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(8, 145, 178, 0.5);
    }

    .btn-disabled {
      background: rgba(75, 85, 99, 0.5);
      color: var(--text-muted);
      cursor: not-allowed;
    }

    .discord-btn {
      background: #5865F2;
      color: white;
      padding: 0.75rem 1.5rem;
      border-radius: 0.5rem;
      text-decoration: none;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
    }

    .discord-btn:hover {
      background: #4752C4;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
    }

    /* Account Center Button */
    .account-center-btn {
      background: linear-gradient(135deg, #ff0000, #ff2d2d);
      color: white;
      padding: 0.75rem 1.5rem;
      border-radius: 0.5rem;
      text-decoration: none;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgb(240, 67, 67);
    }

    .account-center-btn:hover {
      background: linear-gradient(135deg, #ff181888, #ea3333);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(235, 76, 76, 0.4);
    }

    /* Footer Melhorado */
    .footer {
      background: linear-gradient(135deg, 
        rgba(12, 10, 9, 0.95) 0%, 
        rgba(28, 25, 23, 0.98) 50%, 
        rgba(12, 10, 9, 0.95) 100%
      );
      border-top: 2px solid rgba(220, 38, 38, 0.4);
      box-shadow: 0 -4px 20px rgba(220, 38, 38, 0.1);
      backdrop-filter: blur(10px);
      position: relative;
      overflow: hidden;
    }

    .footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, 
        transparent 0%, 
        var(--gold) 20%, 
        var(--primary) 50%, 
        var(--gold) 80%, 
        transparent 100%
      );
    }

    .footer-content {
      position: relative;
      z-index: 10;
    }

    .footer-logo {
      height: 48px;
      filter: drop-shadow(0 0 15px rgba(220, 38, 38, 0.6));
      transition: all 0.3s ease;
    }

    .footer-logo:hover {
      transform: scale(1.05);
      filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.8));
    }

    .footer-title {
      color: var(--gold);
      text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
      font-weight: 700;
    }

    .footer-text {
      color: var(--text-muted);
      font-size: 0.875rem;
    }

    .footer-link {
      color: var(--text-muted);
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
      padding: 0.5rem 1rem;
      border-radius: 0.5rem;
    }

    .footer-link:hover {
      color: var(--gold);
      background: rgba(220, 38, 38, 0.1);
      transform: translateY(-1px);
      text-shadow: 0 0 5px rgba(251, 191, 36, 0.5);
    }

    /* Modals */
    .modal {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      padding: 1rem;
    }

    .modal.active {
      opacity: 1;
      visibility: visible;
    }

    .modal-content {
      background: linear-gradient(145deg, var(--surface), var(--surface-light));
      border-radius: 1.5rem;
      padding: 2rem;
      width: 100%;
      max-width: 500px;
      max-height: 90vh;
      overflow-y: auto;
      border: 1px solid rgba(220, 38, 38, 0.4);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
      position: relative;
      transform: scale(0.9);
      transition: transform 0.3s ease;
    }

    .modal.active .modal-content {
      transform: scale(1);
    }

    .modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: none;
      border: none;
      color: var(--text-muted);
      font-size: 1.5rem;
      cursor: pointer;
      transition: color 0.3s ease;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }

    .modal-close:hover {
      color: var(--text);
      background: rgba(220, 38, 38, 0.2);
    }

    /* Account Center Modal Styles */
    .account-center-tabs {
      display: flex;
      border-bottom: 2px solid rgba(220, 38, 38, 0.3);
      margin-bottom: 2rem;
      overflow-x: auto;
    }

    .tab-button {
      padding: 1rem 1.5rem;
      background: none;
      border: none;
      color: var(--text-muted);
      cursor: pointer;
      transition: all 0.3s ease;
      border-bottom: 2px solid transparent;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 600;
    }

    .tab-button.active {
      color: var(--gold);
      border-bottom-color: var(--gold);
      background: rgba(220, 38, 38, 0.1);
    }

    .tab-button:hover:not(.active) {
      color: var(--text);
      background: rgba(220, 38, 38, 0.05);
    }

    .tab-content {
      display: none;
    }

    .tab-content.active {
      display: block;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-label {
      display: block;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 0.5rem;
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      text-shadow: 0 0 5px rgba(251, 191, 36, 0.3);
    }

    .form-input {
      width: 100%;
      padding: 1rem;
      background: rgba(12, 10, 9, 0.8);
      border: 1px solid rgba(220, 38, 38, 0.4);
      border-radius: 0.75rem;
      color: var(--text);
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .form-input:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
    }

    .form-input::placeholder {
      color: var(--text-muted);
    }

    .form-help {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-top: 0.25rem;
    }

    /* Cash Purchase Styles */
    .cash-packages {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      margin: 1rem 0;
    }

    .cash-package {
      background: rgba(220, 38, 38, 0.1);
      border: 1px solid rgba(220, 38, 38, 0.3);
      border-radius: 1rem;
      padding: 1.5rem;
      text-align: center;
      transition: all 0.3s ease;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .cash-package:hover {
      background: rgba(220, 38, 38, 0.2);
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    }

    .cash-package.popular {
      border-color: var(--gold);
      box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
    }

    .cash-package.popular::before {
      content: 'POPULAR';
      position: absolute;
      top: 0.5rem;
      right: -2rem;
      background: var(--gold);
      color: #0c0a09;
      font-size: 0.75rem;
      font-weight: bold;
      padding: 0.25rem 3rem;
      transform: rotate(45deg);
    }

    .cash-amount {
      font-size: 2rem;
      font-weight: bold;
      color: var(--gold);
      margin-bottom: 0.5rem;
    }

    .cash-price {
      font-size: 1.5rem;
      color: var(--text);
      margin-bottom: 0.5rem;
    }

    .cash-bonus {
      color: #4ade80;
      font-size: 0.875rem;
      font-weight: 600;
    }

    /* Payment Methods */
    .payment-methods {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 1rem;
      margin: 1rem 0;
    }

    .payment-method {
      background: rgba(220, 38, 38, 0.1);
      border: 1px solid rgba(220, 38, 38, 0.3);
      border-radius: 0.75rem;
      padding: 1rem;
      text-align: center;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .payment-method:hover {
      background: rgba(220, 38, 38, 0.2);
      transform: translateY(-2px);
    }

    .payment-method.selected {
      border-color: var(--gold);
      background: rgba(251, 191, 36, 0.2);
    }

    /* Message Styles */
    .message {
      padding: 1rem;
      border-radius: 0.75rem;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .message.success {
      background: rgba(34, 197, 94, 0.2);
      border: 1px solid rgba(34, 197, 94, 0.3);
      color: #4ade80;
    }

    .message.error {
      background: rgba(239, 68, 68, 0.2);
      border: 1px solid rgba(239, 68, 68, 0.3);
      color: #f87171;
    }

    .message.info {
      background: rgba(59, 130, 246, 0.2);
      border: 1px solid rgba(59, 130, 246, 0.3);
      color: #60a5fa;
    }

    /* Marquee */
    .marquee-container {
      background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(220, 38, 38, 0.15) 50%, 
        transparent 100%
      );
      padding: 1.5rem 0;
      margin: 3rem 0;
      overflow: hidden;
      position: relative;
      border-top: 1px solid rgba(220, 38, 38, 0.2);
      border-bottom: 1px solid rgba(220, 38, 38, 0.2);
    }

    .marquee-text {
      display: inline-block;
      animation: marquee 15s linear infinite;
      font-size: 1.25rem;
      font-weight: 600;
      background: linear-gradient(
        45deg,
        var(--primary),
        var(--gold),
        var(--ember),
        var(--primary)
      );
      background-size: 300% 300%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: marquee 15s linear infinite, gradient-shift 3s ease-in-out infinite;
      text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
    }

    /* Animations */
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }

    @keyframes marquee {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100vw); }
    }

    @keyframes gradient-shift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    /* Responsividade Melhorada */
    @media (max-width: 1200px) {
      .nav-links {
        gap: 1.5rem;
      }
      
      .game-info-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 1024px) {
      .hero-section {
        height: 90vh;
      }
      
      .hero-content {
        margin-top: 400px;
        padding: 0 1.5rem;
      }
      
      .game-card-content {
        padding: 1.5rem;
        min-height: 380px;
      }
      
      .game-info-grid {
        margin-top: 80px;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }
      
      .hamburger {
        display: flex;
      }
      
      .hero-section {
        height: 80vh;
      }
      
      .hero-content {
        margin-top: 300px;
        padding: 0 1rem;
      }
      
      .hero-content p {
        font-size: 1.125rem;
        margin-bottom: 2rem;
      }
      
      .game-card-content {
        padding: 1.25rem;
        min-height: 360px;
      }
      
      .game-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-top: 60px;
      }
      
      .info-item {
        padding: 0.75rem;
      }
      
      .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
      }
      
      .modal-content {
        margin: 0.5rem;
        padding: 1.5rem;
      }
      
      .marquee-text {
        font-size: 1.125rem;
      }
      
      .account-center-tabs {
        flex-wrap: wrap;
      }
      
      .tab-button {
        flex: 1;
        min-width: 120px;
      }
      
      .cash-packages {
        grid-template-columns: 1fr;
      }
      
      .payment-methods {
        grid-template-columns: repeat(2, 1fr);
      }
      
      /* Footer responsivo */
      .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
      }
      
      .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
      }
    }

    @media (max-width: 640px) {
      .navbar .max-w-7xl {
        padding: 0.75rem 1rem;
      }
      
      .nav-logo {
        height: 36px;
      }
      
      .hero-content {
        margin-top: 200px;
      }
      
      .hero-content p {
        font-size: 1rem;
      }
      
      .game-card-bg {
        height: 160px;
      }
      
      .game-card-content {
        padding: 1rem;
        min-height: 320px;
      }
      
      .game-info-grid {
        grid-template-columns: 1fr 1fr;
        margin-top: 40px;
      }
      
      .info-item {
        padding: 0.5rem;
      }
      
      .info-value {
        font-size: 1rem;
      }
      
      .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
      }
      
      .marquee-text {
        font-size: 1rem;
      }
      
      .modal-content {
        padding: 1rem;
      }
      
      .footer-logo {
        height: 40px;
      }
      
      .tab-button {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
      }
    }

    @media (max-width: 480px) {
      .hero-content {
        margin-top: 150px;
        padding: 0 0.75rem;
      }
      
      .game-card-bg {
        height: 140px;
      }
      
      .game-info-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
      }
      
      .btn {
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
      }
      
      .hero-content .btn img {
        height: 3rem !important;
      }
      
      .marquee-text {
        font-size: 0.9rem;
      }
      
      .payment-methods {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 360px) {
      .game-card-content {
        padding: 0.75rem;
        min-height: 300px;
      }
      
      .info-item {
        padding: 0.375rem;
      }
      
      .info-value {
        font-size: 0.9rem;
      }
      
      .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
      }
      
      .tab-button {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
      }
    }

    /* Modal responsivo maior */
.modal-content {
  background: linear-gradient(145deg, var(--surface), var(--surface-light));
  border-radius: 1.5rem;
  padding: 2rem;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(220, 38, 38, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

/* Modal da Central de Contas - mais largo */
#accountCenterModal .modal-content {
  max-width: 900px;
  width: 95vw;
  max-height: 95vh;
}

/* PIX Modal específico */
#pixModal .modal-content {
  max-width: 500px;
}

/* Cash packages em grid responsivo */
.cash-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

@media (min-width: 768px) {
  .cash-packages {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 767px) {
  .cash-packages {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .cash-packages {
    grid-template-columns: 1fr;
  }
}

/* Cash package styling atualizado */
.cash-package {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cash-package:hover {
  background: rgba(220, 38, 38, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.cash-package.selected {
  border-color: var(--gold);
  background: rgba(251, 191, 36, 0.2);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.cash-package.popular {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.cash-package.popular::before {
  content: 'POPULAR';
  position: absolute;
  top: 0.5rem;
  right: -2rem;
  background: var(--gold);
  color: #0c0a09;
  font-size: 0.6rem;
  font-weight: bold;
  padding: 0.25rem 2.5rem;
  transform: rotate(45deg);
  text-shadow: none;
}

.cash-amount {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 0.25rem;
  text-shadow: 0 0 5px rgba(251, 191, 36, 0.5);
}

.cash-price {
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.cash-bonus {
  color: #4ade80;
  font-size: 0.75rem;
  font-weight: 600;
  text-shadow: 0 0 3px rgba(74, 222, 128, 0.5);
}

/* Payment methods - apenas PIX */
.payment-methods {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.payment-method {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 120px;
}

.payment-method:hover {
  background: rgba(220, 38, 38, 0.2);
  transform: translateY(-2px);
}

.payment-method.selected {
  border-color: var(--gold);
  background: rgba(251, 191, 36, 0.2);
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
}

/* PIX Modal específicos */
.pix-qr-container {
  background: white;
  padding: 1rem;
  border-radius: 1rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.pix-code-container {
  background: rgba(12, 10, 9, 0.8);
  border: 1px solid rgba(220, 38, 38, 0.4);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.pix-code-input {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  background: transparent;
  border: none;
  color: var(--text);
  width: 100%;
  outline: none;
  resize: none;
}

.pix-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1rem 0;
}

.pix-info-card {
  padding: 1rem;
  border-radius: 0.75rem;
  text-align: center;
}

.pix-amount-card {
  background: rgba(220, 38, 38, 0.2);
  border: 1px solid rgba(220, 38, 38, 0.3);
}

.pix-cash-card {
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

/* Responsividade melhorada para modais */
@media (max-width: 768px) {
  #accountCenterModal .modal-content {
    width: 98vw;
    margin: 1vw;
    padding: 1.5rem;
    max-height: 96vh;
  }
  
  .account-center-tabs {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .tab-button {
    flex: 1;
    min-width: 120px;
    padding: 0.75rem 0.5rem;
    font-size: 0.875rem;
  }
  
  .cash-amount {
    font-size: 1.25rem;
  }
  
  .cash-price {
    font-size: 1rem;
  }
  
  .pix-info-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

@media (max-width: 640px) {
  #accountCenterModal .modal-content {
    padding: 1rem;
  }
  
  .modal-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 32px;
    height: 32px;
    font-size: 1.25rem;
  }
  
  .tab-button {
    padding: 0.5rem 0.25rem;
    font-size: 0.8rem;
  }
  
  .tab-button i {
    display: none;
  }
}

/* Animações suaves */
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal.active .modal-content {
  animation: modalSlideIn 0.3s ease-out;
}

/* Loading states */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.btn .fa-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Success/Error states */
.btn-success {
  background: linear-gradient(135deg, #059669, #065f46);
  color: white;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.4);
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.5);
}

/* PIX status indicators */
.pix-status-pending {
  color: #f59e0b;
}

.pix-status-approved {
  color: #10b981;
}

.pix-status-expired {
  color: #ef4444;
}

/* Copy button feedback */
.copy-feedback {
  position: relative;
}

.copy-feedback::after {
  content: 'Copiado!';
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(16, 185, 129, 0.9);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.copy-feedback.show::after {
  opacity: 1;
}