/* EarnPaste payout rates page styles */

/* Custom Tailwind Configuration */
    
    body[data-ep-page="payoutrates"] {
      font-family: 'Inter', sans-serif;
      min-width: 580px;
    }
    
    /* Custom animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes pulse-green {
      0%, 100% {
        text-shadow: 0 0 5px #4ade80, 0 0 10px #4ade80;
      }
      50% {
        text-shadow: 0 0 15px #4ade80, 0 0 25px #4ade80, 0 0 35px #4ade80;
      }
    }
    
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }
    
    /* Custom scrollbar */
    .custom-scrollbar::-webkit-scrollbar {
      width: 8px;
      height: 8px;
    }
    
    .custom-scrollbar::-webkit-scrollbar-track {
      background: rgba(13, 13, 20, 0.5);
      border-radius: 4px;
    }
    
    .custom-scrollbar::-webkit-scrollbar-thumb {
      background: #4ade80;
      border-radius: 4px;
    }
    
    .custom-scrollbar::-webkit-scrollbar-thumb:hover {
      background: #22c55e;
    }
    
    /* Glassmorphism effect - premium black */
    .glass {
      background: linear-gradient(135deg, rgba(13, 13, 20, 0.9) 0%, rgba(10, 10, 15, 0.95) 100%);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
    }
    
    /* Premium badge animation */
    .premium-badge {
      animation: pulse-green 2s infinite;
    }
    
    /* Floating animation */
    .float-animation {
      animation: float 6s ease-in-out infinite;
    }
    
    /* Gradient text */
    .gradient-text {
      background: linear-gradient(135deg, #4ade80, #22c55e, #16a34a);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    /* Table hover effects */
    .table-row:hover {
      background: rgba(74, 222, 128, 0.05);
      transform: translateX(4px);
      transition: all 0.3s ease;
    }
    
    /* Hero gradient - premium black */
    .hero-gradient {
      background: linear-gradient(135deg, #020202 0%, #060608 30%, #08080c 60%, #030305 100%);
    }
    .premium-black-gradient {
      background:
        radial-gradient(ellipse 80% 50% at 20% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 10%, rgba(255, 255, 255, 0.02) 0%, transparent 45%),
        linear-gradient(180deg, #020202 0%, #060608 30%, #08080c 60%, #030305 100%);
      background-attachment: fixed;
    }
    .tile-premium-border { border: 1px solid rgba(255, 255, 255, 0.08); box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04); }
    .nav-translucent {
      background:
        radial-gradient(ellipse 80% 50% at 20% 30%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, rgba(2, 2, 2, 0.5) 0%, rgba(6, 6, 8, 0.45) 50%, rgba(3, 3, 5, 0.5) 100%);
    }
    .nav-enhanced-desktop {
      position: relative;
      box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 40px -10px rgba(74, 222, 128, 0.15);
      border-bottom: 1px solid rgba(75, 85, 99, 0.3);
    }
    .nav-enhanced-desktop::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(74, 222, 128, 0.4) 50%, transparent 100%);
      opacity: 0.8;
    }
    
    /* Card hover effect */
    .feature-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    }

    /* Slot machine style arrows */
    .slot-arrows {
      display: inline-block;
      position: relative;
      width: 30px;
      height: 60px;
      margin: 0 10px;
    }

    .slot-arrows svg {
      position: absolute;
      top: 0;
      left: 0;
      width: 24px;
      height: 24px;
      filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.8));
    }

    .slot-arrow-1 {
      animation: slot-up 0.6s linear infinite;
    }

    .slot-arrow-2 {
      animation: slot-up 0.6s linear infinite 0.1s;
    }

    .slot-arrow-3 {
      animation: slot-up 0.6s linear infinite 0.2s;
    }

    .slot-arrow-4 {
      animation: slot-up 0.6s linear infinite 0.3s;
    }

    .slot-arrow-5 {
      animation: slot-up 0.6s linear infinite 0.4s;
    }

    @keyframes slot-up {
      0% {
        opacity: 0;
        transform: translateY(60px) scale(0.5);
      }
      20% {
        opacity: 1;
        transform: translateY(45px) scale(0.8);
      }
      40% {
        opacity: 1;
        transform: translateY(30px) scale(1.0);
      }
      60% {
        opacity: 1;
        transform: translateY(15px) scale(1.2);
      }
      80% {
        opacity: 1;
        transform: translateY(0px) scale(1.4);
      }
      100% {
        opacity: 0;
        transform: translateY(-15px) scale(1.6);
      }
    }

    /* RPM individual letter scaling effect */
    .rpm-letter {
      color: #4ade80;
      display: inline-block;
      transform-origin: 50% 50%;
      will-change: transform;
      backface-visibility: hidden;
      animation: letter-pulse 4s ease-in-out infinite;
    }

    .rpm-letter:nth-child(1) { animation-delay: 0s; }
    .rpm-letter:nth-child(2) { animation-delay: 0.08s; }
    .rpm-letter:nth-child(3) { animation-delay: 0.16s; }
    .rpm-letter:nth-child(4) { animation-delay: 0.24s; }
    .rpm-letter:nth-child(5) { animation-delay: 0.32s; }
    .rpm-letter:nth-child(6) { animation-delay: 0.4s; }
    .rpm-letter:nth-child(7) { animation-delay: 0.48s; }
    .rpm-letter:nth-child(8) { animation-delay: 0.56s; }
    .rpm-letter:nth-child(9) { animation-delay: 0.64s; }
    .rpm-letter:nth-child(10) { animation-delay: 0.72s; }
    .rpm-letter:nth-child(11) { animation-delay: 0.8s; }
    .rpm-letter:nth-child(12) { animation-delay: 0.88s; }
    .rpm-letter:nth-child(13) { animation-delay: 0.96s; }
    .rpm-letter:nth-child(14) { animation-delay: 1.04s; }
    .rpm-letter:nth-child(15) { animation-delay: 1.12s; }
    .rpm-letter:nth-child(16) { animation-delay: 1.2s; }
    .rpm-letter:nth-child(17) { animation-delay: 1.28s; }
    .rpm-letter:nth-child(18) { animation-delay: 1.36s; }
    .rpm-letter:nth-child(19) { animation-delay: 1.44s; }
    .rpm-letter:nth-child(20) { animation-delay: 1.52s; }
    .rpm-letter:nth-child(21) { animation-delay: 1.6s; }
    .rpm-letter:nth-child(22) { animation-delay: 1.68s; }
    .rpm-letter:nth-child(23) { animation-delay: 1.76s; }
    .rpm-letter:nth-child(24) { animation-delay: 1.84s; }
    .rpm-letter:nth-child(25) { animation-delay: 1.92s; }

    @keyframes letter-pulse {
      0%, 85%, 100% {
        transform: scale(1);
        color: #4ade80;
      }
      15% {
        transform: scale(1.2);
        color: #22c55e;
      }
      25% {
        transform: scale(1.4);
        color: #16a34a;
      }
      35% {
        transform: scale(1.2);
        color: #22c55e;
      }
      45% {
        transform: scale(1);
        color: #4ade80;
      }
    }

    /* Navigation Styles */
    .nav-link {
      color: rgb(209 213 219);
      transition: all 0.3s ease;
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      position: relative;
    }

    .nav-link:hover {
      color: rgb(134 239 172);
      transform: translateY(-1px);
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 50%;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #10b981, #34d399);
      transition: all .3s ease;
      transform: translateX(-50%);
    }

    .nav-link:hover::after {
      width: 100%;
    }

    /* Mobile Navigation Styles */
    .mobile-nav-glass {
      height: 4rem;
      background: rgba(2, 2, 2, 0.5) !important;
      backdrop-filter: blur(30px);
      -webkit-backdrop-filter: blur(30px);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      transition: background 0.3s ease, backdrop-filter 0.3s ease;
      overflow: hidden;
    }

    .mobile-nav-glass::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(
        ellipse at 50% 0%,
        rgba(255,255,255,0.12) 0%,
        rgba(255,255,255,0.06) 40%,
        rgba(255,255,255,0.02) 80%,
        transparent 100%);
      border-top: 1px solid rgba(255,255,255,0.22);
      border-bottom: 1px solid rgba(0,0,0,0.25);
      pointer-events: none;
    }

    .mobile-nav-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: rgba(156, 163, 175, 0.8);
      transition: all 0.3s ease;
      padding: 0.5rem;
      border-radius: 12px;
      min-width: 54px;
      -webkit-tap-highlight-color: transparent;
    }

    .mobile-nav-item:hover,
    .mobile-nav-item:active {
      color: rgba(74, 222, 128, 0.9);
      background: rgba(74, 222, 128, 0.1);
      transform: translateY(-2px);
    }

    .mobile-nav-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 26px;
      height: 26px;
      margin-bottom: 2px;
      transition: transform 0.2s ease;
    }

    .mobile-nav-item:hover .mobile-nav-icon,
    .mobile-nav-item:active .mobile-nav-icon {
      transform: scale(1.1);
    }

    .mobile-nav-icon-center {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      margin-bottom: 2px;
      transition: transform .2s ease;
    }

    .mobile-nav-center:hover .mobile-nav-icon-center,
    .mobile-nav-center:active .mobile-nav-icon-center {
      transform: scale(1.1);
    }

    .mobile-nav-label {
      font-size: 9px;
      text-align: center;
      line-height: 1;
      letter-spacing: 0.025em;
    }

    .mobile-nav-center {
      position: relative;
    }

    .mobile-nav-center:hover,
    .mobile-nav-center:active {
      color: rgba(74, 222, 128, 0.9);
      background: rgba(74, 222, 128, 0.1);
      transform: translateY(-2px);
      border-radius: 12px;
    }

    .mobile-auth-prominent {
      position: relative;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .mobile-auth-icon {
      background: rgba(74, 222, 128, 0.15);
      border: 1px solid rgba(74, 222, 128, 0.3);
      border-radius: 60%;
      color: #4ade80 !important;
      position: relative;
    }

    .mobile-auth-label {
      color: #4ade80 !important;
      font-weight: 500;
      font-size: 10px !important;
    }

    /* Profile images styling */
    #mobileUserPhoto,
    #mobileUserPhotoDropdown {
      width: 32px;
      height: 32px;
      border-radius: 9999px;
      object-fit: cover;
    }

    .home-faq details.home-faq__item {
      position: relative;
      overflow: hidden;
      border-radius: 1rem;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.03);
    }
    .home-faq details.home-faq__item[open] {
      border-color: rgba(34, 197, 94, 0.22);
      background: rgba(255, 255, 255, 0.04);
    }
    .home-faq summary {
      list-style: none;
      cursor: pointer;
      padding: 1rem 1.15rem;
      padding-right: 2.25rem;
      font-size: 0.95rem;
      font-weight: 600;
      line-height: 1.45;
      color: #f3f4f6;
    }
    .home-faq summary::-webkit-details-marker { display: none; }
    .home-faq summary::after {
      content: "+";
      position: absolute;
      right: 1rem;
      top: 1rem;
      font-size: 1.25rem;
      font-weight: 400;
      color: #4ade80;
      line-height: 1;
    }
    .home-faq details[open] summary::after { content: "−"; }
    .home-faq .home-faq__answer {
      margin: 0;
      padding: 0 1.15rem 1.1rem;
      font-size: 0.875rem;
      line-height: 1.65;
      color: rgba(209, 213, 219, 0.92);
    }
