/* --- GLOBAL STYLES --- */
:root {
    --red: #ff3131;
    --dark: #000000;
    --card-bg: rgba(25, 25, 25, 0.85);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark);
    color: white;
    font-family: 'Inter', -apple-system, sans-serif;
    overflow-x: hidden;
}

/* --- NAVBAR --- */
.navbar {
    width: 100%;
    background: rgba(0,0,0,0.95);
    position: fixed;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    width: 95%;
    max-width: 1800px;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { display: flex; align-items: center; font-weight: 800; }

.nav-logo-img {
    height: 100px; /* Adjusted to fit bar */
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.nav-links a {
    color: white; text-decoration: none; font-size: 13px; font-weight: 700;
    margin: 0 15px; opacity: 0.7; transition: 0.3s;
}

.nav-links a.active { opacity: 1; border-bottom: 2px solid var(--red); padding-bottom: 5px; }

.btn-red-nav {
    background: var(--red); color: white; border: none; padding: 10px 22px;
    font-weight: 800; border-radius: 5px; cursor: pointer;
}

/* --- HERO SECTION & VIDEO --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center; 
    justify-content: flex-start; /* Aligns content to left */
    background: #000;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to right, rgba(0,0,0,0.9) 10%, rgba(0,0,0,0) 50%),
        linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(0,0,0,1) 100%);
    z-index: 2;
}

.hero-wrapper {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    position: relative;
    z-index: 10;
    padding: 0 100px; /* Distance from left screen edge */
}

/* --- HERO CONTENT --- */
.hero-content {
    max-width: 800px;
    text-align: left;
}

.label-badge { 
    background: var(--red); 
    padding: 5px 12px; 
    font-size: 11px; 
    font-weight: 900; 
    border-radius: 3px; 
    display: inline-block; 
    margin-bottom: 25px;
}

.main-title { 
    font-size: 96px; 
    font-weight: 900; 
    line-height: 0.85; /* Tight stacking for <br> */
    letter-spacing: -4px; 
    margin-bottom: 15px;
}

.sub-title { 
    color: var(--red); 
    font-size: 26px; 
    font-weight: 700; 
    margin-bottom: 20px; 
}

.desc-text { 
    color: #bbb; 
    font-size: 18px; 
    line-height: 1.5; 
    max-width: 480px; 
    margin-bottom: 40px; 
}

.hero-actions { display: flex; gap: 15px; }

.btn-white { 
    background: white; color: black; border: none; 
    padding: 16px 38px; font-weight: 800; border-radius: 4px; 
    cursor: pointer; font-size: 15px;
}

.btn-outline { 
    background: transparent; color: white; border: 1px solid white; 
    padding: 16px 38px; font-weight: 800; border-radius: 4px; 
    cursor: pointer; font-size: 15px;
}

/* --- SIDE ARROWS --- */
.side-arrow {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.4;
    transition: 0.3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}
.left-arrow { left: 30px; }
.right-arrow { right: 30px; }
.side-arrow:hover { opacity: 1; }

/* --- HERO QUEUE --- */
.queue-container {
    position: absolute;
    bottom: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 100;
}

.queue-wrapper { display: flex; gap: 20px; }

.queue-item {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
    position: relative;
    min-width: 260px;
    transition: 0.4s ease;
}

.queue-item.active {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
}

.queue-info { display: flex; flex-direction: column; }
.queue-label { font-size: 10px; color: #888; font-weight: 800; text-transform: uppercase; }
.queue-title { font-size: 14px; font-weight: 900; margin-top: 2px; color: white; }

.queue-progress-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--red);
    width: 0%;
    border-radius: 0 0 12px 12px;
}

.queue-item.active .queue-progress-line {
    animation: fillQueue 6s linear forwards;
}

@keyframes fillQueue {
    from { width: 0%; }
    to { width: 100%; }
}

/* --- OUR GAMES POSTER GRID --- */
.games-section {
    padding: 80px 5%;
    background-color: #000;
}

