  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      background: #0a1428;
      background-image: 
        linear-gradient(135deg, rgba(10, 20, 40, 0.95) 0%, rgba(20, 10, 40, 0.98) 100%),
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(0, 102, 204, 0.03) 2px, rgba(0, 102, 204, 0.03) 4px);
      color: #ffffff;
      line-height: 1.6;
      overflow-x: hidden;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 10px;
    }

    /* Header - Champions League Style */
    .header {
      background: linear-gradient(135deg, #001428 0%, #1a0a2e 100%);
      border-bottom: 3px solid #00d9ff;
      padding: 15px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 4px 20px rgba(0, 217, 255, 0.4), 0 0 40px rgba(255, 0, 128, 0.2);
    }

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 15px;
    }

    .header-left {
      flex: 1;
    }

    .header-right {
      margin-left: auto;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .logo img {
      height: 50px;
      width: auto;
      filter: drop-shadow(0 0 10px rgba(0, 102, 204, 0.8));
    }

    .logo-text {
      font-size: 28px;
      font-weight: 900;
      background: linear-gradient(45deg, #0066cc, #00d9ff, #ff0080);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .cta-button {
      background: linear-gradient(45deg, #0066cc, #00d9ff, #ff0080);
      color: #ffffff;
      padding: 15px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 900;
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      box-shadow: 0 0 30px rgba(0, 217, 255, 0.6), 0 0 20px rgba(255, 0, 128, 0.4);
      position: relative;
      overflow: hidden;
      border: 2px solid #00d9ff;
    }

    .cta-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.5s ease;
    }

    .cta-button:hover::before {
      left: 100%;
    }

    .cta-button:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 0 50px rgba(0, 217, 255, 0.8), 0 0 30px rgba(255, 0, 128, 0.6);
      background: linear-gradient(45deg, #00d9ff, #ff0080, #0066cc);
    }

    /* Hero Section - Stadium Atmosphere */
    .hero {
      background: 
        linear-gradient(135deg, rgba(0, 20, 40, 0.95) 0%, rgba(0, 40, 80, 0.9) 50%, rgba(0, 20, 40, 0.95) 100%),
        radial-gradient(ellipse at center, rgba(0, 102, 204, 0.2) 0%, transparent 70%);
      padding: 80px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        repeating-linear-gradient(90deg, transparent 0px, rgba(0, 102, 204, 0.05) 50px, transparent 100px),
        repeating-linear-gradient(0deg, transparent 0px, rgba(0, 102, 204, 0.05) 50px, transparent 100px);
      pointer-events: none;
      opacity: 0.3;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero-badge {
      display: inline-block;
      background: linear-gradient(45deg, #0066cc, #00d9ff, #ff0080);
      color: #ffffff;
      padding: 8px 20px;
      border-radius: 25px;
      font-size: 14px;
      font-weight: bold;
      margin-bottom: 30px;
      text-transform: uppercase;
      letter-spacing: 1px;
      animation: pulse 2s infinite;
      box-shadow: 0 4px 15px rgba(0, 217, 255, 0.5), 0 0 20px rgba(255, 0, 128, 0.3);
    }

    @keyframes pulse {
      0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 4px 15px rgba(0, 217, 255, 0.5), 0 0 20px rgba(255, 0, 128, 0.3); 
      }
      50% { 
        transform: scale(1.05); 
        box-shadow: 0 6px 25px rgba(0, 217, 255, 0.7), 0 0 30px rgba(255, 0, 128, 0.5); 
      }
    }

    .hero-title {
      font-size: 56px;
      font-weight: 900;
      color: #ffffff;
      margin-bottom: 20px;
      line-height: 1.1;
      text-shadow: 0 0 30px rgba(0, 217, 255, 0.8), 0 0 20px rgba(255, 0, 128, 0.4);
      text-transform: uppercase;
      letter-spacing: 3px;
    }

    .hero-title .highlight {
      background: linear-gradient(45deg, #0066cc, #00d9ff, #ff0080);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: none;
      filter: drop-shadow(0 0 30px rgba(0, 217, 255, 0.8)) drop-shadow(0 0 20px rgba(255, 0, 128, 0.6));
    }

    .hero-subtitle {
      font-size: 24px;
      color: #b3d9ff;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      font-weight: 500;
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 60px;
    }

    .btn-primary {
      background: linear-gradient(45deg, rgba(0, 102, 204, 0.8), rgba(0, 217, 255, 0.8), rgba(255, 0, 128, 0.8));
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      color: #ffffff;
      padding: 18px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 900;
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      box-shadow: 
        0 0 30px rgba(0, 217, 255, 0.6), 
        0 0 20px rgba(255, 0, 128, 0.4),
        0 8px 32px rgba(0, 0, 0, 0.4);
      border: 2px solid rgba(0, 217, 255, 0.5);
      position: relative;
      overflow: hidden;
      white-space: nowrap;
      display: inline-block;
      text-align: center;
      min-width: 200px;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .btn-primary:hover::before {
      opacity: 1;
    }

    .btn-primary:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 
        0 0 50px rgba(0, 217, 255, 0.8), 
        0 0 40px rgba(255, 0, 128, 0.6),
        0 12px 48px rgba(0, 0, 0, 0.5);
      background: linear-gradient(45deg, rgba(0, 217, 255, 0.9), rgba(255, 0, 128, 0.9), rgba(0, 102, 204, 0.9));
      border-color: rgba(255, 0, 128, 0.8);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      color: #00d9ff;
      padding: 18px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 900;
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      border: 2px solid rgba(0, 217, 255, 0.5);
      position: relative;
      overflow: hidden;
      min-width: 200px;
      display: inline-block;
      text-align: center;
      box-shadow: 
        0 0 20px rgba(255, 0, 128, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .btn-secondary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.3), transparent);
      transition: left 0.5s ease;
    }

    .btn-secondary:hover::before {
      left: 100%;
    }

    .btn-secondary:hover {
      background: linear-gradient(45deg, rgba(0, 102, 204, 0.8), rgba(0, 217, 255, 0.8), rgba(255, 0, 128, 0.8));
      color: #ffffff;
      transform: translateY(-5px) scale(1.05);
      box-shadow: 
        0 0 30px rgba(0, 217, 255, 0.6), 
        0 0 20px rgba(255, 0, 128, 0.4),
        0 12px 48px rgba(0, 0, 0, 0.4);
      border-color: rgba(255, 0, 128, 0.8);
    }

    /* Stats - Championship Trophy Style */
    .hero-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      max-width: 800px;
      margin: 0 auto;
    }

    .stat-item {
      text-align: center;
      padding: 25px;
      background: rgba(0, 102, 204, 0.1);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border-radius: 20px;
      border: 2px solid rgba(0, 217, 255, 0.3);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(0, 217, 255, 0.1);
    }

    .stat-item::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .stat-item::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 0, 128, 0.2), transparent);
      transition: left 0.6s ease;
    }

    .stat-item:hover::before {
      opacity: 1;
    }

    .stat-item:hover::after {
      left: 100%;
    }

    .stat-item:hover {
      transform: translateY(-10px) scale(1.05);
      box-shadow: 
        0 15px 50px rgba(0, 217, 255, 0.4),
        0 0 30px rgba(255, 0, 128, 0.3),
        inset 0 0 30px rgba(0, 217, 255, 0.2);
      border-color: rgba(0, 217, 255, 0.6);
      background: rgba(0, 102, 204, 0.2);
    }

    .stat-number {
      font-size: 36px;
      font-weight: 900;
      background: linear-gradient(45deg, #0066cc, #00aaff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
      margin-bottom: 5px;
    }

    .stat-label {
      color: #b3d9ff;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 600;
    }

    /* Rating Section */
    .rating-section {
      background: linear-gradient(135deg, #001428 0%, #002855 100%);
      padding: 60px 0;
      border-top: 2px solid rgba(0, 102, 204, 0.3);
    }

    .rating-container {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .rating-block {
      background: linear-gradient(135deg, #002855 0%, #001428 100%);
      border: 3px solid #0066cc;
      border-radius: 20px;
      padding: 30px;
      max-width: 380px;
      width: 100%;
      box-shadow: 0 8px 32px rgba(0, 102, 204, 0.4);
      position: relative;
      overflow: hidden;
    }

    .rating-content {
      position: relative;
      z-index: 1;
    }

    .rating-title {
      font-size: 20px;
      font-weight: bold;
      background: linear-gradient(45deg, #0066cc, #00aaff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-align: center;
      margin: 0 0 6px 0;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .rating-subtitle {
      color: #b3d9ff;
      text-align: center;
      margin: 0 0 18px 0;
      font-size: 13px;
    }

    .rating-display {
      text-align: center;
      margin-bottom: 25px;
    }

    .rating-number {
      font-size: 56px;
      font-weight: 900;
      background: linear-gradient(45deg, #0066cc, #00aaff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin: 0;
      line-height: 1;
      filter: drop-shadow(0 0 25px rgba(0, 170, 255, 0.6));
    }

    .rating-label {
      font-size: 14px;
      color: #7799bb;
      margin-top: 8px;
    }

    .interactive-stars-container {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    .interactive-star-btn {
      background: none;
      border: none;
      cursor: pointer;
      padding: 5px;
      transition: all 0.3s ease;
      outline: none;
    }

    .interactive-star-btn:hover {
      transform: scale(1.25) translateY(-3px);
    }

    .interactive-instruction-text {
      text-align: center;
      background: linear-gradient(45deg, #0066cc, #00aaff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-size: 13px;
      margin: 0;
      font-weight: 600;
    }

    /* Navigation Menu */
    .nav-menu {
      background: linear-gradient(135deg, #002855 0%, #001428 100%);
      padding: 40px 0;
      border-top: 2px solid rgba(0, 102, 204, 0.3);
      border-bottom: 2px solid rgba(0, 102, 204, 0.3);
    }

    .menu-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .menu-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px;
      background: rgba(0, 102, 204, 0.1);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border-radius: 20px;
      border: 2px solid rgba(0, 217, 255, 0.2);
      text-decoration: none;
      color: inherit;
      transition: all 0.4s ease;
      min-width: 120px;
      position: relative;
      overflow: hidden;
      box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 0 15px rgba(0, 217, 255, 0.05);
    }

    .menu-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 217, 255, 0.3), 
        rgba(255, 0, 128, 0.3), 
        transparent);
      transition: left 0.6s ease;
    }

    .menu-item:hover::before {
      left: 100%;
    }

    .menu-item:hover {
      transform: translateY(-12px) scale(1.08);
      border-color: rgba(0, 217, 255, 0.6);
      box-shadow: 
        0 15px 40px rgba(0, 217, 255, 0.4),
        0 0 30px rgba(255, 0, 128, 0.3),
        inset 0 0 25px rgba(0, 217, 255, 0.15);
      background: rgba(0, 102, 204, 0.2);
    }

    .menu-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
      margin-bottom: 15px;
      border: 2px solid #0066cc;
      position: relative;
    }

    .menu-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .menu-hot {
      position: absolute;
      top: -5px;
      right: -5px;
      width: 20px;
      height: 20px;
      background: linear-gradient(45deg, #ff4500, #ff6600);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      animation: pulse 2s infinite;
    }

    .menu-label {
      font-size: 14px;
      font-weight: 700;
      color: #00aaff;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Games Section */
    .games {
      background: linear-gradient(135deg, #001428 0%, #002855 100%);
      padding: 80px 0;
    }

    .section-title {
      font-size: 48px;
      font-weight: 900;
      text-align: center;
      margin-bottom: 20px;
      background: linear-gradient(45deg, #0066cc, #00d9ff, #ff0080);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-transform: uppercase;
      letter-spacing: 3px;
      filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.5)) drop-shadow(0 0 30px rgba(255, 0, 128, 0.3));
      position: relative;
      animation: titleGlow 3s ease-in-out infinite;
    }

    @keyframes titleGlow {
      0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.5)) drop-shadow(0 0 30px rgba(255, 0, 128, 0.3));
      }
      50% {
        filter: drop-shadow(0 0 30px rgba(0, 217, 255, 0.8)) drop-shadow(0 0 40px rgba(255, 0, 128, 0.6));
      }
    }

    .section-title::before {
      content: '⭐';
      position: absolute;
      left: -60px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 32px;
      opacity: 0.6;
      animation: starRotate 4s linear infinite;
    }

    .section-title::after {
      content: '⭐';
      position: absolute;
      right: -60px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 32px;
      opacity: 0.6;
      animation: starRotate 4s linear infinite reverse;
    }

    @keyframes starRotate {
      0% { transform: translateY(-50%) rotate(0deg); }
      100% { transform: translateY(-50%) rotate(360deg); }
    }

    .section-subtitle {
      text-align: center;
      color: #b3d9ff;
      font-size: 18px;
      margin-bottom: 60px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .slot-grid {
      display: flex;
      gap: 18px;
      overflow-x: auto;
      padding: 20px 0;
      scroll-behavior: smooth;
    }

    .slot-card {
      flex: 0 0 300px;
      background: rgba(0, 102, 204, 0.1);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 25px;
      overflow: hidden;
      border: 2px solid rgba(0, 217, 255, 0.3);
      transition: all 0.4s ease;
      position: relative;
      box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 0 30px rgba(0, 217, 255, 0.05);
    }

    .slot-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, 
        rgba(0, 217, 255, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 0, 128, 0.1) 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 1;
      pointer-events: none;
    }

    .slot-card:hover::before {
      opacity: 1;
    }

    .slot-card:hover {
      transform: translateY(-12px) scale(1.03);
      border-color: rgba(255, 0, 128, 0.6);
      box-shadow: 
        0 20px 60px rgba(0, 217, 255, 0.5),
        0 0 50px rgba(255, 0, 128, 0.4),
        inset 0 0 40px rgba(0, 217, 255, 0.15);
    }

    .game-image {
      width: 100%;
      height: 280px;
      object-fit: cover;
    }

    .game-content {
      padding: 20px;
    }

    .game-title {
      font-size: 20px;
      font-weight: 900;
      background: linear-gradient(45deg, #0066cc, #00aaff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 10px;
    }

    .game-provider {
      color: #b3d9ff;
      font-size: 14px;
      margin-bottom: 15px;
    }

    .game-buttons {
      display: flex;
      gap: 10px;
    }

    .btn-play {
      flex: 1;
      background: linear-gradient(45deg, rgba(0, 102, 204, 0.8), rgba(0, 217, 255, 0.8), rgba(255, 0, 128, 0.8));
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      color: #ffffff;
      padding: 12px;
      border-radius: 25px;
      text-decoration: none;
      text-align: center;
      font-weight: 900;
      font-size: 14px;
      text-transform: uppercase;
      transition: all 0.3s ease;
      box-shadow: 
        0 4px 16px rgba(0, 217, 255, 0.4),
        0 0 20px rgba(255, 0, 128, 0.3);
      border: 2px solid rgba(0, 217, 255, 0.5);
      position: relative;
      overflow: hidden;
    }

    .btn-play::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      transform: translate(-50%, -50%);
      transition: width 0.5s ease, height 0.5s ease;
    }

    .btn-play:hover::before {
      width: 300px;
      height: 300px;
    }

    .btn-play:hover {
      transform: scale(1.08);
      box-shadow: 
        0 6px 24px rgba(0, 217, 255, 0.6),
        0 0 30px rgba(255, 0, 128, 0.5);
      background: linear-gradient(45deg, rgba(0, 217, 255, 0.9), rgba(255, 0, 128, 0.9), rgba(0, 102, 204, 0.9));
      border-color: rgba(255, 0, 128, 0.8);
    }

    /* Sports Events */
    .sports-events {
      background: linear-gradient(135deg, #002855 0%, #001428 100%);
      padding: 80px 0;
      border-top: 2px solid rgba(0, 102, 204, 0.3);
    }

    .sports-grid {
      display: flex;
      gap: 30px;
      overflow-x: auto;
      padding: 20px 0;
      scroll-behavior: smooth;
    }

    .sport-card {
      flex: 0 0 320px;
      background: rgba(0, 102, 204, 0.1);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 20px;
      padding: 20px;
      border: 2px solid rgba(0, 217, 255, 0.3);
      transition: all 0.4s ease;
      min-width: 320px;
      position: relative;
      overflow: hidden;
      box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 0 30px rgba(0, 217, 255, 0.05);
    }

    .sport-card::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 0, 128, 0.1) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.4s ease;
      animation: sportGlow 4s ease-in-out infinite;
    }

    @keyframes sportGlow {
      0%, 100% { transform: translate(0, 0); }
      50% { transform: translate(-20%, 20%); }
    }

    .sport-card::after {
      content: '⚽';
      position: absolute;
      bottom: 10px;
      right: 10px;
      font-size: 60px;
      opacity: 0.05;
    }

    .sport-card:hover::before {
      opacity: 1;
    }

    .sport-card:hover {
      transform: translateY(-8px) scale(1.02);
      border-color: rgba(0, 217, 255, 0.6);
      box-shadow: 
        0 15px 50px rgba(0, 217, 255, 0.5),
        0 0 40px rgba(255, 0, 128, 0.3),
        inset 0 0 40px rgba(0, 217, 255, 0.15);
      background: rgba(0, 102, 204, 0.2);
    }

    .sport-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
      padding-bottom: 15px;
      border-bottom: 2px solid rgba(0, 102, 204, 0.3);
    }

    .sport-icon {
      font-size: 24px;
      margin-right: 15px;
    }

    .sport-info {
      flex: 1;
    }

    .sport-title {
      font-size: 16px;
      font-weight: 900;
      background: linear-gradient(45deg, #0066cc, #00aaff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin: 0;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .sport-league {
      font-size: 12px;
      color: #b3d9ff;
      text-transform: uppercase;
    }

    .sport-time {
      font-size: 14px;
      font-weight: 700;
      color: #00ff00;
      background: rgba(0, 255, 0, 0.1);
      padding: 5px 10px;
      border-radius: 15px;
      border: 2px solid rgba(0, 255, 0, 0.3);
      animation: pulse 2s infinite;
    }

    .sport-match {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 15px;
      padding: 15px 0;
    }

    .team {
      display: flex;
      flex-direction: row;
      align-items: center;
      flex: 1;
      gap: 8px;
    }

    .team-logo {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(0, 102, 204, 0.4);
    }

    .team-name {
      font-size: 13px;
      font-weight: 700;
      color: #ffffff;
    }

    .vs-divider {
      font-size: 16px;
      font-weight: 900;
      background: linear-gradient(45deg, #0066cc, #00aaff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin: 0 15px;
    }

    .sport-odds {
      display: flex;
      gap: 10px;
      justify-content: space-between;
    }

    .odd-item {
      flex: 1;
      background: rgba(0, 102, 204, 0.1);
      border: 2px solid rgba(0, 102, 204, 0.3);
      border-radius: 10px;
      padding: 12px 8px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .odd-item:hover {
      background: rgba(0, 102, 204, 0.2);
      border-color: #0066cc;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 102, 204, 0.4);
    }

    .odd-label {
      display: block;
      font-size: 11px;
      color: #b3d9ff;
      margin-bottom: 5px;
      text-transform: uppercase;
      font-weight: 600;
    }

    .odd-value {
      display: block;
      font-size: 16px;
      font-weight: 900;
      background: linear-gradient(45deg, #0066cc, #00aaff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .sports-footer {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 40px;
    }

    /* Bonuses */
    .bonuses {
      background: linear-gradient(135deg, #002855 0%, #001428 100%);
      padding: 80px 0;
      border-top: 2px solid rgba(0, 102, 204, 0.3);
    }

    .bonus-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
    }

    .bonus-card {
      background: rgba(0, 102, 204, 0.1);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 25px;
      padding: 40px;
      border: 3px solid rgba(0, 217, 255, 0.3);
      text-align: center;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 0 30px rgba(0, 217, 255, 0.1);
    }

    .bonus-card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 0, 128, 0.15) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.4s ease;
      animation: bonusGlow 5s ease-in-out infinite;
    }

    @keyframes bonusGlow {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(10%, 10%) scale(1.1); }
    }

    .bonus-card::after {
      content: '🏆';
      position: absolute;
      top: -20px;
      right: -20px;
      font-size: 80px;
      opacity: 0.05;
      transform: rotate(-15deg);
    }

    .bonus-card:hover::before {
      opacity: 1;
    }

    .bonus-card:hover {
      transform: translateY(-15px) scale(1.03);
      border-color: rgba(255, 0, 128, 0.6);
      box-shadow: 
        0 20px 60px rgba(0, 217, 255, 0.5),
        0 0 50px rgba(255, 0, 128, 0.4),
        inset 0 0 50px rgba(0, 217, 255, 0.2);
      background: rgba(0, 102, 204, 0.2);
    }

    .bonus-icon {
      font-size: 60px;
      margin-bottom: 20px;
      display: block;
    }

    .bonus-title {
      font-size: 28px;
      font-weight: 900;
      background: linear-gradient(45deg, #0066cc, #00aaff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 15px;
      text-transform: uppercase;
    }

    .bonus-amount {
      font-size: 36px;
      font-weight: 900;
      color: #ffffff;
      margin-bottom: 20px;
    }

    .bonus-description {
      color: #b3d9ff;
      margin-bottom: 30px;
      font-size: 16px;
    }

    /* Features */
    .features {
      background: linear-gradient(135deg, #001428 0%, #002855 100%);
      padding: 80px 0;
      border-top: 2px solid rgba(0, 102, 204, 0.3);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .feature-card {
      background: rgba(0, 102, 204, 0.08);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border-radius: 20px;
      padding: 30px;
      text-align: center;
      border: 2px solid rgba(0, 217, 255, 0.2);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(0, 217, 255, 0.05);
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 217, 255, 0.2), 
        rgba(255, 0, 128, 0.2), 
        transparent);
      transition: left 0.6s ease;
    }

    .feature-card:hover::before {
      left: 100%;
    }

    .feature-card:hover {
      transform: translateY(-8px) scale(1.02);
      border-color: rgba(0, 217, 255, 0.5);
      box-shadow: 
        0 15px 50px rgba(0, 217, 255, 0.4),
        0 0 40px rgba(255, 0, 128, 0.3),
        inset 0 0 30px rgba(0, 217, 255, 0.15);
      background: rgba(0, 102, 204, 0.15);
    }

    .feature-icon {
      font-size: 48px;
      margin-bottom: 20px;
      display: block;
    }

    .feature-title {
      font-size: 24px;
      font-weight: 900;
      background: linear-gradient(45deg, #0066cc, #00aaff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 15px;
      text-transform: uppercase;
    }

    .feature-description {
      color: #b3d9ff;
      line-height: 1.6;
    }

    /* SEO Text */
    .seo-text {
      background: linear-gradient(135deg, #002855 0%, #001428 100%);
      padding: 80px 0;
      border-top: 2px solid rgba(0, 102, 204, 0.3);
    }

    .seo-content {
      max-width: 1200px;
      margin: 0 auto;
    }

    .seo-title {
      font-size: 36px;
      font-weight: 900;
      text-align: center;
      margin-bottom: 50px;
      background: linear-gradient(45deg, #0066cc, #00aaff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-transform: uppercase;
    }

    .seo-text-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }

    .seo-block {
      background: rgba(0, 102, 204, 0.08);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 20px;
      padding: 25px;
      border: 2px solid rgba(0, 217, 255, 0.2);
      transition: all 0.4s ease;
      overflow: hidden;
      flex: 0 0 350px;
      min-width: 350px;
      height: auto;
      position: relative;
      box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 0 30px rgba(0, 217, 255, 0.05);
    }

    .seo-block::before {
      content: '⭐';
      position: absolute;
      top: 15px;
      right: 15px;
      font-size: 28px;
      opacity: 0.15;
      animation: starPulse 3s infinite;
      filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.6));
    }

    @keyframes starPulse {
      0%, 100% { 
        opacity: 0.15; 
        transform: scale(1) rotate(0deg);
      }
      50% { 
        opacity: 0.35; 
        transform: scale(1.2) rotate(180deg);
      }
    }

    .seo-block::after {
      content: '';
      position: absolute;
      top: -3px;
      left: -3px;
      right: -3px;
      bottom: -3px;
      background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(0, 217, 255, 0.4) 45%, 
        rgba(255, 0, 128, 0.4) 55%, 
        rgba(0, 102, 204, 0.4) 70%,
        transparent 85%);
      border-radius: 20px;
      opacity: 0;
      transition: opacity 0.6s ease;
      z-index: -1;
      animation: borderRotate 4s linear infinite;
      filter: blur(5px);
    }

    @keyframes borderRotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .seo-block:hover::after {
      opacity: 1;
    }

    .seo-block:hover {
      transform: translateY(-10px) scale(1.02);
      border-color: rgba(0, 217, 255, 0.6);
      box-shadow: 
        0 15px 60px rgba(0, 217, 255, 0.4),
        0 0 50px rgba(255, 0, 128, 0.3),
        inset 0 0 50px rgba(0, 217, 255, 0.15);
      background: rgba(0, 102, 204, 0.15);
    }

    .seo-block:hover::before {
      animation: starPulse 1s infinite, starSpin 2s linear infinite;
    }

    @keyframes starSpin {
      0% { transform: scale(1.2) rotate(0deg); }
      100% { transform: scale(1.2) rotate(360deg); }
    }

    .seo-block {
      background: rgba(0, 102, 204, 0.08);
      border-radius: 15px;
      padding: 25px;
      border: 2px solid rgba(0, 102, 204, 0.2);
      transition: all 0.3s ease;
    }

    .seo-block:hover {
      transform: translateY(-5px);
      border-color: rgba(0, 102, 204, 0.5);
      box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
    }

    .seo-image {
      width: 100%;
      height: 200px;
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 20px;
      border: 2px solid rgba(0, 102, 204, 0.3);
    }

    .seo-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .seo-block:hover .seo-image img {
      transform: scale(1.05);
    }

    .seo-block h3 {
      font-size: 20px;
      font-weight: 900;
      background: linear-gradient(45deg, #0066cc, #00d9ff, #ff0080);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 15px;
      line-height: 1.3;
      text-transform: uppercase;
      position: relative;
      padding-left: 30px;
      animation: titleShimmer 4s ease-in-out infinite;
    }

    @keyframes titleShimmer {
      0%, 100% {
        filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.4));
      }
      50% {
        filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.6));
      }
    }

    .seo-block h3::before {
      content: '⚡';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      font-size: 20px;
      animation: iconPulse 2s ease-in-out infinite;
    }

    @keyframes iconPulse {
      0%, 100% {
        opacity: 0.6;
        transform: translateY(-50%) scale(1);
      }
      50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
      }
    }

    .seo-block p {
      color: #b3d9ff;
      line-height: 1.6;
      margin-bottom: 15px;
      font-size: 15px;
    }

    .seo-block strong {
      background: linear-gradient(45deg, #0066cc, #00aaff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .seo-list {
      list-style: none;
      padding: 0;
    }

    .seo-list li {
      color: #b3d9ff;
      margin-bottom: 10px;
      font-size: 15px;
    }

    .seo-footer {
      background: rgba(0, 102, 204, 0.1);
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      border: 2px solid rgba(0, 102, 204, 0.3);
      margin-top: 40px;
    }

    .seo-disclaimer {
      color: #ffffff;
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .age-warning {
      color: #ff6b6b;
      font-weight: 700;
      font-size: 14px;
    }

    /* Footer */
    .footer {
      background: #000a14;
      border-top: 3px solid #0066cc;
      padding: 60px 0 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-section h3 {
      background: linear-gradient(45deg, #0066cc, #00aaff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 900;
      margin-bottom: 20px;
      font-size: 20px;
      text-transform: uppercase;
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section ul li {
      margin-bottom: 10px;
    }

    .footer-section ul li a {
      color: #b3d9ff;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-section ul li a:hover {
      color: #00aaff;
    }

    .footer-bottom {
      border-top: 2px solid rgba(0, 102, 204, 0.3);
      padding-top: 30px;
      text-align: center;
      color: #b3d9ff;
    }

    .social-links {
      display: flex;
      gap: 15px;
      justify-content: center;
      margin-top: 20px;
    }

    .social-link {
      width: 50px;
      height: 50px;
      background: linear-gradient(45deg, #0066cc, #0088ff);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      text-decoration: none;
      font-size: 20px;
      transition: all 0.3s ease;
    }

    .social-link:hover {
      transform: translateY(-5px) scale(1.1);
      box-shadow: 0 10px 25px rgba(0, 170, 255, 0.6);
    }

    /* Floating Button - Match Ball with Glass Effect */
    .floating-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 70px;
      height: 70px;
      background: linear-gradient(45deg, rgba(0, 102, 204, 0.9), rgba(0, 217, 255, 0.9), rgba(255, 0, 128, 0.9));
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      text-decoration: none;
      font-size: 28px;
      box-shadow: 
        0 0 30px rgba(0, 217, 255, 0.6),
        0 0 50px rgba(255, 0, 128, 0.4),
        0 8px 32px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      animation: floatingPulse 2s infinite;
      transition: all 0.3s ease;
      border: 3px solid rgba(0, 217, 255, 0.5);
      position: relative;
      overflow: hidden;
    }

    @keyframes floatingPulse {
      0%, 100% { 
        transform: scale(1) translateY(0); 
        box-shadow: 
          0 0 30px rgba(0, 217, 255, 0.6),
          0 0 50px rgba(255, 0, 128, 0.4),
          0 8px 32px rgba(0, 0, 0, 0.4);
      }
      50% { 
        transform: scale(1.05) translateY(-5px); 
        box-shadow: 
          0 0 50px rgba(0, 217, 255, 0.8),
          0 0 70px rgba(255, 0, 128, 0.6),
          0 12px 48px rgba(0, 0, 0, 0.5);
      }
    }

    .floating-btn::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
      animation: floatRotate 4s linear infinite;
    }

    @keyframes floatRotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .floating-btn:hover {
      transform: scale(1.15) rotate(15deg);
      box-shadow: 
        0 0 50px rgba(0, 217, 255, 0.8),
        0 0 80px rgba(255, 0, 128, 0.6),
        0 12px 48px rgba(0, 0, 0, 0.5);
      background: linear-gradient(45deg, rgba(0, 217, 255, 1), rgba(255, 0, 128, 1), rgba(0, 102, 204, 1));
      border-color: rgba(255, 0, 128, 0.8);
    }

    /* Mobile */
    @media (max-width: 768px) {
      .hero-title {
        font-size: 36px;
      }

      .hero-subtitle {
        font-size: 18px;
      }

      .section-title {
        font-size: 32px;
      }

      .menu-grid {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
      }

      .menu-item {
        flex-shrink: 0;
        min-width: 90px;
      }

      .slot-card {
        flex: 0 0 250px;
      }

      .sport-card {
        flex: 0 0 280px;
        min-width: 280px;
      }

      .bonus-grid {
        grid-template-columns: 1fr;
      }

      .features-grid {
        grid-template-columns: 1fr;
      }

      .seo-text-grid {
        display: flex;
        overflow-x: auto;
      }

      .seo-block {
        flex: 0 0 350px;
        min-width: 350px;
      }
    }