/* Common CSS Styles for All Pages */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Warm color palette */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --accent-color: #ffb74d;
    --background-color: #fff9f8;
    --text-color: #333;
    --light-text: #777;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
a{
    text-decoration: none;
}
/* Header Styles */
.header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 15px;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 800;
    transition: color 0.3s ease;
    margin: 0;
    white-space: nowrap;
}

.logo h1:hover {
    color: var(--secondary-color);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    flex: 1;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
    align-items: center;
}

/* Mobile Menu Toggle Button - Desktop Hidden */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    z-index: 1001;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 1px;
}

.footer-section h3 {
    color: #FB7238 !important;
}

.nav-list li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-list li a:hover {
    background-color: var(--primary-color);
    color: white;
}

.nav-list li a.active {
    background-color: var(--primary-color);
    color: white;
}

.nav-icon {
    font-size: 1.2rem;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i,
.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    min-width: 320px;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(15px);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid rgba(255, 255, 255, 0.95);
    filter: drop-shadow(0 -3px 5px rgba(0, 0, 0, 0.08));
}

/* PC端hover显示下拉菜单 */
@media (min-width: 993px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}



.dropdown-menu li {
    list-style: none;
    border-bottom: 1px solid rgba(255, 107, 53, 0.06);
    transition: background 0.2s ease;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.8rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 0;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    font-size: 0.95rem;
}

.dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    transition: width 0.3s ease;
    z-index: -1;
}

.dropdown-menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transition: height 0.3s ease;
}

.dropdown-menu li a:hover::before {
    width: 100%;
}

.dropdown-menu li a:hover::after {
    height: 100%;
}

.dropdown-menu li a:hover {
    color: var(--primary-color);
    padding-left: 2.4rem;
    transform: translateX(3px);
    background: rgba(255, 107, 53, 0.05);
}

.dropdown-menu li:first-child a {
    border-radius: 12px 12px 0 0;
}

.dropdown-menu li:last-child a {
    border-radius: 0 0 12px 12px;
}

.category-icon {
    font-size: 1.4rem;
    min-width: 28px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-menu li a:hover .category-icon {
    transform: scale(1.25) rotate(8deg);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.4rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 107, 53, 0.1);
}

.mobile-menu-toggle span {
    width: 26px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
}

