/* Publisher logo in subtitle */
.publisher-logo {
    display: inline-block;
    height: 2em;
    width: auto;
    vertical-align: middle;
    margin-right: 0.3em;
}
#header-logo{
    width: 140px;
}
/* Base Styles */
:root {
    --teal: #00A79D;
    --gold: #FFD100;
    --bronze: #B28A58;
    --black: #000000;
    --white: #FFFFFF;
    --light-bg: #f8f9fa;
    --medium-bg: #e9ecef;
    --dark-text: #2d3748;
    --dark-text-soft: rgba(45, 55, 72, 0.67);
    --hero-navy: #1a1a2e;
    --hero-ink: #16213e;
    --btn-hover: #00968d;
    --btn-primary-end: #00857c;
    --btn-primary-hover-end: #00665f;
    --device-bg: #444444;
    --gray-border: #e0e0e0;
    --white-10: rgba(255, 255, 255, 0.1);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-95: rgba(255, 255, 255, 0.95);
    --white-98: rgba(255, 255, 255, 0.98);
    --shadow-sm: rgba(0, 0, 0, 0.1);
    --shadow-md: rgba(0, 0, 0, 0.2);
    --shadow-lg: rgba(0, 0, 0, 0.3);
    --shadow-xs: rgba(0, 0, 0, 0.08);
    --shadow-hairline: rgba(0, 0, 0, 0.05);
    --teal-soft: rgba(0, 167, 157, 0.1);
    --teal-overlay: rgba(0, 167, 157, 0.15);
    --teal-shadow-medium: rgba(0, 167, 157, 0.3);
    --teal-shadow-strong: rgba(0, 167, 157, 0.4);
    --teal-20: rgba(0, 167, 157, 0.2);
    --teal-50: rgba(0, 167, 157, 0.5);
    --gold-soft: rgba(255, 209, 0, 0.1);
    --bronze-soft: rgba(178, 138, 88, 0.08);
    --alert-bg: rgba(220, 53, 69, 0.05);
    --alert-border: rgba(220, 53, 69, 0.2);
    --alert: #dc3545;
    --transparent: transparent;
    --whitesmoke: whitesmoke;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--white);
    color: var(--dark-text);
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Quicksand', sans-serif;
    color: var(--teal);
    margin-bottom: 20px;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 100px 0;
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--dark-text);
}

a {
    text-decoration: none;
    color: var(--teal);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--gold);
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--teal);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    box-shadow: 0 4px 15px var(--teal-shadow-medium);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--teal-shadow-strong);
    background-color: var(--btn-hover);
}

.btn-outline {
    background: var(--transparent);
    border: 2px solid var(--teal);
    color: var(--teal);
}

.btn-outline:hover {
    background: var(--teal);
    color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gold);
    margin: 20px auto;
    border-radius: 2px;
}

/* Header & Navigation */
header {
    background-color: var(--white-95);
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo>img{
    width: 150px;
}
        
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    color: var(--dark-text);
    font-weight: 500;
    position: relative;
    font-size: 1rem;
    padding: 5px 0;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--teal);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--teal);
}

/* hero */
/* Hero Section - Redesigned */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--hero-navy) 50%, var(--hero-ink) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, var(--teal-overlay) 0%, var(--transparent) 50%),
        radial-gradient(circle at 80% 20%, var(--gold-soft) 0%, var(--transparent) 50%),
        radial-gradient(circle at 40% 40%, var(--bronze-soft) 0%, var(--transparent) 50%);
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    opacity: 0.15;
    animation: float 6s infinite ease-in-out;
    filter: drop-shadow(0 4px 8px var(--shadow-md));
}

.particle:nth-child(1) {
    font-size: 2rem;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    font-size: 3.5rem;
    top: 60%;
    left: 10%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    font-size: 3rem;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    font-size: 1.5rem;
    top: 70%;
    right: 5%;
    animation-delay: 1s;    
}

.particle:nth-child(5) {
    font-size: 2rem;
    top: 40%;
    left: 50%;    
    animation-delay: 4s;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    line-height: 1.1;
}

