* { margin:0; padding:0; box-sizing:border-box; }
    body { font-family:'Roboto', sans-serif; line-height:1.6; background:#fafafa; color:#222; scroll-behavior: smooth; }
    a { text-decoration:none; color: inherit; }
    img { max-width:100%; display:block; }

    /* Navbar */
    nav { background:#fff; display:flex; justify-content:space-between; align-items:center; padding:15px 30px; position:sticky; top:0; z-index:999; box-shadow:0 2px 12px rgba(0,0,0,0.08);}
    nav .logo img { height:50px; }
    nav .nav-links { display:flex; gap:25px; font-weight:500; }
    nav .nav-links a { color:#222; transition:0.3s; padding:8px 12px; border-radius:6px; }
    nav .nav-links a:hover { background:#f0a500;color:#fff; }
    .menu-toggle { display:none; font-size:28px; cursor:pointer; }

    @media(max-width: 768px){
      .menu-toggle { display:block; }
      nav .nav-links { display:none; position:absolute; top:65px; right:20px; flex-direction:column; background:#fff; border-radius:10px; box-shadow:0 10px 20px rgba(0,0,0,0.15); overflow:hidden; }
      nav .nav-links.active { display:flex; }
      nav .nav-links a { padding:15px 20px; border-bottom:1px solid #eee; }
      nav .nav-links a:last-child { border-bottom:none; }
    }

    /* Hero */
    .hero { display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; padding:120px 20px 60px; background:linear-gradient(135deg,#f0a500,#f25c05); color:#fff; position:relative;}
    .hero h1 { font-family:'Montserrat', sans-serif; font-size:3rem; margin-bottom:20px; }
    .hero p { font-size:1.2rem; margin-bottom:30px; max-width:700px; }
    .hero .btn { padding:15px 30px; background:#222; color:#fff; border:none; border-radius:8px; font-size:1.1rem; cursor:pointer; transition:0.3s; position:relative; z-index:2;}
    .hero .btn:hover { background:#444; }

    /* Floating CTA */
    .floating-cta { position:fixed; bottom:25px; right:25px; background:#f0a500; color:#fff; padding:15px 25px; border-radius:50px; font-weight:bold; cursor:pointer; box-shadow:0 8px 20px rgba(0,0,0,0.25); z-index:999; transition:0.3s; }
    .floating-cta:hover { background:#f25c05; }

    /* Sections */
    section { padding:80px 20px; max-width:1200px; margin:0 auto; position:relative; }
    section h2 { font-family:'Montserrat', sans-serif; font-size:2.5rem; margin-bottom:30px; text-align:center; color:#222; position:relative; }
    section h2::after { content:""; display:block; width:100px; height:4px; background:gold; margin:10px auto 0; border-radius:2px; }

    /* Gameplay */
    .game-info { display:flex; flex-wrap:wrap; gap:40px; justify-content:center; align-items:flex-start; margin-top:40px; }
    .game-info .text { flex:1 1 400px; }
    .game-info .gallery { flex:1 1 400px; display:grid; grid-template-columns:repeat(auto-fill,minmax(120px,1fr)); gap:15px; }

    .gameplay-item { overflow:hidden; border-radius:10px; position:relative; transform:translateY(50px); opacity:0; transition: all 0.7s ease; }
    .gameplay-item.visible { transform:translateY(0); opacity:1; }
    .gameplay-item img { width:100%; height:200px; object-fit:cover; transition: transform 0.5s ease; }
    .gameplay-item:hover img { transform:scale(1.1); }
    .gameplay-item figcaption { text-align:center; margin-top:8px; font-weight:500; }

    /* Universities */
    .universities { background:linear-gradient(135deg,#fff7e6,#fff0cc); border-radius:12px; padding:60px 20px; text-align:center; }
    .universities p { max-width:800px; margin:20px auto; font-size:1.1rem; }
    .universities .cards { display:flex; flex-wrap:wrap; gap:30px; justify-content:center; margin-top:40px; }
    .universities .card { background:#fff; border-radius:12px; padding:30px; box-shadow:0 12px 24px rgba(0,0,0,0.08); flex:1 1 300px; transition:transform 0.3s; transform:translateY(50px); opacity:0; }
    .universities .card.visible { transform:translateY(0); opacity:1; }
    .universities .card h3 { margin-bottom:15px; font-family:'Montserrat', sans-serif; color:#f25c05; }

    /* Merchandise */
    .merch-container { display:flex; flex-wrap:wrap; gap:25px; justify-content:center; margin-top:40px; }
    .merch-item { background:#fff; padding:20px; border-radius:12px; width:220px; box-shadow:0 10px 15px rgba(0,0,0,0.05); text-align:center; transition:transform 0.3s; transform:translateY(50px); opacity:0; }
    .merch-item.visible { transform:translateY(0); opacity:1; }
    .merch-item img { width:100%; height:220px; object-fit:cover; border-radius:8px; margin-bottom:10px; }
    .merch-item p { margin:5px 0; }
    .buy-btn { padding:10px 20px; background:#f0a500; color:#fff; border:none; border-radius:6px; cursor:pointer; transition:0.3s; }
    .buy-btn:hover { background:#f25c05; }

    /* KPI Counters */
    .kpi { display:flex; flex-wrap:wrap; justify-content:center; gap:40px; margin-top:40px; }
    .kpi div { text-align:center; background:#fff; padding:30px 20px; border-radius:12px; box-shadow:0 10px 20px rgba(0,0,0,0.08); flex:1 1 150px; }
    .kpi div h3 { font-size:2.5rem; color:#f25c05; }
    .kpi div p { font-weight:500; margin-top:5px; }

    /* Footer */
    footer { background:#222; color:#fff; text-align:center; padding:40px 20px; font-size:14px; }
    footer a { color:#f0a500; }
    footer a:hover { text-decoration:underline; }
    
    /* Fullscreen Image Modal */
.image-modal {
  display: none;
  position: fixed;
  z-index: 5000;
  padding: 40px 20px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  animation: fadeInModal 0.3s ease;
}

.image-modal img {
  max-width: 95%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: zoomIn 0.3s ease;
}

.image-modal .close-btn {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.image-modal .close-btn:hover {
  color: #f0a500;
}

@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.8); }
  to { transform: scale(1); }
}
/* ===== Game Page Styling ===== */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background-color: #ffffff;
  padding: 20px 0;
  text-align: center;
  border-bottom: 2px solid #e0e0e0;
}

.container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 8px;
  flex: 1;
}

h1, h2, p {
  text-align: center;
}

iframe {
  border-radius: 8px;
  margin-bottom: 20px;
}

footer {
  background: #333333;
  color: #ffffff;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
}

footer a {
  color: #ff9800;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

/* Logo Text Colors */
.pata {
  color: black;
}

.word {
  color: red;
}

.search {
  color: #00ff00;
}