
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }

  body {
    background-color: white;
    color: #111;
    line-height: 1.6;
  }

  .container {
    max-width: 1200px;
    min-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .navbar {
    height: 5rem;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    position: sticky;
    top: 0;
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 50;
  }

  .navbar-brand {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #111;
    text-decoration: none;
  }

  .navbar-links {
    display: flex;
    gap: 2rem;
  }

  .navbar-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #111;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .navbar-links a:hover {
    color: #555;
  }

  .hero-section {
    padding: 10rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: 
      linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(245, 245, 245, 0.8)),
      url('/images/pubg3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: lighten;
  }

  .hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding: 0 2rem;
  }

  .hero-title {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 2rem;
  }

  .hero-description {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
  }

  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    height: 3rem;
    padding: 0 1.5rem;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
  }

  .button i {
    margin-right: 4px;
  }

  .button-primary {
    background-color: #111;
    color: white;
    border: none;
  }

  .button-primary:hover {
    background-color: #333;
  }

  .button-outline {
    background-color: transparent;
    border: 1px solid #111;
    color: #111;
  }

  .button-outline:hover {
    background-color: #f5f5f5;
  }

  .buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
  }

  .section {
    padding: 8rem 0;
    position: relative;
  }

  .section-white {
    background-color: #fff;
  }

  .section-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  }

  .section-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 4rem;
    text-align: center;
  }

  .games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
  }

  .game-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #eaeaea;
  }

  .game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .game-card-content {
    padding: 2rem;
  }

  .game-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .game-card-description {
    font-size: 1rem;
    color: #555;
  }

  .server-list {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .server-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border: 1px solid #eaeaea;
    margin-bottom: 1rem;
    transition: background-color 0.2s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    text-decoration: none;
  }
  
  .server-item:hover {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
  }
  
  .server-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-grow: 1;
  }
  
  .server-icon {
    font-size: 1.75rem;
    color: #333;
    flex-shrink: 0;
  }
  
  .server-details {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
  }
  
  .server-name {
    font-weight: 600;
    font-size: 1.25rem;
    margin-right: 1rem;
  }
  
  .server-meta {
    font-size: 0.95rem;
    color: #555;
  }
  
  .server-status {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
  }
  
  .status-indicator {
    width: 0.75rem;
    height: 0.75rem;
    margin-right: 0.5rem;
    border-radius: 50%;
  }
  
  .status-online {
    background-color: #10b981;
  }
  
  .status-offline {
    background-color: #ef4444;
  }
  

  .events-list {
    max-width: 900px;
    margin: 0 auto;
  }

  .event-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    margin-bottom: 2.5rem;
    border: 1px solid #eaeaea;
  }

  .event-date {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .event-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .event-description {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }

  .footer {
    padding: 4rem 0;
    text-align: center;
    font-size: 0.875rem;
    color: #555;
    border-top: 1px solid #eaeaea;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  }

  .social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .social-icon {
    color: #333;
    transition: color 0.2s ease;
    font-size: 1.25rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .social-icon:hover {
    color: #111;
  }

  .about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border: 1px solid #eaeaea;
  }

  .about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .about-content p:last-child {
    margin-bottom: 0;
  }

  .spacer {
    height: 6rem;
  }