.title-line {
    display: block;
}



.title-line:last-child {
    background: linear-gradient(135deg, var(--teal) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--transparent);
    background-clip: text;
}

.hero-tagline {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--dark-text);    
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 0.5rem;
    font-family: 'Quicksand', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark-text-soft);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}
.hero-actions span{
    margin:auto;
}
.btn-primary {
    background: linear-gradient(135deg, var(--teal) 0%, var(--btn-primary-end) 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--teal-shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--teal-shadow-strong);
    background: linear-gradient(135deg, var(--btn-primary-end) 0%, var(--btn-primary-hover-end) 100%);
}

.btn-secondary {
    background: var(--transparent);
    color: var(--white);
    padding: 1rem 2rem;
    border: 2px solid var(--white-30);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--teal);
    background: var(--teal-soft);
    transform: translateY(-2px);
}
/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-devices {
    position: relative;
    width: 300px;
    height: 300px;
}

.device {
    position: absolute;
    background: var(--device-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--white-20);
    box-shadow: 0 20px 40px var(--shadow-lg);
}

.device.phone {
    width: 120px;
    height: 240px;
    animation: float-device 3s ease-in-out infinite;
}
.device.phone .screen{
    background:url("https://play-lh.googleusercontent.com/lyBMtO-zNhxcoLC-SucfoIfjzw0kALr_IHxABRnCrHF5W3VKxqiEztOzcHL9IpBv0Q=w480-h960");
    background-size: cover;
}
.device.tablet {
    width: 180px;
    height: 240px;
    bottom: 20px;
    right: 30px;
    animation: float-device 3s ease-in-out infinite 1.5s;
}
.device.tablet .screen{
    background: url("https://play-lh.googleusercontent.com/f8t2C-7GTNgPjlVYCBgCtacwIez_v9yAo_ZXmgnK3vbCCKs_d55GcyTypC0AKBCtP3dt=w240-h480");
    background-size: cover;
}
.device .screen {
    width: 90%;
    height: 90%;
    margin: 5%;
    background: linear-gradient(45deg, var(--teal), var(--gold));
    border-radius: 12px;
    opacity: 0.8;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--white-50);
    border-bottom: 2px solid var(--white-50);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes float-device {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .floating-devices {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .floating-devices {
        width: 200px;
        height: 200px;
    }
    
    .device.phone {
        width: 100px;
        height: 200px;
    }
    
    .device.tablet {
        width: 150px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .stat-number {
        margin-bottom: 0;
        font-size: 1.8rem;
    }
    
    .stat-label {
        text-align: left;
    }
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: var(--teal);
    top: 10%;
    left: 5%;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: var(--gold);
    bottom: 10%;
    right: 10%;
}

.circle-3 {
    width: 150px;
    height: 150px;
    background: var(--bronze);
    top: 50%;
    right: 15%;
}

/* Games Section */
#games {
    background-color: var(--light-bg);
    position: relative;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.game-tile {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: block;
    color: inherit;
    box-shadow: 0 5px 15px var(--shadow-xs);
    border: 1px solid var(--shadow-hairline);
    position: relative;
}

.game-tile:hover {    
    box-shadow: 0 15px 30px var(--teal-overlay);
}

.game-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-info {
    padding: 25px 20px;
}

.game-title {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-text);
    font-family: 'Quicksand', sans-serif;
}
.game-subtitle {
    font-size: 0.75rem;
    color: var(--dark-text-soft);
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}
.game-meta {
    font-size: 0.9rem;
    color: var(--bronze);
    display: flex;
    align-items: center;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-stats {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow-xs);
    border: 1px solid var(--shadow-hairline);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--teal);
    margin-bottom: 10px;
    font-family: 'Quicksand', sans-serif;
}

/* Partners Section */
.partners-section {
    background-color: var(--light-bg);
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
}

.partner-img {
    width: 200px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: filter 0.3s ease;
}

.partner-name {
    font-size: 1.2rem;
    color: var(--dark-text);
    text-align: center;
    font-family: 'Quicksand', sans-serif;
}

/* Collaboration Section */

