    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    html, body {
      height: 100%;
      margin: 0;
      background-color: #ffffff;
      line-height: 1.6;
    }

    /* Main layout structure */
    body {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    /* Navbar Container */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: #ffffff;
      backdrop-filter: blur(10px);
      z-index: 1000;
      transition: all 0.3s ease;
    }
    .nav-container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 2rem;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* Circular "SE" Logo */
    .logo-container {
      width: 48px;
      height: 48px;
      background-color: #4CAF50;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      transition: transform 0.3s ease;
    }
    .logo-container:hover {
      transform: scale(1.1);
    }
    .logo-text {
      font-size: 1.2rem;
      font-weight: 700;
      color: #ffffff;
      letter-spacing: 1px;
    }

    /* Menu Links */
    .nav-menu {
      display: flex;
      list-style: none;
      gap: 2.5rem;
    }
    .nav-link {
      position: relative;
      text-decoration: none;
      color: black;
      font-size: 1rem;
      font-weight: 500;
      padding: 0.75rem 0;
      transition: color 0.3s ease;
      display: flex;
      align-items: center;
    }
    .material-symbols-outlined {
        margin-right: 0.5rem;
    }
    .nav-link:hover {
      color: #4CAF50;
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 3px;
      background: #4CAF50;
      border-radius: 3px;
      transition: width 0.3s ease;
    }
    .nav-link:hover::after {
      width: 100%;
    }

    /* Buttons & Language Selector */
    .nav-buttons {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .btn {
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .btn-signup {
      background: #4CAF50;
      color: #ffffff;
      border: none;
    }
    .btn-signup:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    }
    .btn-login {
      background: transparent;
      color: black;
      display: inline-block;
      align-items: center;
      justify-content: center;
      padding: 0.625rem;
      font-size: 1.5rem;
    }
    .btn-login:hover {
      color: #4CAF50;
    }

    /* Language Selector */
    .language-selector {
      position: relative;
      display: inline-block;
    }
    .lang-btn {
      background: transparent;
      border: none;
      cursor: pointer;
      font-size: 1.5rem;
      color: #000000;
      padding: 0.625rem;
      border-radius: 8px;
      transition: all 0.3s ease;
    }
    .lang-btn:hover {
      color: #4CAF50;
    }
    .lang-menu {
      position: absolute;
      top: 100%;
      right: 0;
      margin-top: 0.5rem;
      background: #ffffff;
      border-radius: 8px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      list-style: none;
      overflow: hidden;
      display: none;
      white-space: nowrap;
      z-index: 1000;
      min-width: 120px;
    }
    .language-selector.open .lang-menu {
      display: block;
    }
    .lang-menu li {
      padding: 0.75rem 1rem;
      cursor: pointer;
      font-size: 0.875rem;
      color: black;
      transition: all 0.2s ease;
      text-decoration: none;
    }
    .lang-menu li a {
      text-decoration: none;
      color: inherit;
    }
    .lang-menu li a:hover {
      color: lightgreen;
    }

    /* Hide mobile-buttons by default */
    .nav-buttons-mobile {
      display: none;
    }

    /* Hamburger (mobile) */
    .hamburger {
      display: none;
      cursor: pointer;
      background: none;
      border: none;
      flex-direction: column;
      gap: 5px;
      padding: 0.625rem;
    }
    .hamburger span {
      width: 25px;
      height: 3px;
      background: black;
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    /* Mobile Styles */
    @media (max-width: 992px) {
      .nav-container {
        padding: 0 1.5rem;
      }
      
      .hamburger {
        display: flex;
      }

      .nav-menu {
        position: fixed;
        top: -100vh;
        left: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: #ffffff;
        transition: top 0.3s ease;
        padding: 2.5rem 1.5rem;
        gap: 0;
      }
      .nav-menu.active {
        top: 0;
      }
      .nav-menu .nav-link {
        font-size: 1.25rem;
        margin: 0.5rem 0;
        padding: 1rem 0;
      }
      .nav-divider {
        width: 100%;
        height: 1px;
        background:#eeeeee;
        margin: 1rem 0;
      }

      /* Show mobile-buttons and hide desktop-buttons */
      .nav-buttons-mobile {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 0;
      }
      .nav-buttons {
        display: none;
      }

      /* Animate hamburger to X */
      .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
      }
      .hamburger.active span:nth-child(2) {
        opacity: 0;
      }
      .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
      }
    }

    @media (max-width: 768px) {
      .nav-container {
        padding: 0 1rem;
        height: 70px;
      }
      .logo-container {
        width: 40px;
        height: 40px;
      }
      .logo-text {
        font-size: 1rem;
      }
    }

    /* Main Content Styles */
    .content {
      flex: 1;
      padding-top: 80px; /* Account for fixed navbar */
      min-height: calc(100vh - 80px);
      display: flex;
      flex-direction: column;
    }

    .talent-game-intro {
      flex: 1;
      max-width: 1200px;
      margin: 0 auto;
      padding: 4rem 2rem 2rem;
    }

    .game-title {
      font-size: 3rem;
      font-weight: 700;
      color: #1E3A8A;
      text-align: center;
      margin-bottom: 2rem;
      text-shadow: 0 2px 4px rgba(30, 58, 138, 0.1);
    }

    .game-description {
      font-size: 1.1rem;
      color: #555;
      text-align: center;
      margin-bottom: 3rem;
      line-height: 1.8;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .games-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(2, 1fr);
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .game-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-decoration: none;
      color: inherit;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding: 1.5rem;
      border-radius: 12px;
      background: #ffffff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .game-image {
      width: 120px;
      height: 120px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      transition: transform 0.3s ease;
      overflow: hidden;
      position: relative;
    }

    .game-item:hover .game-image {
      transform: scale(1.05);
    }

    .game-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
    }

    .game-image-placeholder {
      font-size: 3rem;
      color: white;
      opacity: 0.8;
      background: linear-gradient(135deg, #4CAF50, #45a049);
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
    }

    .game-name {
      font-size: 1.1rem;
      font-weight: 600;
      color: #000000;
      text-align: center;
      margin-top: 0.5rem;
    }

    /* Bottom row adjustment */
    .game-item:nth-child(5) {
      grid-column: 1 / 2;
      grid-row: 2 / 3;
    }

    .game-item:nth-child(6) {
      grid-column: 2 / 3;
      grid-row: 2 / 3;
    }

    .game-item:nth-child(7) {
      grid-column: 3 / 4;
      grid-row: 2 / 3;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .content {
        padding-top: 70px;
      }
      
      .talent-game-intro {
        padding: 3rem 1.5rem 2rem;
      }
      
      .game-title {
        font-size: 2.5rem;
      }
      
      .games-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 1.5rem;
      }
      
      .game-item:nth-child(5) {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
      }

      .game-item:nth-child(6) {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
      }

      .game-item:nth-child(7) {
        grid-column: 1 / 3;
        grid-row: 4 / 5;
      }
    }

    @media (max-width: 768px) {
      .talent-game-intro {
        padding: 2rem 1rem;
      }
      
      .game-title {
        font-size: 2rem;
      }
      
      .game-description {
        font-size: 1rem;
      }
      
      .games-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(7, 1fr);
      }
      
      .game-item:nth-child(5),
      .game-item:nth-child(6),
      .game-item:nth-child(7) {
        grid-column: 1 / 2;
      }
      
      .game-item:nth-child(5) {
        grid-row: 5 / 6;
      }

      .game-item:nth-child(6) {
        grid-row: 6 / 7;
      }

      .game-item:nth-child(7) {
        grid-row: 7 / 8;
      }
      
      .game-image {
        width: 100px;
        height: 100px;
      }
      
      .game-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
      }
    }

   .feedback-section {
      flex: 1;
      max-width: 1200px;
      margin: 0 auto;
      padding: 4rem 2rem 2rem;
    }
    .feedback-title {
      font-size: 3rem;
      font-weight: 700;
      color: #4CAF50;
      text-align: center;
      margin-bottom: 2rem;
    }
    .feedback-description {
      font-size: 1.1rem;
      color: #555;
      text-align: center;
      margin-bottom: 3rem;
      line-height: 1.8;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    .feedback-form {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 3rem;
      }
    .form-group {
      width: 100%;
      margin-bottom: 1.5rem;
    }

    .feedback-form label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 500;
      color: #333;
    }

    .feedback-form input,
    .feedback-form textarea {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .feedback-form input:focus,
    .feedback-form textarea:focus {
      outline: none;
      border-color: #4CAF50;
      box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
    }

    .btn-submit {
      background: #ffffff;
      color: #4CAF50;
      border: none;
      padding: 0.75rem 2rem;
      border-radius: 50px;
      border: 2px solid #4CAF50;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-submit:hover {
      background-color: #4CAF50;
      color: #ffffff;
    }

    @media (max-width: 992px) {
      .feedback-section {
        padding: 3rem 1.5rem 2rem;
      }
      .feedback-title {
        font-size: 2.5rem;
      }      
      .feedback-form {
        padding: 2rem;
        }
    }
    @media (max-width: 768px) {
      .feedback-section {
        padding: 2rem 1rem;
      }
      .feedback-title {
        font-size: 2rem;
      }
      .feedback-description {
        font-size: 1rem;
      }
      .feedback-form {
        padding: 1.5rem;
        }
    }

    /* Footer Styles */
    footer {
        background: linear-gradient(to bottom, #ffffff, #34C759);
        padding: 1.5rem 2.5rem;
        color: #FFFFFF;
        position: relative;
        margin-top: auto;
    }
    .footer-container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-columns-wrapper {
        display: flex;
        flex: 1;
        gap: 2.5rem;
    }
    .footer-column h4 {
        color: #A9A9A9;
        font-size: 0.75rem;
        text-transform: uppercase;
        margin-bottom: 0.75rem;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        letter-spacing: 0.5px;
    }
    .footer-column ul {
        list-style: none;
        padding: 0;
    }
    .footer-column li {
        margin-bottom: 0.625rem;
    }
    .footer-column a {
        color: black;
        text-decoration: none;
        font-size: 0.875rem;
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        transition: color 0.3s ease;
    }
    .footer-column a:hover {
        color: #ffffff;
    }
    .footer-copyright {
        color: #FFFFFF;
        font-size: 0.875rem;
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        display: flex;
        align-items: center;
        gap: 0.25rem;
        margin-top: 1rem;
    }
    .copyright-icon {
        font-size: 1rem;
    }
    
    @media (max-width: 768px) {
        footer {
            padding: 1.5rem 1rem;
        }
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-columns-wrapper {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-copyright {
            margin-top: 0;
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
        footer {
            padding: 1.25rem 0.75rem;
        }
        .footer-columns-wrapper {
            gap: 1.25rem;
        }
    }
