/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body */
  body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(315deg, #7cfc00 0%, #0bda51 74%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  /* Header */

  
  .site-header {
    background: white;
    color: #006400;
    padding: 10px 20px;
  }
  
  .header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .site-title h1 {
    font-size: 22px;
    color: #006400;
  }
  
  .site-title small {
    font-size: 13px;
    color: #228B22;
  }
  
  .menu-toggle {
    font-size: 28px;
    background: none;
    border: none;
    color: #006400;
    cursor: pointer;
    display: none;
  }
  
  .nav-menu {
    margin-top: 10px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .nav-menu a {
    color: #006400;
    text-decoration: none;
    font-size: 16px;
  }
  
  .nav-menu a:hover {
    text-decoration: underline;
  }
  
  /* Main Container */
  .container {
    flex: 1;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Intro Text */
  .intro-text {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .intro-text h2 {
    font-size: 28px;
    color: #006400;
    margin-bottom: 10px;
  }
  
  .intro-text p {
    font-size: 18px;
    color: #333;
  }
  
  /* Blog Grid on Home */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .blog-card {
    background: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  }
  
  .blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  
  .blog-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #006400;
  }
  
  .read-more {
    display: inline-block;
    padding: 8px 16px;
    background: #00C851;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    margin-top: 10px;
    transition: background 0.3s;
  }
  
  .read-more:hover {
    background: #029a36;
  }
  
  /* Blog List Buttons (if used) */
  .blog-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .blog-link {
    display: inline-block;
    padding: 12px 20px;
    background: #00b140;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s;
  }
  
  .blog-link:hover {
    background: #029a36;
  }
  
  /* Game Cards */
  .game-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
  }
  
  .game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  }
  
  .game-header {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .rank-badge {
    background: gold;
    color: black;
    padding: 5px 10px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 16px;
  }
  
  .game-header h2 {
    font-size: 22px;
  }
  
  .game-info p {
    margin: 10px 0;
    font-size: 16px;
    color: #333;
  }
  
  .download-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #2EB700, #00C851);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .download-btn:hover {
    background: #029a36;
    transform: scale(1.05);
  }
  
  /* Expandable Bars */
  .game-details {
    margin-top: 15px;
    display: none;
    animation: fadeIn 0.5s ease forwards;
  }
  
  .bar-label {
    display: flex;
    justify-content: space-between;
    margin: 8px 0 4px;
    font-size: 14px;
    color: #333;
  }
  
  .bar {
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
    height: 12px;
  }
  
  .bar-fill {
    background: linear-gradient(90deg, #00c851, #7cfc00);
    height: 100%;
    width: 0;
    transition: width 0.6s ease;
  }
  
  /* Footer */
  .site-footer {
    background: white;
    padding: 20px;
    color: #006400;
    text-align: center;
    margin-top: 20px;
  }
  
  .footer-menu {
    margin-bottom: 10px;
  }
  
  .footer-menu a {
    color: #228B22;
    margin: 0 8px;
    text-decoration: none;
  }
  
  .footer-menu a:hover {
    text-decoration: underline;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  /* Responsive */
  @media(max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    .nav-menu {
      display: none;
      flex-direction: column;
      gap: 10px;
      margin-top: 10px;
    }
  
    .nav-menu.active {
      display: flex;
    }
  
    .site-title h1 {
      font-size: 18px;
    }
  
    .intro-text h2 {
      font-size: 22px;
    }
  
    .blog-link {
      font-size: 16px;
    }
  
    .game-header h2 {
      font-size: 18px;
    }
  }
  /* More Blogs Section */
.more-blogs {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #c0ffc0;
    background: #f9fff9;
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  }
  
  .more-blogs h3 {
    font-size: 22px;
    color: #006400;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .more-blogs ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  
  .more-blogs li {
    width: 100%;
    max-width: 400px;
    background: #e0ffe0;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    transition: background 0.3s, transform 0.3s;
  }
  
  .more-blogs li:hover {
    background: #c0ffc0;
    transform: translateY(-3px);
  }
  
  .more-blogs a {
    color: #0000CD;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
  }
  
  .more-blogs a:hover {
    text-decoration: underline;
  }
  /* Discover Section (above blog cards) */
.discover-section {
    text-align: center;
    margin: 30px 0 20px;
  }
  
  .discover-section h3 {
    font-size: 22px;
    color: #006400;
  }
  .intro-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    text-align: center;
  }
  
  .intro-card h2, .intro-card h3 {
    color: #006400;
    margin-bottom: 10px;
  }
  
  .intro-card p {
    font-size: 16px;
    color: #444;
  }
    
  .site-title h1 {
    font-size: 26px;
  }
  
  @media(max-width: 768px) {
    .site-title h1 {
      font-size: 25px;
    }
  }
  
  .download-btn {
    min-height: 48px;
  }
  /* Keyword Section Cards */
.intro-keywords,
#login,
#register {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.intro-keywords h2,
#login h2,
#register h2 {
  margin-top: 0;
  color: #2EB700;
}
/* Matching Diuwin card style for keyword sections */
.intro-keywords,
#login,
#register {
  background: white;
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  margin-bottom: 1.8rem;
  font-size: 1rem;
  line-height: 1.6;
}

.intro-keywords h2,
#login h2,
#register h2 {
  margin-top: 0;
  font-size: 1.25rem;
  font-weight: bold;
  color: #1b8e3c; /* Matches your theme green */
}

  