.games-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.header-text h2 { font-size: 48px; font-weight: 900; }
.header-text p { color: #888; font-size: 18px; }

.view-all-btn {
    color: var(--red);
    text-decoration: none;
    font-weight: 700;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* adjustable columns */
    gap: 40px;
}

.game-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(50px);
    transition: transform 0.4s ease, opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.game-card.appear {
    opacity: 1;
    transform: translateY(0);
}

.game-card:hover { 
    transform: translateY(-15px); 
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3; /* Fixed to vertical poster shape */
}

.game-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-thumb {
    opacity: 1;
}

.badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--red);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 900;
    border-radius: 4px;
    z-index: 2;
}

/* --- PLATFORM ICON TAGS --- */
.platform-container {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column; 
    gap: 8px;
    z-index: 2;
}

.platform-container i {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: 0.3s ease;
}

.platform-container i:hover {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.1);
}

.card-info { 
    padding: 25px 20px; 
    border-top: 1px solid rgba(255,255,255,0.05);
}

.card-info h3 { font-size: 24px; margin-bottom: 8px; }
.card-info p { color: #999; font-size: 15px; line-height: 1.4; }

.about-studio {
    background-color: #0a0a0a;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 40px 40px; /* Adjust for the "plus/dot" spacing */
    padding: 100px 5%;
    color: white;
}

.about-studio {
    background-color: #080808;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 32px 32px;
    padding: 120px 8%;
    color: white;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.profile-card {
    flex: 1;
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    position: relative;
}

.profile-img-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
}

.profile-main-img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50%;
    border: 6px solid #1a1a1a;
    background: #000000;
    object-fit: contain;
    display: block;
}


.profile-name {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1px;
}

.profile-sub {
    color: #ff3131;
    font-size: 11px;
    font-weight: 800;
    margin-top: 5px;
}

.studio-content {
    flex: 2;
}

.section-label {
    color: #ff3131;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.studio-title {
    font-size: 60px;
    font-weight: 900;
    line-height: 1;
    margin: 15px 0 30px;
}

.studio-title span {
    color: #ff3131;
    display: block;
}

.studio-desc {
    font-size: 17px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 20px;
}

.studio-desc span {
    color: #ff3131;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item i {
    color: #ff3131;
    font-size: 24px;
    margin-bottom: 15px;
}

.stat-item h3 {
    font-size: 34px;
    font-weight: 900;
    color: #fff;
}

.stat-item p {
    color: #666;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

/* magic happend in desc section */

.reveal-left {
    opacity: 0;
    transform: translateX(-150px) translateY(50px);
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), 
                transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity;
}

.reveal-right {
    opacity: 0;
    transform: translateX(150px) translateY(50px);
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), 
                transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: 0.2s;
    will-change: transform, opacity;
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.about-studio { /* the background */
    background-color: #080808;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 32px 32px;
    padding: 120px 8%;
    color: white;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.profile-card {
    flex: 1;
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    position: relative;
}

.studio-content {
    flex: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
    transition-delay: 0.6s;
}

.reveal-right.active .stats-grid {
    opacity: 1;
    transform: translateY(0);
}

/*about us button */
.btn-about {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ff3131;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border-radius: 4px;
    display: inline-block;
}

.btn-about:hover {
    background: #ff3131;
    color: #000000;
    box-shadow: 0 0 20px rgba(255, 49, 49, 0.4);
    transform: scale(1.05);
}

/* MEDIA SECTION */

.media-section {
    background: #000;
    padding: 80px 8%;
}

/* HEADER */

.media-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.media-label {
    color: #ff3131;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 2px;
}

.media-title {
    color: #fff;
    font-size: 48px;
    font-weight: 900;
    margin: 5px 0 0;
}

/* BUTTON */

.sub-btn {
    background: #fff;
    color: #ff3131;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #fff;
    transition: 0.3s ease;
}

.sub-btn:hover {
    background: transparent;
    color: #fff;
}

/* VIDEO GRID — CENTERED */

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 15px;


    max-width: 1400px;     
    margin: 0 auto;        
    position: relative;
}

/* HORIZONTAL ROW LINES */

.video-grid::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            to bottom,
            transparent 0,
            transparent 49.5%,
            rgba(255, 255, 255, 0.08) 50%,
            transparent 50.5%
        );
    pointer-events: none;
}

/* VIDEO CARD */

.video-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-4px);
}

/* THUMBNAIL */

.thumb-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #111;
}