.collab-options {
    display: flex;
    gap: 40px;
}

.collab-option {
    flex: 1;
    background: var(--white);
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px var(--shadow-xs);
    border: 1px solid var(--shadow-hairline);
}

.collab-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--teal-overlay);
}

.collab-icon {
    font-size: 3.5rem;
    color: var(--teal);
    margin-bottom: 30px;
}

/* Contact Section */
#contact {
    background-color: var(--light-bg);
}

.contact-container {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: var(--white);
    border: 1px solid var(--shadow-sm);
    border-radius: 10px;
    color: var(--dark-text);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px var(--teal-soft);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background: var(--dark-text);
    padding: 80px 0 30px;
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-logo p {
    color: var(--white-70);
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-around;
}

.footer-links h4 {
    margin-bottom: 25px;
    color: var(--teal);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--white-70);
}

.footer-links ul li a:hover {
    color: var(--teal);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--white-10);
    color: var(--white-70);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--white-10);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: var(--white);
}

.social-icons a:hover {
    background: var(--teal);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
   
    .about-content, .collab-options, .contact-container {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .footer-links {
        justify-content: flex-start;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white-98);
        flex-direction: column;
        padding: 20px 0;
        text-align: center;
        box-shadow: 0 5px 15px var(--shadow-sm);
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .partner-img {
        width: 150px;
        height: 60px;
    }
    
    .partners-grid {
        gap: 40px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}
/* Loading States */
.games-loading {
    text-align: center;
    padding: 60px 20px;
    display: block;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--teal-20);
    border-left: 4px solid var(--teal);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.games-loading p {
    color: var(--teal);
    font-size: 1.1rem;
    font-weight: 500;
}

.games-error {
    text-align: center;
    padding: 60px 20px;
    background: var(--alert-bg);
    border-radius: 15px;
    border: 1px solid var(--alert-border);
}

.games-error i {
    font-size: 3rem;
    color: var(--alert);
    margin-bottom: 20px;
}

.games-error h3 {
    color: var(--alert);
    margin-bottom: 10px;
}

.games-error p {
    color: var(--dark-text);
    margin-bottom: 25px;
}

/* Ensure games grid is hidden until loaded */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.game-tile {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    color: inherit;
    box-shadow: 0 5px 15px var(--shadow-xs);
    border: 1px solid var(--shadow-hairline);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.game-info {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.game-title {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-text);
    font-family: 'Quicksand', sans-serif;
    line-height: 1.3;
}

/* Store Buttons Styles */
.store-buttons {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 10px;
}

.store-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    border: 1px solid var(--transparent);
    min-height: 44px;
}

.store-btn i {
    margin-right: 6px;
    font-size: 1rem;
}

.android-btn {
    background: linear-gradient(135deg, var(--teal) 0%, var(--btn-primary-end) 100%);
    color: var(--white);
}

.ios-btn {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--gray-border);
}

.android-btn:hover {
    background: linear-gradient(135deg, var(--btn-primary-end) 0%, var(--btn-primary-hover-end) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--teal-shadow-medium);
}

.ios-btn:hover {
    background: var(--light-bg);
    border-color: var(--teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-sm);
}

/* Genre Chips Styles */
.game-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px;
    position: absolute;
    right: 5px;
    top: 175px;   
}

.genre-chip {
    display: inline-block;
    padding: 6px 9px;
    background-color: var(--whitesmoke);
    color: var(--teal);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--teal-50);
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
}
.genre-chip.downloads{
    position: absolute;
    top: -160px;
    right: 5px;
    
}
/* 
.genre-chip:hover {
    background-color: var(--teal-overlay);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px var(--teal-20);
} */
.imprint-page h1, .terms-page h1{
    padding: 100px 0 0 0;
}
.imprint-page h2, .terms-page h2{
    font-size: 1.7rem;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .store-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .store-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
        min-height: 48px;
    }
    
    .genre-chip {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .game-meta {
        gap: 6px;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .store-btn {
        font-size: 0.85rem;
    }
    
    .store-btn i {
        margin-right: 4px;
        font-size: 0.9rem;
    }
}
