    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
      user-select: none;
    }

    :root {
      --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
      --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
      --dark-bg: #0f0f23;
      --card-bg: #1a1a2e;
      --text-primary: #ffffff;
      --text-secondary: #a0a0a0;
      --text-accent: #667eea;
      --border-color: rgba(255, 255, 255, 0.1);
      --shadow-primary: 0 20px 40px rgba(0, 0, 0, 0.3);
      --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.2);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    body {
      background: var(--dark-bg);
      color: var(--text-primary);
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
    }

    ul {
      list-style: none;
    }

    /* Header */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(15, 15, 35, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border-color);
      padding: 1rem 0;
    }

    .headerarea {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 2rem;
    }

    /* Logo styles */
    .logo-container {
      display: flex;
      align-items: center;
    }

    .logo-container img {
      height: 50px;
      width: auto;
      transition: var(--transition);
    }

    .logo-container:hover img {
      transform: scale(1.05);
    }

    .navlinks {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .navlinks a {
      color: var(--text-secondary);
      font-weight: 500;
      position: relative;
      padding: 0.5rem 0;
    }

    .navlinks a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary-gradient);
      transition: width 0.3s ease;
    }

    .navlinks a:hover {
      color: var(--text-primary);
    }

    .navlinks a:hover::after {
      width: 100%;
    }

    .login {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .login a {
      color: var(--text-secondary);
      font-weight: 500;
      padding: 0.5rem 1rem;
      border-radius: 8px;
      transition: var(--transition);
    }

    .login a:hover {
      color: var(--text-primary);
      background: rgba(255, 255, 255, 0.05);
    }

    .signup {
      background: var(--primary-gradient);
      border: none;
      border-radius: 12px;
      padding: 0.75rem 1.5rem;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }

    .signup:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    }

    .signup a {
      color: white;
      font-weight: 600;
      font-size: 0.9rem;
    }

    /* Main Content */
    .main-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .welcome-section {
      text-align: center;
      padding: 4rem 0;
    }

    .welcome-section h4 {
      font-size: 2rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 1rem;
    }

    .welcome-subtitle {
      color: var(--text-secondary);
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto;
    }

    /* Fun Facts Section */
    .fun-facts-section {
      background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
      border-radius: 20px;
      padding: 3rem 2rem;
      margin: 3rem 0;
      border: 1px solid var(--border-color);
      position: relative;
      overflow: hidden;
    }

    .fun-facts-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
      animation: pulse 4s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 0.3; }
      50% { transform: scale(1.1); opacity: 0.1; }
    }

    .fun-facts-header {
      text-align: center;
      margin-bottom: 2rem;
      position: relative;
      z-index: 2;
    }

    .fun-facts-header h3 {
      font-size: 1.75rem;
      font-weight: 700;
      background: var(--accent-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 0.5rem;
    }

    .fun-facts-header p {
      color: var(--text-secondary);
      font-size: 1rem;
    }

    .fun-facts-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      position: relative;
      z-index: 2;
    }

    .fun-fact-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      padding: 1.5rem;
      text-align: center;
      transition: var(--transition);
      cursor: pointer;
      backdrop-filter: blur(10px);
    }

    .fun-fact-card:hover {
      transform: translateY(-5px);
      border-color: rgba(102, 126, 234, 0.5);
      box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    }

    .fun-fact-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      display: block;
      animation: bounce 2s ease-in-out infinite;
    }

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
      40% { transform: translateY(-10px); }
      60% { transform: translateY(-5px); }
    }

    .fun-fact-card:nth-child(1) .fun-fact-icon { animation-delay: 0s; }
    .fun-fact-card:nth-child(2) .fun-fact-icon { animation-delay: 0.2s; }
    .fun-fact-card:nth-child(3) .fun-fact-icon { animation-delay: 0.4s; }
    .fun-fact-card:nth-child(4) .fun-fact-icon { animation-delay: 0.6s; }

    .fun-fact-title {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 0.5rem;
    }

    .fun-fact-description {
      color: var(--text-secondary);
      font-size: 0.9rem;
      line-height: 1.5;
    }

    /* Gaming Stats Section */
    .gaming-stats {
      background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
      border-radius: 20px;
      padding: 2rem;
      margin: 2rem 0;
      border: 1px solid var(--border-color);
      text-align: center;
    }

    .gaming-stats h4 {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 1.5rem;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1.5rem;
    }

    .stat-item {
      background: rgba(255, 255, 255, 0.03);
      border-radius: 12px;
      padding: 1.5rem 1rem;
      transition: var(--transition);
    }

    .stat-item:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: scale(1.05);
    }

    .stat-number {
      font-size: 2rem;
      font-weight: 700;
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
      margin-bottom: 0.5rem;
    }

    .stat-label {
      color: var(--text-secondary);
      font-size: 0.9rem;
      font-weight: 500;
    }

    /* Games Grid */
    .games_grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      padding: 2rem 0 4rem;
    }

    .game_card {
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 2rem;
      text-align: center;
      transition: var(--transition);
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .game_card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--primary-gradient);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .game_card:hover::before {
      transform: scaleX(1);
    }

    .game_card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-card);
      border-color: rgba(102, 126, 234, 0.3);
    }

    .game_card img {
      width: 80px;
      height: 80px;
      margin-bottom: 1.5rem;
      filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
      transition: var(--transition);
    }

    .game_card:hover img {
      transform: scale(1.1);
    }

    .spancont {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--text-primary);
      display: block;
    }

    /* Footer */
    #footer {
      background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
      margin-top: 6rem;
      padding: 3rem 0 2rem;
      border-top: 1px solid var(--border-color);
    }

    .footercontent {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .footerlinks {
      margin-bottom: 2rem;
    }

    .BA h1 {
      font-size: 1.5rem;
      font-weight: 700;
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 2rem;
      text-align: center;
    }

    .footer-sections {
      display: flex;
      justify-content: space-around;
      align-items: flex-start;
      gap: 3rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }

    .footer-section {
      flex: 1;
      min-width: 200px;
    }

    .footer-section .title {
      color: var(--text-primary);
      font-weight: 600;
      margin-bottom: 1rem;
      font-size: 1.1rem;
      text-align: center;
    }

    .footer-section ul {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      align-items: center;
    }

    .footer-section a {
      color: var(--text-secondary);
      font-weight: 400;
      transition: var(--transition);
    }

    .footer-section a:hover {
      color: var(--text-accent);
    }

    .privacyarea {
      border-top: 1px solid var(--border-color);
      padding-top: 2rem;
    }

    .privacyareacontent .links {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      align-items: center;
      justify-content: center;
    }

    .CopyRights {
      color: var(--text-secondary);
      font-size: 0.9rem;
    }

    .privacyarea a {
      color: var(--text-secondary);
      font-size: 0.9rem;
      transition: var(--transition);
    }

    .privacyarea a:hover {
      color: var(--text-accent);
    }

    /* Modal styles */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(10px);
    }

    .modal-content {
      background: var(--card-bg);
      margin: 10% auto;
      padding: 2rem;
      border-radius: 20px;
      width: 90%;
      max-width: 400px;
      text-align: center;
      position: relative;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-primary);
    }

    .close {
      position: absolute;
      right: 1rem;
      top: 1rem;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--text-secondary);
      transition: var(--transition);
    }

    .close:hover {
      color: var(--text-primary);
    }

    #modalTitle {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      color: var(--text-primary);
    }

    .google-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      background: white;
      border: none;
      padding: 0.75rem 1rem;
      width: 100%;
      border-radius: 12px;
      cursor: pointer;
      font-weight: 500;
      gap: 0.75rem;
      margin-top: 1rem;
      transition: var(--transition);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .google-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }

    .google-btn img {
      width: 20px;
      height: 20px;
    }

    .modal p {
      margin-top: 1rem;
      font-size: 0.8rem;
      color: var(--text-secondary);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .headerarea {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
      }

      .logo-container img {
        height: 40px;
      }

      .navlinks {
        gap: 1rem;
      }

      .main-content {
        padding: 0 1rem;
      }

      .welcome-section {
        padding: 2rem 0;
      }

      .welcome-section h4 {
        font-size: 1.5rem;
      }

      .fun-facts-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
      }

      .fun-facts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .fun-facts-header h3 {
        font-size: 1.5rem;
      }

      .gaming-stats {
        padding: 1.5rem;
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
      }

      .games_grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .footercontent {
        padding: 0 1rem;
      }

      .footer-sections {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
      }

      .footer-section {
        text-align: center;
        min-width: auto;
      }

      .privacyareacontent .links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
      }
    }

    @media (max-width: 480px) {
      .headerarea {
        padding: 0 0.5rem;
      }

      .logo-container img {
        height: 35px;
      }

      .login {
        flex-direction: column;
        gap: 0.5rem;
      }

      .signup {
        padding: 0.5rem 1rem;
      }

      .fun-facts-section {
        padding: 1.5rem 1rem;
      }

      .fun-fact-card {
        padding: 1rem;
      }

      .fun-fact-icon {
        font-size: 2rem;
      }

      .gaming-stats {
        padding: 1rem;
      }

      .stats-grid {
        grid-template-columns: 1fr;
      }

      .stat-number {
        font-size: 1.5rem;
      }

      .modal-content {
        margin: 20% auto;
        padding: 1.5rem;
      }
    }