.auto-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.video-card:hover .auto-thumb {
    transform: scale(1.1);
}

/* META */

.v-views {
    color: #ccc;
    font-size: 13px;
    margin-top: 8px;
}

.v-date {
    color: #777;
    font-size: 12px;
    margin-top: 2px;
}


/* The Red Play Button Overlay */
.play-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 55px; height: 55px;
    background: #ff3131;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px;
    opacity: 0.9;
    transition: 0.3s;
}

.duration {
    position: absolute;
    bottom: 10px; right: 10px;
    background: rgba(0,0,0,0.85);
    color: #fff; font-size: 11px; font-weight: 700;
    padding: 2px 6px; border-radius: 4px;
}

.v-card-title { color: #fff; font-size: 16px; margin: 15px 0 5px; font-weight: 700; }
.v-card-meta { color: #888; font-size: 13px; }

/* --- Hover States --- */
.video-card:hover .play-overlay { 
    background: #fff; 
    color: #ff3131; 
    box-shadow: 0 0 20px rgba(255, 49, 49, 0.4); 
}

.video-card:hover .v-card-title { color: #ff3131; }

/* steam section */
.steam-section { background: #000; padding: 40px 8%; border-top: 1px solid #111; }

.steam-list { display: flex; flex-direction: column; gap: 10px; }

.steam-card {
    background: #0a0a0a;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 8px;
    transition: 0.3s;
    cursor: pointer;
}

.steam-card:hover { background: #111; transform: translateX(5px); }

.steam-thumb { width: 120px; margin-right: 20px; border-radius: 4px; overflow: hidden; }
.steam-thumb img { width: 100%; display: block; }

.steam-info { flex-grow: 1; }
.steam-info h3 { color: #fff; margin: 0; font-size: 18px; }
.steam-info .release-date { color: #555; font-size: 13px; margin: 5px 0 0; }

.price-container { display: flex; align-items: center; gap: 10px; }

.final-price { color: #fff; font-weight: 700; font-size: 16px; }
.original-price { color: #666; text-decoration: line-through; font-size: 14px; }
.discount-tag { background: #4c6b22; color: #beee11; padding: 2px 6px; border-radius: 3px; font-weight: 700; display: none; }

.steam-btn {
    background: #2a475e; 
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

/* --- STEAM SECTION WITH GRADIENT --- */

.steam-section { 
    background: #000;   
    background: radial-gradient(circle at 30% 20%, #0c1525 0%, #000000 60%); 
    padding: 60px 8%; 
    width: 100%;
    box-sizing: border-box;
}

.steam-list { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; /* Small gap rows */
    max-width: 1200px;
    margin: 0 auto;
}

.steam-card {
    background: rgba(255, 255, 255, 0.03); 
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 6px;
    transition: 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.steam-card:hover { 
    background: rgba(255, 255, 255, 0.08); 
    transform: translateX(10px); /* Slides right slightly on hover */
}

.steam-thumb { 
    width: 140px; 
    margin-right: 25px; 
    border-radius: 4px; 
    overflow: hidden; 
}

.steam-thumb img { 
    width: 100%; 
    display: block; 
    object-fit: cover;
}

.steam-info { flex-grow: 1; }
.steam-info h3 { 
    color: #fff; 
    margin: 0; 
    font-size: 18px; 
    font-weight: 700;
}

.steam-info .release-date { 
    color: #555; 
    font-size: 13px; 
    margin-top: 4px; 
}

/* PRICE AREA */
.price-container { 
    text-align: right;
    min-width: 80px;
}

.final-price { 
    color: #fff; 
    font-weight: 800; 
    font-size: 16px; 
}


.steam-btn {
    background: #4785fd; 
    color: #fff;
    padding: 10px 22px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
}

.steam-btn:hover { background: #2d66d8; }

/* footer */

.main-footer {
    background: #000;
    padding: 80px 8% 60px;
    border-top: 1px solid #111;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
}

/* --- FOOTER GRID --- */
.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr; /* Adjust column widths if needed */
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    justify-items: center; /* Centers all column content horizontally */
    align-items: start;
}

/* --- BRAND COLUMN --- */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 250px;
    gap: 10px;
}

.brand-title {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    margin: 0;
}

.indie-label {
    color: #ff3131;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.studio-description {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.location {
    color: #555;
    font-size: 13px;
}

/* --- LINKS COLUMN --- */
.footer-links, .footer-connect {
    display: flex;
    flex-direction: column;
    align-items: center;   
}

.footer-links h4, .footer-connect h4 { 
    font-size: 12px; 
    font-weight: 800; 
    letter-spacing: 2px; 
    margin-bottom: 30px; 
    color: #fff;
    text-align: center; 
}

.footer-links ul { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
    text-align: center;
}

.footer-links li { margin-bottom: 18px; }

.footer-links a { 
    color: #888; 
    text-decoration: none; 
    font-size: 14px; 
    transition: 0.3s; 
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;   /* Center link content */
}

.footer-links a:hover { 
    color: #fff; 
}

/* --- SOCIAL ICONS & CONNECT --- */
.social-icons { 
    display: flex; 
    gap: 10px; 
    margin-bottom: 30px; 
    justify-content: center;   /* Center social icons horizontally */
}

.social-icons a { 
    width: 40px; 
    height: 40px; 
    background: rgba(255,255,255,0.05); 
    border-radius: 8px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #888; 
    font-size: 16px;
    transition: 0.3s; 
}

.social-icons a:hover { 
    background: rgba(255,255,255,0.1); 
    color: #fff; 
}

.discord-btn {
    background: #5865F2; 
    color: #fff; 
    text-decoration: none; 
    padding: 12px 24px; 
    border-radius: 8px;
    display: flex; 
    align-items: center; 
    justify-content: center;   /* Center text inside button */
    gap: 10px; 
    font-weight: 700;
    font-size: 14px; 
    transition: 0.3s;
}

.discord-btn:hover { 
    background: #4752c4; 
    transform: scale(1.05); 
}

.footer-bottom {
    text-align: center;
    color: #888;
    font-size: 13px;
    margin-top: 40px;
    line-height: 1.5;
}

/* platform icon */
.platform-icons {
    display: flex;
    gap: 15px;
    justify-content: center; /* center horizontally */
}

.platform-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 18px;
    transition: 0.3s;
}

.platform-icons a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* -------- TABLET -------- */
@media (max-width: 1024px) {

    /* HERO */
    .hero-wrapper {
        padding: 0 40px;
    }

    .main-title {
        font-size: 64px;
        letter-spacing: -2px;
    }

    .sub-title {
        font-size: 22px;
    }

    /* GAMES GRID */
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ABOUT */
    .about-container {
        flex-direction: column;
        gap: 50px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* MEDIA GRID */
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* FOOTER */
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* -------- MOBILE -------- */
@media (max-width: 600px) {

    /* NAV */
    .nav-links {
        display: none;
    }

    /* HERO */
    .hero {
        min-height: 100vh;
        padding-top: 80px;
    }

    .hero-wrapper {
        padding: 0 20px;
        justify-content: center;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .main-title {
        font-size: 42px;
        line-height: 0.95;
        letter-spacing: -1px;
    }

    .sub-title {
        font-size: 18px;
    }

    .desc-text {
        font-size: 15px;
        margin: 0 auto 30px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn-white,
    .btn-outline {
        width: 100%;
        padding: 14px;
    }

    /* SIDE ARROWS */
    .side-arrow {
        display: none;
    }

    /* HERO QUEUE */
    .queue-container {
        position: static;
        margin-top: 40px;
    }

    .queue-wrapper {
        overflow-x: auto;
        padding: 0 20px;
    }

    /* GAMES */
    .games-grid {
        grid-template-columns: 1fr;
    }

    /* ABOUT */
    .profile-img-wrapper {
        width: 160px;
        height: 160px;
    }

    .studio-title {
        font-size: 36px;
    }

    /* MEDIA */
    .video-grid {
        grid-template-columns: 1fr;
    }

    /* STEAM */
    .steam-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .steam-thumb {
        width: 100%;
        margin-right: 0;
    }

    .price-container {
        text-align: left;
    }
}

/* -------- TOUCH DEVICES -------- */
@media (hover: none) {
    .game-card:hover,
    .video-card:hover,
    .steam-card:hover {
        transform: none;
    }
}