
    :root {
      --primary: #2563eb;
      --primary-dark: #1d4ed8;
      --secondary: #8b5cf6;
      --accent: #0ea5e9;
      --dark: #0f172a;
      --light: #f8fafc;
      --gray: #64748b;
      --light-gray: #e2e8f0;
      --success: #10b981;
      --warning: #f59e0b;
      --danger: #ef4444;
      --card-bg: #ffffff;
      --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
      --transition: all 0.3s ease;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: linear-gradient(135deg, #f0f4f8, #e2e8f0);
      color: var(--dark);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* Header Styles */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 30px;
      background-color: white;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .logo-container {
      display: flex;
      align-items: center;
    }

    .logo-image {
      height: 40px;
      margin-right: 15px;
      border-radius: 5px;
    }

    .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .logo-text {
      font-size: 20px;
      font-weight: bold;
    }

    .nav-links {
      display: flex;
      list-style: none;
    }

    .nav-links li {
      margin-left: 25px;
    }

    .nav-links a {
      color: #333;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: #00CFFF;
      transition: width 0.3s;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-links a:hover {
      color: #00CFFF;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background-color: #333;
      margin: 3px 0;
      transition: 0.3s;
    }

    /* Hero Section */
    .hero {
      padding: 8rem 0 5rem;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><rect width="200" height="200" fill="%232563eb" opacity="0.05"/><path d="M20,20 L180,180 M20,180 L180,20" stroke="%232563eb" stroke-width="0.5" stroke-opacity="0.1"/></svg>');
      background-size: cover;
      position: relative;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 700px;
      text-align: center;
      margin: 0 auto;
    }

    .hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      font-family: 'Space Grotesk', sans-serif;
      background: linear-gradient(to right, var(--primary), var(--accent));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    /* Game Lounge Section */
    .games-section {
      padding: 5rem 0;
    }

    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 4rem;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 1rem;
      font-family: 'Space Grotesk', sans-serif;
    }

    .games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
    }

    .game-card {
      background: var(--card-bg);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }

    .game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    }

    .app-icon {
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #ffffff;
      padding: 20px;
    }

    .app-icon img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      border-radius: 8px;
    }

    .game-content {
      padding: 1.5rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .game-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }

    .game-description {
      color: var(--gray);
      margin-bottom: 1rem;
      font-size: 0.95rem;
      flex-grow: 1;
    }

    /* META INFO STYLES */
    .game-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      margin-bottom: 15px;
      border-top: 1px solid var(--light-gray);
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--gray);
    }

    .game-meta span i {
      color: var(--primary);
      margin-right: 5px;
    }

    .game-actions {
      display: flex;
      gap: 0.5rem;
    }

    .game-btn, .download-btn {
      padding: 0.75rem 1rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .game-btn {
      background: var(--primary);
      color: white;
      flex: 2;
    }

    .download-btn {
      background: var(--success);
      color: white;
      flex: 1;
    }

    .game-btn:hover, .download-btn:hover {
      filter: brightness(0.9);
      transform: translateY(-2px);
    }

    /* Footer Styles */
    footer {
      background-color: #1f2937;
      color: white;
      padding: 60px 0 20px;
      position: relative;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, #667eea 0%, #00CFFF 100%);
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-section h3 {
      color: #00CFFF;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links a {
      color: #ccc;
      text-decoration: none;
      transition: 0.3s;
    }

    .footer-links a:hover {
      color: #00CFFF;
      padding-left: 5px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    @media (max-width: 768px) {
      .hamburger { display: flex; }
      .nav-links {
        display: none;
        position: absolute;
        top: 60px; left: 0; width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
      }
      .nav-links.active { display: flex; }
      .nav-links li { margin: 10px 0; text-align: center; }
      .hero h1 { font-size: 2.5rem; }
    }