/* Responsive Navigation - Mobile Fullscreen Design */
@media (max-width: 992px) {
    .header .container {
        padding: 1rem 10px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .nav {
        position: relative;
        width: auto;
        flex: 0;
        gap: 0;
    }

    .nav-list {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.97) 0%, rgba(247, 147, 30, 0.95) 100%);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 999;
        gap: 0;
        padding: 2rem;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transform: scale(0.9);
    }

    .nav-list.active {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    .nav-list li {
        width: 100%;
        max-width: 400px;
        text-align: center;
        border-bottom: none;
        flex: none;
        display: block;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.5s forwards;
    }

    .nav-list.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-list.active li:nth-child(2) { animation-delay: 0.15s; }
    .nav-list.active li:nth-child(3) { animation-delay: 0.2s; }
    .nav-list.active li:nth-child(4) { animation-delay: 0.25s; }
    .nav-list.active li:nth-child(5) { animation-delay: 0.3s; }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-list li a {
        font-size: 1.3rem;
        padding: 1rem 2rem;
        justify-content: center;
        width: 100%;
        border-radius: 15px;
        transition: all 0.3s ease;
        position: relative;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.2);
        flex-direction: row;
        gap: 1rem;
        font-weight: 600;
        margin-bottom: 0.8rem;
        backdrop-filter: blur(5px);
        display: flex;
        align-items: center;
        text-align: center;
    }

    .nav-list li a .nav-icon {
        font-size: 1.5rem;
        transition: transform 0.3s ease;
    }

    .nav-list li a:hover .nav-icon {
        transform: scale(1.2) rotate(5deg);
    }

    .nav-list li a::before {
        display: none;
    }

    .nav-list li a:hover {
        background: rgba(255, 255, 255, 0.25);
        color: white;
        transform: translateY(-3px);
        border-color: rgba(255, 255, 255, 0.5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .nav-list li a.active {
        background: rgba(255, 255, 255, 0.3);
        color: white;
        font-weight: 700;
        border: 2px solid white;
        transform: scale(1.05);
    }
    
    /* Mobile Dropdown Styles - Fullscreen */
    .dropdown {
        width: 100%;
        max-width: 400px;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.15);
        margin: 0.5rem 0 0 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: all 0.4s ease;
        border-radius: 12px;
        border: none;
        z-index: auto;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        max-height: 600px;
        padding: 0.8rem;
        overflow-y: auto;
    }

    .dropdown-menu li {
        border-bottom: none;
        width: 100%;
        margin-bottom: 0.5rem;
        opacity: 1;
        transform: none;
        animation: none;
    }

    .dropdown-menu li:last-child {
        margin-bottom: 0;
    }

    .dropdown-menu li a {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        position: relative;
        background: rgba(255, 255, 255, 0.08);
        box-shadow: none;
        color: white;
        justify-content: center;
        width: 100%;
        border-radius: 10px;
        margin-bottom: 0;
        border: 1px solid rgba(255, 255, 255, 0.15);
        font-weight: 500;
        backdrop-filter: blur(3px);
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

    .dropdown-menu li a .category-icon {
        font-size: 1.3rem;
        transition: transform 0.3s ease;
    }

    .dropdown-menu li a:hover .category-icon {
        transform: scale(1.15) rotate(5deg);
    }

    .dropdown-menu li a::before {
        display: none;
    }

    .dropdown-menu li a:hover {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        transform: translateY(-2px);
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    }

    .dropdown-toggle {
        justify-content: center;
        width: 100%;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        flex-direction: row;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .dropdown-toggle::before {
        display: none;
    }

    .dropdown-toggle i {
        margin-left: 0.5rem;
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }

    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .header-search {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex !important;
        z-index: 1001;
        position: relative;
        background: white;
        border: 2px solid var(--primary-color);
        padding: 0.5rem;
        transition: all 0.3s ease;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .mobile-menu-toggle:hover {
        background: rgba(255, 107, 53, 0.1);
    }

    .mobile-menu-toggle:active {
        transform: scale(0.95);
    }

    .mobile-menu-toggle span {
        width: 24px;
        height: 3px;
        background-color: var(--primary-color);
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        border-radius: 2px;
    }

    /* Mobile menu close button - X shape */
    .mobile-menu-toggle.close {
        background: white;
        border-color: white;
    }

    .mobile-menu-toggle.close span {
        background-color: white;
    }

    .mobile-menu-toggle.close span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-menu-toggle.close span:nth-child(2) {
        opacity: 0;
        width: 0;
    }

    .mobile-menu-toggle.close span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Section Headers - New Design */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    gap: 2rem;
}

.section-header > div {
    flex: 1;
}

.section-header .section-title {
    text-align: left;
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header .section-title::after {
    display: none;
}

.section-subtitle {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    background: rgba(102, 126, 234, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
}

.view-all-btn:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateX(5px);
}

/* Section Titles - Legacy */
.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.game-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.game-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.game-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.game-card:hover h3 {
    color: var(--primary-color);
}

.game-card .category {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
    font-weight: 500;
}

.game-card .play-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.game-card .play-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.game-card .play-btn:hover::before {
    left: 100%;
}

.game-card .play-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.4);
}

/* Footer */
.footer {
    background: #1a2332;
    color: #a0aec0;
    padding: 3rem 0 0;
    position: relative;
}

.footer .container {
    padding-bottom: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}

.footer-section {
    transition: all 0.3s ease;
}

.footer-section:hover {
    transform: translateY(-3px);
}

.footer-section h3 {
    color: #4a9eff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.footer-section h3::after {
    content: none;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #8899a6;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #8899a6;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #FD6A3D;
    padding-left: 5px;
}

.footer-section ul li a i {
    color: #4a9eff;
    font-size: 0.7rem;
    display: none;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #8899a6;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4a9eff;
    color: white;
    transform: translateY(-3px);
}

.footer-categories ul li a {
    font-size: 0.95rem;
}

.footer-download p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.9rem 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #8899a6;
}

.app-button:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #4a9eff;
}

.app-button i {
    font-size: 2rem;
    color: #4a9eff;
}

.app-button div {
    display: flex;
    flex-direction: column;
}

.app-button div span {
    font-size: 0.75rem;
    color: #6b7c8e;
}

.app-button div strong {
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    text-align: center;
}

.footer-bottom-content p {
    margin: 0;
    color: #6b7c8e;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: inline-flex;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.footer-bottom-links::before {
    content: '|';
    color: #6b7c8e;
    margin: 0 0.5rem;
}

.footer-bottom-links a {
    color: #6b7c8e;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #4a9eff;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .footer-bottom-links::before {
        display: none;
    }
}

@media (max-width: 480px) {
    /* Header Mobile */
    .header .container {
        padding: 0.8rem;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .nav-list li a {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .nav-icon {
        font-size: 1rem;
    }

    /* Mobile Menu */
    .nav-list {
        /* width: 90%; */
    }

    .dropdown-menu li a {
        padding: 0.8rem 1.5rem 0.8rem 2.5rem;
        font-size: 0.95rem;
    }

    .dropdown-menu li a:hover {
        padding-left: 3rem;
    }

    .category-icon {
        font-size: 1.1rem;
    }

    /* Buttons Mobile */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    /* Games Grid Mobile */
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .game-card {
        border-radius: 12px;
    }

    .game-card img {
        height: 150px;
    }

    .game-card-content {
        padding: 1rem;
    }

    .game-card h3 {
        font-size: 1rem;
    }

    .game-card .play-btn {
        padding: 6px 16px;
        font-size: 0.85rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 1.5rem 0 0;
    }

    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

    .footer-section ul li a {
        font-size: 0.9rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-bottom-content p {
        font-size: 0.85rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .app-button {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .app-button i {
        font-size: 1.5rem;
    }

    /* Container Mobile */
    .container {
        width: 95%;
        padding: 0 10px;
    }

    /* Section Title Mobile */
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .section-title::after {
        width: 60px;
        height: 2px;
    }
}
