* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: #0b0b0e;
    color: #e1e1e6;
    overflow-x: hidden;
}

.navbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 18px 60px;
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2500; 
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 42px;
    width: auto;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    position: relative;
    margin: 0 auto;
    background: transparent;
    padding: 4px;
}

.nav-pill-bg {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
}

.nav-links a {
    text-decoration: none;
    color: #a1a1aa;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 10px 18px;
    position: relative;
    z-index: 2;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
}

.nav-links a::after {
    display: none;
}

.nav-links a:hover, .nav-links a.active {
    color: #ffffff;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    justify-self: end;
}

.lang-btn {
    background: none;
    border: none;
    color: #71717a;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: color 0.3s;
}

.lang-btn.active {
    color: #ffffff;
}

.lang-switcher span {
    color: #444;
    font-size: 13px;
}

.hero {
    height: 100vh;
    background: radial-gradient(circle at center, rgba(25,25,35,0.6) 0%, rgba(11,11,14,1) 100%), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?q=80&w=1920&auto=format&fit=crop') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding: 0 80px;
}

.hero-content {
    max-width: 750px;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #fff;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #fff;
}

.hero-content p {
    font-size: 18px;
    color: #a1a1aa;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #ffffff;
    color: #0b0b0e;
}

.btn-primary:hover {
    background-color: #e4e4e7;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.games-section {
    min-height: 100vh;
    padding: 140px 80px 100px 80px;
    background: #09090c;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0;
    padding-left: 20px;
}

.section-header {
    margin-bottom: 40px;
    text-align: left;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: -0.5px;
}

.section-header p {
    color: #71717a;
    font-size: 15px;
    max-width: 600px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 380px));
    gap: 30px;
    justify-content: start;
}

.game-card {
    background: #121216;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 229, 255, 0.1);
}

.game-card-image {
    height: 180px;
    background: #070709;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.game-card-image img {
    height: 110px;
    width: auto;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.game-card:hover .game-card-image img {
    transform: scale(1.08);
}

.game-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.game-card-content {
    padding: 24px;
}

.game-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.game-card-content p {
    color: #a1a1aa;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.game-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.platform-tags {
    color: #71717a;
    font-size: 16px;
    display: flex;
    gap: 10px;
}

.explore-btn {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.game-card:hover .explore-btn {
    color: #00e5ff;
}

.game-detail-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0b0b0e;
    z-index: 2000; 
    overflow-y: auto; 
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px); 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 100px 80px 80px 80px;
}

.game-detail-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.game-detail-container {
    max-width: 1100px;
    margin: 0 auto;
}

.back-to-games-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e1e1e6;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 35px;
    transition: all 0.3s;
}

.back-to-games-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateX(-3px);
}

.game-detail-hero {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(18, 18, 24, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 35px;
}

.game-detail-logo-wrap {
    background: #070709;
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.12);
}

.game-detail-logo {
    height: 150px;
    width: 150px;
    object-fit: contain;
    border-radius: 12px;
}

.game-studio-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #00e5ff;
    margin-bottom: 8px;
}

.game-detail-titles h1 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.game-tagline {
    font-size: 16px;
    color: #a1a1aa;
}

.game-detail-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 30px;
}

.game-info-column {
    background: rgba(18, 18, 24, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 35px;
}

.game-info-column h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.game-info-column > p {
    color: #a1a1aa;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.game-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 20px;
    color: #00e5ff;
    background: rgba(0, 229, 255, 0.1);
    padding: 12px;
    border-radius: 10px;
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 13px;
    color: #71717a;
    line-height: 1.5;
}

.game-download-column {
    display: flex;
    flex-direction: column;
}

.download-box {
    background: #121216;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px;
    flex-grow: 1;
}

.download-box-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.download-box-header i {
    font-size: 28px;
    color: #34d399;
}

.download-box-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.download-box-header p {
    font-size: 13px;
    color: #71717a;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.download-platform-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-platform-btn > i:first-child {
    font-size: 24px;
    color: #a1a1aa;
}

.download-platform-btn .btn-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.download-platform-btn .platform-name {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}

.download-platform-btn .file-info {
    font-size: 12px;
    color: #71717a;
}

.download-icon-right {
    font-size: 14px;
    color: #71717a;
    transition: transform 0.3s;
}

.download-platform-btn:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.download-platform-btn:hover .download-icon-right {
    transform: translateY(2px);
    color: #fff;
}

.windows-btn:hover > i:first-child {
    color: #00bcf2;
}

.android-btn:hover > i:first-child {
    color: #3ddc84;
}

.system-reqs-note {
    font-size: 12px;
    color: #71717a;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.02);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.about-section {
    min-height: 100vh;
    padding: 140px 80px 100px 80px;
    background: #0b0b0e;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.about-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 30px;
}

.dev-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #34d399;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.about-header .subtitle {
    color: #71717a;
    font-size: 16px;
    font-weight: 500;
}

.about-manifesto {
    background: rgba(255, 255, 255, 0.015);
    border-left: 3px solid #ffffff;
    padding: 25px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 25px;
}

.about-manifesto p {
    font-size: 16px;
    line-height: 1.7;
    color: #d4d4d8;
    font-weight: 300;
}

.editorial-single-card {
    background: #121216;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
}

.card-icon {
    font-size: 24px;
    color: #a1a1aa;
    margin-bottom: 15px;
}

.editorial-single-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.card-desc {
    font-size: 14px;
    color: #71717a;
    line-height: 1.6;
    margin-bottom: 20px;
}

.stack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stack-tags span {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    color: #e4e4e7;
    font-weight: 500;
}

.focus-banner {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 30px;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #a1a1aa;
}

.focus-title {
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer {
    background: #070709;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 80px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    height: 24px;
    width: auto;
}

.footer-brand {
    font-weight: 700;
    font-size: 15px;
    color: #fff;
}

.footer-divider {
    color: #3f3f46;
}

.footer-copy {
    font-size: 13px;
    color: #71717a;
}

.footer-right {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #a1a1aa;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}