:root {
      --accent-color: #379315;
      --bg-color: #0f172a;
      --text-color: #f1f5f9;
      --secondary-color: #64748b;
      --gold-color: #D4AF37;
      --gold-dark: #c19d2e;
      --card-bg: #1e293b;
      --border-color: #334155;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: linear-gradient(135deg, var(--bg-color) 0%, #1e293b 100%);
      color: var(--text-color);
      line-height: 1.6;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .redirect-container {
      text-align: center;
      max-width: 500px;
      width: 90%;
      padding: 40px 30px;
      background: var(--card-bg);
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--border-color);
      position: relative;
      overflow: hidden;
    }

    .redirect-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--accent-color), var(--gold-color));
    }

    .logo {
      font-size: 32px;
      font-weight: 800;
      color: var(--gold-color);
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }

    .logo span {
      color: var(--accent-color);
    }

    .icon-container {
      width: 80px;
      height: 80px;
      margin: 0 auto 25px;
      background: linear-gradient(135deg, var(--accent-color), var(--gold-color));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: pulse 2s infinite;
    }

    .icon {
      font-size: 36px;
      color: white;
    }

    h1 {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 15px;
      background: linear-gradient(135deg, var(--text-color), var(--secondary-color));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .subtitle {
      color: var(--secondary-color);
      font-size: 16px;
      margin-bottom: 30px;
      line-height: 1.5;
    }

    .casino-info {
      background: rgba(55, 147, 21, 0.1);
      border: 1px solid var(--accent-color);
      border-radius: 12px;
      padding: 20px;
      margin: 20px 0;
      text-align: left;
    }

    .info-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--gold-color);
      margin-bottom: 15px;
      text-align: center;
    }

    .info-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
      font-size: 14px;
    }

    .info-item {
      display: flex;
      justify-content: space-between;
      padding: 5px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .info-label {
      color: var(--secondary-color);
      font-weight: 600;
    }

    .info-value {
      color: var(--text-color);
      font-weight: 500;
    }

    .progress-container {
      width: 100%;
      height: 6px;
      background: var(--border-color);
      border-radius: 10px;
      margin: 30px 0;
      overflow: hidden;
    }

    .progress-bar {
      height: 100%;
      background: linear-gradient(90deg, var(--accent-color), var(--gold-color));
      border-radius: 10px;
      width: 0%;
      animation: progress 5s linear forwards;
    }

    .countdown {
      font-size: 14px;
      color: var(--secondary-color);
      margin-bottom: 25px;
    }

    .countdown-number {
      font-weight: 700;
      color: var(--gold-color);
      font-size: 18px;
    }

    .destination {
      background: rgba(55, 147, 21, 0.1);
      border: 1px solid var(--accent-color);
      border-radius: 12px;
      padding: 15px;
      margin: 25px 0;
    }

    .destination-title {
      font-size: 14px;
      color: var(--secondary-color);
      margin-bottom: 5px;
    }

    .destination-url {
      font-size: 16px;
      color: var(--gold-color);
      font-weight: 600;
      word-break: break-all;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      margin: 25px 0;
    }

    .feature {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--secondary-color);
    }

    .feature-icon {
      color: var(--accent-color);
      font-size: 16px;
    }

    .button {
      display: inline-block;
      background: linear-gradient(135deg, var(--accent-color), var(--gold-color));
      color: white;
      padding: 12px 30px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 600;
      font-size: 16px;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      margin-top: 10px;
    }

    .button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(55, 147, 21, 0.3);
    }

    .security-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 25px;
      padding-top: 20px;
      border-top: 1px solid var(--border-color);
      font-size: 14px;
      color: var(--secondary-color);
    }

    .security-icon {
      color: var(--accent-color);
    }

    /* Animations */
    @keyframes pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(55, 147, 21, 0.7);
      }
      70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(55, 147, 21, 0);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(55, 147, 21, 0);
      }
    }

    @keyframes progress {
      0% {
        width: 0%;
      }
      100% {
        width: 100%;
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate-fadeInUp {
      animation: fadeInUp 0.8s ease-out;
    }

    /* Responsive Design */
    @media (max-width: 480px) {
      .redirect-container {
        padding: 30px 20px;
      }

      .logo {
        font-size: 28px;
      }

      h1 {
        font-size: 24px;
      }

      .features {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .icon-container {
        width: 70px;
        height: 70px;
      }

      .icon {
        font-size: 30px;
      }

      .casino-info {
        padding: 15px;
      }

      .info-grid {
        font-size: 13px;
      }
    }