* {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}
 :root {
     --bg-color: #0D0D0D;
     --text-color: #FFFFFF;
     --text-secondary: #999999;
     --card-bg: #1A1A1A;
     --header-bg: rgba(13, 13, 13, 0.95);
     --max-width: 1000px;
}
 body {
     font-family: 'Inter', sans-serif;
     line-height: 1.6;
     color: var(--text-color);
     background: var(--bg-color);
     display: flex;
     flex-direction: column;
     min-height: 100vh;
}
 a {
     text-decoration: none;
     color: var(--text-color);
     font-weight: 500;
     font-size: 0.9rem;
     letter-spacing: 1px;
}
 header {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     background: var(--header-bg);
     backdrop-filter: blur(10px);
     z-index: 1000;
     display: flex;
     flex-direction: column;
     align-items: center;
     padding: 1.5rem 0;
}
 .logo {
     font-size: 1.8rem;
     font-weight: bold;
     text-decoration: none;
     color: var(--text-color);
     margin-bottom: 1rem;
}
 .nav-links {
     display: flex;
     gap: 2rem;
}
 .nav-links a {
     text-decoration: none;
     color: var(--text-color);
     font-weight: 500;
     text-transform: uppercase;
     font-size: 0.9rem;
     letter-spacing: 1px;
}
 main {
     max-width: var(--max-width);
     width: 90%;
     margin: 140px auto 2rem;
     flex: 1;
}
 .games-section {
     margin-bottom: 4rem;
}
 .games-section h2 {
     font-size: 1.5rem;
     margin-bottom: 2rem;
     color: var(--text-color);
}
 .game-grid {
     display: grid;
     gap: 2rem;
     max-width: 100%;
}
 .pc-games .game-grid {
     grid-template-columns: repeat(2, 1fr);
}
 .mobile-games .game-grid {
     grid-template-columns: repeat(3, 1fr);
}
 @media (max-width: 768px) {
     .pc-games .game-grid, .mobile-games .game-grid {
         grid-template-columns: 1fr;
    }
}
 .game-card {
     background: var(--card-bg);
     border-radius: 10px;
     overflow: hidden;
     transition: transform 0.3s ease;
     text-decoration: none;
     display: block;
}
 .game-card:hover {
     transform: translateY(-5px);
}
 .game-card img {
     width: 100%;
     height: 200px;
     object-fit: cover;
}
 .game-card-content {
     padding: 1.5rem;
}
 .game-card h3 {
     color: var(--text-color);
     margin-bottom: 0.5rem;
}
 .game-card p {
     color: var(--text-secondary);
}
 .team-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
     margin-top: 2rem;
}
 .team-member {
     text-align: center;
     padding: 1.5rem;
     background: var(--card-bg);
     border-radius: 10px;
}
 .team-member img {
     width: 150px;
     height: 150px;
     border-radius: 50%;
     margin-bottom: 1rem;
     object-fit: cover;
}
 .team-member h3 {
     color: var(--text-color);
     margin-bottom: 0.5rem;
}
 .team-member p {
     color: var(--text-secondary);
}
 .job-posting {
     background: var(--card-bg);
     padding: 2rem;
     border-radius: 10px;
     margin-bottom: 2rem;
}
 .job-posting h2 {
     color: var(--text-color);
     margin-bottom: 1rem;
}
 .job-posting ul {
     list-style: none;
     margin-bottom: 1.5rem;
}
 .job-posting li {
     color: var(--text-secondary);
     margin-bottom: 0.5rem;
}
 footer {
     background: var(--bg-color);
     padding: 2rem 0;
     margin-top: 4rem;
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
}
 .footer-logo {
     margin-bottom: 0.5rem;
}
 .footer-logo img {
     height: 30px;
}
 .footer-copyright {
     color: var(--text-secondary);
     font-size: 0.9rem;
     margin-bottom: 0.5rem;
}
 .footer-links {
     display: flex;
     gap: 1.5rem;
}
 .footer-links a {
     color: var(--text-secondary);
     text-decoration: none;
     font-size: 0.9rem;
}
 .footer-links a:hover {
     color: var(--text-color);
}
 .social-links {
     display: flex;
     gap: 1.5rem;
}
 .social-links a {
     color: var(--text-secondary);
     text-decoration: none;
     font-size: 1.5rem;
     transition: color 0.3s ease, transform 0.3s ease;
}
 .social-links a:hover {
     color: var(--text-color);
     transform: translateY(-3px);
}
 .social-links .fa-instagram:hover {
     color: #E1306C;
}
 .social-links .fa-twitter:hover {
     color: #1DA1F2;
}
 .social-links .fa-discord:hover {
     color: #7289DA;
}
 .social-links .fa-linkedin:hover {
     color: #0077B5;
}
 .button {
     display: inline-block;
     padding: 0.8rem 1.5rem;
     color: var(--text-color);
     text-decoration: none;
     border-radius: 5px;
     transition: opacity 0.3s ease;
}
 .button:hover {
     opacity: 0.8;
}
 .game-container {
     max-width: var(--max-width);
     width: 90%;
     margin: 140px auto 2rem;
}
 .game-header {
     display: flex;
     gap: 2rem;
     align-items: flex-start;
     margin-bottom: 3rem;
     position: relative;
}
 .game-icon {
     width: 200px;
     height: 200px;
     border-radius: 10px;
     flex-shrink: 0;
}
 .game-info {
     flex: 1;
     min-width: 300px;
     padding-bottom: 2rem;
     border-bottom: 1px solid #333;
}
 .game-info h1 {
     font-size: 2.5rem;
     margin-bottom: 1rem;
     color: var(--text-color);
}
 .game-short-desc {
     color: var(--text-secondary);
     font-size: 1.2rem;
     margin-bottom: 2rem;
}
 .store-buttons {
     display: flex;
     gap: 1rem;
     align-items: center;
}
 .game-description {
     max-width: var(--max-width);
     width: 90%;
     margin: 0 auto;
     text-align: left;
}
 .game-full-desc {
     color: var(--text-secondary);
     line-height: 1.8;
     font-size: 1.1rem;
}
 .store-badge {
     height: 40px;
     transition: opacity 0.3s ease;
}
 .store-badge:hover {
     opacity: 0.8;
}
 .game-description {
     max-width: 800px;
     margin: 0 auto;
}
 .game-description h2 {
     margin-bottom: 1rem;
}
 .game-description p {
     color: var(--text-secondary);
     margin-bottom: 2rem;
}
 .game-screenshots {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 1rem;
     margin-top: 2rem;
     max-width: 100%;
}
 .game-screenshots img {
     width: 100%;
     height: auto;
     border-radius: 5px;
     object-fit: cover;
}
 @media (max-width: 768px) {
     header {
         padding: 1rem 0;
    }
     .logo {
         font-size: 1.5rem;
         margin-bottom: 0.5rem;
    }
     .nav-links {
         gap: 1rem;
    }
     .nav-links a {
         font-size: 0.8rem;
    }
     main {
         margin-top: 120px;
    }
     .game-container {
         margin-top: 100px;
    }
     .game-header {
         flex-direction: column;
         align-items: center;
         text-align: center;
         gap: 1.5rem;
    }
     .game-icon {
         width: 150px;
         height: 150px;
    }
     .store-buttons {
         justify-content: center;
    }
     .game-description {
         text-align: left;
    }
}
 ::-webkit-scrollbar {
     width: 10px;
}
 ::-webkit-scrollbar-track {
     background: var(--bg-color);
}
 ::-webkit-scrollbar-thumb {
     background: #333;
     border-radius: 5px;
     transition: background 0.3s ease;
}
 ::-webkit-scrollbar-thumb:hover {
     background: #444;
}
 * {
     scrollbar-width: thin;
     scrollbar-color: #333 var(--bg-color);
}
 
