body {
    background:
      radial-gradient(circle at 0% 0%, #361861 0, transparent 55%),
      radial-gradient(circle at 100% 0%, #3c104e 0, transparent 55%),
      radial-gradient(circle at 0% 100%, #120b3b 0, transparent 55%),
      radial-gradient(circle at 100% 100%, #2b0f33 0, #050816 55%);
    min-height: 120vh;
    padding: 40px 0;
  }

  /* Scrollbar personalizada */
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-track {
    background: rgba(5, 8, 22, 0.5);
    border-radius: 10px;
  }

  ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff00c3, #8a2eff);
    border-radius: 10px;
    border: 2px solid rgba(5, 8, 22, 0.5);
  }

  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff00c3, #ff7a00);
  }

  /* Firefox */
  * {
    scrollbar-width: thin;
    scrollbar-color: #8a2eff rgba(5, 8, 22, 0.5);
  }

  .glass-card {
    background: rgba(12, 10, 32, 0.92);
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
      0 24px 60px rgba(0, 0, 0, 0.75),
      -6px -6px 16px rgba(255, 255, 255, 0.04),
      8px 8px 24px rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(26px) saturate(140%);
    -webkit-backdrop-filter: blur(26px) saturate(140%);
  }

  .glass-card-soft {
    background: rgba(18, 16, 48, 0.95);
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow:
      -4px -4px 14px rgba(255, 255, 255, 0.03),
      8px 8px 22px rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
  }

  .casino-logo {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
      radial-gradient(circle at 0% 100%, rgba(255, 0, 195, 0.28), transparent 60%),
      radial-gradient(circle at 100% 0%, rgba(138, 46, 255, 0.32), transparent 60%),
      linear-gradient(135deg, #050814, #0e071e);
  }

  .casino-logo img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .casino-logo img.loaded {
    opacity: 1;
  }

  /* Skeleton Loader para imagens */
  .skeleton-loader {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(255, 255, 255, 0.08) 50%,
      rgba(255, 255, 255, 0.03) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    border-radius: 22px;
    z-index: 0;
  }

  @keyframes shimmer {
    0% {
      background-position: -200% 0;
    }
    100% {
      background-position: 200% 0;
    }
  }


  .casino-logo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 55%);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 1;
  }

  .casino-logo span {
    position: relative;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .age-overlay {
    background: rgba(2, 1, 9, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes scaleIn {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .animate-fadeInUp {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .animate-fadeIn {
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .animate-scaleIn {
    animation: scaleIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  .animate-slideInLeft {
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .animate-slideInRight {
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .stagger-1 { animation-delay: 0.1s; opacity: 0; }
  .stagger-2 { animation-delay: 0.2s; opacity: 0; }
  .stagger-3 { animation-delay: 0.3s; opacity: 0; }
  .stagger-4 { animation-delay: 0.4s; opacity: 0; }
  .stagger-5 { animation-delay: 0.5s; opacity: 0; }
  .stagger-6 { animation-delay: 0.6s; opacity: 0; }

  /* Títulos com gradiente */
  .title-gradient {
    background: linear-gradient(135deg, #ff00c3, #8a2eff, #ff7a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .title-box {
    background: linear-gradient(135deg, rgba(255, 0, 195, 0.1), rgba(138, 46, 255, 0.1), rgba(255, 122, 0, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }