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

:root {
    --primary-color: #4CAF50;
    --secondary-color: #2196F3;
    --accent-color: #FF9800;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #fff;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 16px rgba(0,0,0,0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #4CAF50, #2196F3, #FF6B6B) 1;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo a {
    font-size: 1.6rem;
    font-weight: bold;
    background: linear-gradient(135deg, #4CAF50 0%, #2196F3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.logo a:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

.nav-list > li > a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    position: relative;
}

.nav-list > li > a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #2196F3);
    transform: translateX(-50%);
    transition: width 0.3s;
    border-radius: 3px;
}

.nav-list > li > a:hover {
    color: var(--primary-color);
    background-color: rgba(76, 175, 80, 0.05);
}

.nav-list > li > a:hover::before {
    width: 80%;
}

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

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

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 240px;
    border-radius: 12px;
    padding: 0.8rem 0;
    margin-top: 0.8rem;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Add padding area to prevent hover loss */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 1rem;
    background: transparent;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: white;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateX(-50%) rotate(45deg);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    font-size: 0.95rem;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(76, 175, 80, 0.1) 0%, rgba(33, 150, 243, 0.05) 100%);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 1.8rem;
}

.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.mobile-menu-toggle {
    display: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: white;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.mobile-menu-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

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

/* Header Search Button */
.header-search-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.4rem;
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A6F 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 3px 12px rgba(255, 107, 107, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

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

.header-search-btn:hover::before {
    left: 100%;
}

.header-search-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.45);
    background: linear-gradient(135deg, #ff5252 0%, #e74c3c 100%);
}

/* ==================== Search Page Styles ==================== */

/* Search Hero Section */
.search-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.search-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.search-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.search-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.search-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Large Search Box */
.search-box-large {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2rem;
    background: white;
    padding: 0.5rem;
    border-radius: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.search-box-large input {
    flex: 1;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    background: transparent;
    color: #333;
}

.search-box-large input::placeholder {
    color: #999;
}

.btn-search-large {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A6F 100%);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-search-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
    background: linear-gradient(135deg, #ff5252 0%, #e74c3c 100%);
}

/* Search Suggestions */
.search-suggestions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.suggestions-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

.suggestion-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.suggestion-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Search Results Section */
.search-results-section {
    padding: 4rem 0;
    background: #f8f9fa;
    min-height: 50vh;
}

.search-results-header {
    text-align: center;
    margin-bottom: 3rem;
}

.search-results-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.results-count {
    font-size: 1.1rem;
    color: #666;
}

/* No Results State */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
}

.no-results-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.no-results h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.no-results p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-back-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Initial State */
.initial-state {
    text-align: center;
    padding: 4rem 2rem;
}

.initial-state-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.initial-state h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.initial-state p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Browse Categories */
.browse-categories {
    max-width: 900px;
    margin: 0 auto;
}

.browse-categories h4 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.quick-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}

.quick-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 2rem 1rem;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 2px solid transparent;
}

.quick-cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.cat-icon {
    font-size: 3rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.cat-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Left */
.hero-left {
    max-width: 900px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-weight: 500;
}

.hero-description {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.hero-description p {
    margin: 0.6rem 0;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.hero-description p:first-child {
    margin-top: 0;
}

.hero-description p:last-child {
    margin-bottom: 0;
}

/* Hero Actions */
.hero-actions {
    margin-top: 2rem;
}

.search-box {
    display: flex;
    width: 70%;
    margin: auto;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.search-box input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-search {
    padding: 1rem 2.5rem;
    background-color: #FF6B6B;
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-search:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item-small {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-num {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0.3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.stat-text {
    font-size: 0.85rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Right - Decoration */
.hero-right {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-decoration {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

/* Game Icons Grid */
.game-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.game-icon-item {
    font-size: 3rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.game-icon-item:nth-child(1) { animation: iconFloat 3s ease-in-out infinite; }
.game-icon-item:nth-child(2) { animation: iconFloat 3s ease-in-out 0.2s infinite; }
.game-icon-item:nth-child(3) { animation: iconFloat 3s ease-in-out 0.4s infinite; }
.game-icon-item:nth-child(4) { animation: iconFloat 3s ease-in-out 0.6s infinite; }
.game-icon-item:nth-child(5) { animation: iconFloat 3s ease-in-out 0.8s infinite; }
.game-icon-item:nth-child(6) { animation: iconFloat 3s ease-in-out 1s infinite; }
.game-icon-item:nth-child(7) { animation: iconFloat 3s ease-in-out 1.2s infinite; }
.game-icon-item:nth-child(8) { animation: iconFloat 3s ease-in-out 1.4s infinite; }

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Floating Circles */
.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.circle-1 {
    width: 100px;
    height: 100px;
    top: -20px;
    left: -20px;
    animation: float1 6s ease-in-out infinite;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: -30px;
    animation: float2 8s ease-in-out infinite;
}

.circle-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    left: -40px;
    animation: float3 7s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-20px, -20px);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(15px, -15px);
    }
}

/* Sections */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Section Header */
.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.about-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-tagline {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.stat-icon {
    font-size: 3rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-description,
.about-features {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.about-description h3,
.about-features h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #667eea;
}

.about-description p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.about-description p:last-child {
    margin-bottom: 0;
}

.about-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.features-list li:last-child {
    margin-bottom: 0;
}

.feature-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.4rem;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

.features-list li div {
    flex: 1;
}

.features-list strong {
    display: block;
    color: var(--text-color);
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.features-list p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    background: white;
    position: relative;
}

/* Features Header */
.features-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.features-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Platform Value Box */
.platform-value-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.platform-value-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.value-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.value-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.value-list li:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

.value-list li:last-child {
    margin-bottom: 0;
}

.value-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.value-list li span:last-child {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* Features Subtitle */
.features-subtitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #4CAF50;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
    border-color: #4CAF50;
    background-color: white;
}

.feature-icon {
    font-size: 3rem;
    flex-shrink: 0;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 0 0 0.75rem 0;
    font-weight: 600;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Category Section */
.categories-section {
    background-color: #f8f9fa;
}

/* Categories Header */
.categories-header {
    text-align: center;
    margin-bottom: 3rem;
}

.categories-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A6F 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.categories-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.categories-description {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #45a049);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.15);
    border-color: #4CAF50;
}

/* Category Header Section */
.category-header-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    text-align: center;
}

.category-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-card:hover .category-icon-wrapper {
    transform: rotate(-5deg) scale(1.1);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.category-icon {
    font-size: 3rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.category-card h3 {
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
    font-size: 1.4rem;
    font-weight: 600;
}

.category-count {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.category-description {
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 10px 0;
    text-align: center;
}

/* Category Button */
.btn-category {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-category::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-category:hover::before {
    width: 300px;
    height: 300px;
}

.btn-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.btn-category .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s;
    position: relative;
    z-index: 1;
}

.btn-category:hover .arrow {
    transform: translateX(5px);
}

.btn-category span:first-child {
    position: relative;
    z-index: 1;
}

/* Games Section */
.games-section {
    background: white;
}

/* Games Header */
.games-header {
    text-align: center;
    margin-bottom: 3rem;
}

.games-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.games-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.games-description {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

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

.game-card {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
}

.game-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.game-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-icon {
    color: white;
    font-size: 3rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.game-card:hover .play-icon {
    transform: scale(1);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.game-card:hover::before {
    transform: scaleX(1);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 165, 0, 0.2);
    border-color: #FFD700;
}

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.game-info {
    padding: 1.2rem;
}

.game-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6rem;
}

.game-category {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.game-rating {
    color: #FFD700;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.game-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-top: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Featured Game Card - 左右结构布局 */
.game-card-featured {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 2px solid #f0f0f0;
    display: flex;
    flex-direction: row;
    height: auto;
    min-height: 160px;
}

.game-card-featured a {
    text-decoration: none;
    color: inherit;
    display: flex;
    width: 100%;
}

.game-card-featured .game-image-wrapper {
    position: relative;
    width: 180px;
    min-width: 180px;
    height: auto;
    overflow: hidden;
    border-radius: 16px 0 0 16px;
}

.game-card-featured .game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card-featured .game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card-featured:hover .game-overlay {
    opacity: 1;
}

.game-card-featured .play-icon {
    color: white;
    font-size: 2.5rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.game-card-featured:hover .play-icon {
    transform: scale(1);
}

.game-card-featured .game-info {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* TOP RATED 标签 */
.game-card-featured .top-rated-badge {
    position: absolute;
    top: -2px;
    left: -2px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 16px 0 16px 0;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 2px 8px rgba(255, 165, 0, 0.3);
}

.game-card-featured .top-rated-badge::before {
    content: '⭐';
    font-size: 0.9rem;
}

.game-card-featured .game-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: var(--text-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.game-card-featured .game-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    width: fit-content;
}

.game-card-featured .game-rating {
    color: #FFD700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.game-card-featured .game-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-card-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 165, 0, 0.15);
    border-color: #FFD700;
}

.game-card-featured:hover .game-image {
    transform: scale(1.05);
}

/* 响应式设计 - 移动端显示为上下结构 */
@media (max-width: 768px) {
    .game-card-featured {
        flex-direction: column;
        height: auto;
    }
    
    .game-card-featured .game-image-wrapper {
        width: 100%;
        height: 200px;
        border-radius: 16px 16px 0 0;
    }
    
    .game-card-featured .game-title {
        margin-top: 0.5rem;
    }
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-load-more::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-load-more:hover::before {
    width: 300px;
    height: 300px;
}

.btn-load-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.load-icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
    position: relative;
    z-index: 1;
}

.btn-load-more:hover .load-icon {
    transform: translateY(3px);
}

.btn-load-more span:first-child {
    position: relative;
    z-index: 1;
}

/* Game Detail Page */
.game-detail-section {
    padding: 2rem 0;
}

/* Game Info Header */
.game-info-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.game-info-header .game-detail-title {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.game-info-header .game-meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.game-info-header .game-category {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.game-info-header .game-rating {
    font-size: 1.2rem;
}

.game-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.game-player {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Game Cover Overlay */
.game-cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.game-cover-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.game-cover-image {
    position: static;
    width: auto;
    height: auto;
    max-width: 300px;
    max-height: 280px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.game-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.play-button-large {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.play-button-large:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.6);
}

.play-button-large .play-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.play-button-large .play-text {
    font-size: 1.2rem;
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

/* Fullscreen Button */
.fullscreen-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
    opacity: 0;
    display: none;
}

.game-player:hover .fullscreen-btn {
    opacity: 1;
}

.fullscreen-btn:hover {
    background: rgba(76, 175, 80, 0.9);
    transform: scale(1.1);
}

.game-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-section {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
}

.sidebar-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.quick-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-info-list li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--light-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quick-info-list li:last-child {
    border-bottom: none;
}

.action-button {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-bottom: 0.8rem;
}

.action-button.primary {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.action-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.action-button.secondary {
    background: var(--light-bg);
    color: var(--text-color);
    border: 2px solid var(--primary-color);
}

.action-button.secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Content Grid Layout */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.content-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Sticky Wrapper */
.sticky-wrapper {
    position: sticky;
    top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sticky-wrapper .content-box {
    margin-bottom: 0;
}

.sticky-wrapper .content-box:last-child {
    margin-bottom: 0;
}

.content-box {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 2rem;
}

.content-box h3 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-box h4 {
    color: var(--text-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.content-box ul {
    padding-left: 1.5rem;
    line-height: 1.8;
}

.content-box ol {
    padding-left: 1.5rem;
    line-height: 1.8;
}

.content-box li {
    margin-bottom: 0.8rem;
}

.content-box p {
    line-height: 1.8;
    color: #555;
}

/* Features and Players Lists */
.features-list,
.players-list {
    list-style: none;
    padding: 0;
}

.features-list li,
.players-list li {
    padding: 0.6rem 0;
    padding-left: 0.3rem;
    border-bottom: 1px solid var(--light-bg);
}

.features-list li:last-child,
.players-list li:last-child {
    border-bottom: none;
}

/* Tips & Strategies Section */
.tips-strategies {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tip-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.tip-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.8rem;
}

.tip-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    margin-top: 0;
}

.tip-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Reviews Section */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-item {
    padding: 1rem;
    background-color: var(--light-bg);
    border-radius: 4px;
}

.review-stars {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* Related Games */
.related-games {
    padding: 3rem 0;
    background-color: var(--light-bg);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #1a252f 0%, #2c3e50 100%);
    color: var(--white);
    padding: 4rem 0 1.5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4CAF50 0%, #2196F3 25%, #9C27B0 50%, #FF6B6B 75%, #FFD700 100%);
    background-size: 200% 100%;
    animation: gradientShift 5s linear infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

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

/* Footer About Column */
.footer-column:first-child p {
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-color: #66bb6a;
    transform: translateY(-3px) scale(1.05);
    color: white;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.social-link svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Footer Column */
.footer-column h4 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #4CAF50 0%, #2196F3 100%);
    border-image-slice: 1;
    display: inline-block;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD700 0%, #FF6B6B 100%);
    transition: width 0.3s ease;
}

.footer-column:hover h4::after {
    width: 100%;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    position: relative;
    font-size: 0.95rem;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4CAF50 0%, #2196F3 100%);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(8px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
}

.footer-bottom p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-note {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.legal-content h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.legal-content h2 {
    color: var(--text-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* Category Page - Banner */
.category-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.category-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.category-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.category-name {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.category-description {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 700px;
    margin: 10px auto;
}

/* Section Badge (共用) */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50, #2196F3);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

/* Section Header (共用) */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 0;
}

/* Category Introduction Section */
.category-intro-section {
    background-color: var(--white);
    padding: 4rem 0;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: justify;
}

.player-type-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(33, 150, 243, 0.1));
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-color);
    border: 2px solid rgba(76, 175, 80, 0.3);
}

.tag-icon {
    font-size: 1.3rem;
}

/* Category Features Section */
.category-features-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.characteristics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.characteristic-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.characteristic-card:hover {
    transform: translateY(-8px);
    border-color: #4CAF50;
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.2);
}

.char-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #2196F3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.char-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.char-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Content Blocks Section */
.category-content-section {
    background-color: var(--white);
    padding: 4rem 0;
}

.content-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.content-block {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    color: white;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.content-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transition: all 0.5s;
}

.content-block:hover::before {
    top: -30%;
    right: -30%;
}

.content-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.block-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
    z-index: 1;
}

.block-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.block-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Old Category Styles - Keep for backward compatibility */
.category-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.category-intro {
    background-color: var(--light-bg);
    padding: 3rem 0;
}

.category-intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Mobile Close Button */
.mobile-close-btn {
    display: none;
}

.close-menu-btn {
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.1);
    color: #333;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 300;
    line-height: 1;
}

.close-menu-btn:hover {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A6F 100%);
    color: white;
    border-color: transparent;
    transform: rotate(90deg) scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.close-menu-btn:active {
    transform: rotate(90deg) scale(0.95);
}

/* Mobile Search Item */
.mobile-search-item {
    display: none;
}

.mobile-search-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.35);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.mobile-search-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.mobile-search-link:active::before {
    width: 300px;
    height: 300px;
}

.mobile-search-link:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
}

.mobile-search-link:active {
    transform: translateY(0) scale(0.98);
}

.mobile-search-link span:first-child {
    font-size: 1.3rem;
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(3px);
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}
/* Responsive Design */
@media (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 88vw;
        height: 100vh;
        background: linear-gradient(165deg, #ffffff 0%, #f5f7fa 50%, #e8ecf1 100%);
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.25);
        padding: 0;
        gap: 0;
        z-index: 9999;
        transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        overflow-y: auto;
        overflow-x: hidden;
    }

    /* Custom scrollbar for mobile menu */
    .nav-list::-webkit-scrollbar {
        width: 5px;
    }

    .nav-list::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.03);
    }

    .nav-list::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
        border-radius: 10px;
    }

    .nav-list::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, #5568d3 0%, #654a8d 100%);
    }

    .nav-list.active {
        display: flex;
        right: 0;
    }

    /* Mobile menu header */
    .mobile-close-btn {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.3rem 1.5rem;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-bottom: none;
        position: sticky;
        top: 0;
        z-index: 10;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    }

    .mobile-close-btn::before {
        content: '🎮 Menu';
        color: white;
        font-size: 1.1rem;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    /* Menu items container */
    .nav-list > li:not(.mobile-close-btn):not(.mobile-search-item) {
        padding: 0 1.3rem;
        margin: 0.25rem 0;
    }

    .mobile-search-item {
        display: block;
        margin-top: auto;
        padding: 1.5rem 1.3rem 1.8rem;
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.05) 100%);
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .nav-list > li {
        width: 100%;
        animation: slideInRight 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        opacity: 0;
    }

    /* Prevent animation interference with dropdown */
    .nav-list.active > li {
        animation-fill-mode: forwards;
    }

    /* Prevent dropdown container from animating */
    .nav-list.active > li.dropdown {
        animation: slideInRight 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        animation-delay: 0.15s;
    }

    /* Remove animation from dropdown menu itself */
    .dropdown-menu {
        animation: none !important;
    }

    .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; }
    .nav-list.active > li:nth-child(6) { animation-delay: 0.35s; }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-list > li > a {
        width: 100%;
        justify-content: flex-start;
        padding: 1rem 1.4rem;
        border-radius: 14px;
        font-size: 1rem;
        font-weight: 600;
        transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
        overflow: hidden;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        margin: 0.3rem 0;
        border: 1px solid rgba(0, 0, 0, 0.06);
    }

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

    .nav-list > li > a::after {
        content: '→';
        position: absolute;
        right: 1.4rem;
        top: 50%;
        transform: translateY(-50%) translateX(10px);
        opacity: 0;
        transition: all 0.3s ease;
        font-size: 1.2rem;
        color: #667eea;
    }

    .nav-list > li > a:hover::after,
    .nav-list > li > a:active::after {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }

    .nav-list > li > a:hover {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        transform: translateX(8px) scale(1.02);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
        border-color: transparent;
    }

    .nav-list > li > a:hover::after {
        color: white;
    }

    .nav-list > li > a:active {
        transform: translateX(8px) scale(0.98);
    }

    /* Dropdown toggle specific styles */
    .dropdown > a.dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        background: linear-gradient(135deg, rgba(76, 175, 80, 0.08) 0%, rgba(33, 150, 243, 0.05) 100%);
        border-color: rgba(76, 175, 80, 0.2);
    }

    .dropdown > a.dropdown-toggle::after {
        content: '▼';
        font-size: 0.8rem;
        transition: all 0.3s ease;
        opacity: 0.6;
    }

    .dropdown.active > .dropdown-toggle {
        background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
        color: white;
        border-color: transparent;
        box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    }

    .dropdown.active > .dropdown-toggle::after {
        transform: rotate(180deg);
        opacity: 1;
        color: white;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-search-btn {
        display: none;
    }

    .dropdown-menu {
        display: none;
        position: static;
        box-shadow: none;
        padding: 0;
        margin: 0.5rem 0 0 0;
        border-radius: 12px;
        background: linear-gradient(135deg, rgba(76, 175, 80, 0.06) 0%, rgba(33, 150, 243, 0.04) 100%);
        transform: translateY(-10px);
        transform-origin: top;
        border: 1px solid rgba(76, 175, 80, 0.15);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.3s ease, 
                    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    padding 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        max-height: 600px;
        opacity: 1;
        transform: translateY(0);
        padding: 0.6rem 0;
    }

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

    .dropdown-menu a {
        padding: 0.85rem 1.4rem;
        font-size: 0.95rem;
        font-weight: 500;
        border-radius: 10px;
        margin: 0.2rem 0.6rem;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.05);
        position: relative;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-8px);
        animation: none !important;
    }

    .dropdown.active .dropdown-menu a {
        animation: dropdownSlideIn 0.3s ease forwards !important;
    }

    .dropdown.active .dropdown-menu a:nth-child(1) { animation-delay: 0.05s !important; }
    .dropdown.active .dropdown-menu a:nth-child(2) { animation-delay: 0.1s !important; }
    .dropdown.active .dropdown-menu a:nth-child(3) { animation-delay: 0.15s !important; }
    .dropdown.active .dropdown-menu a:nth-child(4) { animation-delay: 0.2s !important; }
    .dropdown.active .dropdown-menu a:nth-child(5) { animation-delay: 0.25s !important; }
    .dropdown.active .dropdown-menu a:nth-child(6) { animation-delay: 0.3s !important; }
    .dropdown.active .dropdown-menu a:nth-child(7) { animation-delay: 0.35s !important; }
    .dropdown.active .dropdown-menu a:nth-child(8) { animation-delay: 0.4s !important; }

    @keyframes dropdownSlideIn {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .dropdown-menu a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 3px;
        height: 100%;
        background: linear-gradient(180deg, #4CAF50 0%, #45a049 100%);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .dropdown-menu a:hover::before {
        transform: scaleY(1);
    }

    .dropdown-menu a:hover {
        background: linear-gradient(90deg, rgba(76, 175, 80, 0.12) 0%, rgba(76, 175, 80, 0.05) 100%);
        transform: translateX(8px);
        padding-left: 1.8rem;
        border-color: rgba(76, 175, 80, 0.2);
        box-shadow: 0 2px 8px rgba(76, 175, 80, 0.15);
    }

    .dropdown-menu a:active {
        transform: translateX(8px) scale(0.98);
    }

    /* Category Banner Responsive */
    .category-banner {
        padding: 3rem 0 2.5rem;
    }

    .category-icon-large {
        font-size: 3.5rem;
    }

    .category-title {
        font-size: 2rem;
    }

    .category-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    /* Section Titles Responsive */
    .section-title {
        font-size: 1.8rem;
    }
    
    .features-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    /* Category Sections Responsive */
    .category-about-section,
    .category-features-section,
    .category-why-section,
    .category-types-section,
    .category-who-section {
        padding: 3rem 0;
    }
    
    /* List Items Responsive */
    .feature-item,
    .why-item,
    .type-item,
    .who-item {
        padding-left: 2.5rem;
        font-size: 1rem;
    }
    
    .feature-item:hover,
    .why-item:hover,
    .type-item:hover,
    .who-item:hover {
        padding-left: 2.5rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .who-intro {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-description {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-description p {
        font-size: 0.95rem;
    }

    .search-box {
        flex-direction: column;
    }

    .about-content {
        padding: 2rem 1.5rem;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-right {
        order: -1;
    }

    .hero-decoration {
        min-height: 300px;
    }

    .game-icons-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }

    .game-icon-item {
        font-size: 2rem;
        padding: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        padding: 1rem 1.2rem;
    }

    .hero-description p {
        font-size: 0.95rem;
    }

    .search-box {
        flex-direction: column;
    }

    .btn-search {
        padding: 1rem 2rem;
    }
    
    /* Search Page Responsive */
    .search-hero h1 {
        font-size: 2rem;
    }
    
    .search-subtitle {
        font-size: 1rem;
    }
    
    .search-box-large {
        flex-direction: column;
        padding: 1rem;
    }
    
    .search-box-large input {
        padding: 1rem 1.5rem;
    }
    
    .btn-search-large {
        justify-content: center;
        width: 100%;
    }
    
    .search-suggestions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .quick-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .quick-cat-card {
        padding: 1.5rem 0.8rem;
    }
    
    .cat-icon {
        font-size: 2.5rem;
    }
    
    .cat-name {
        font-size: 0.9rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .stat-item-small {
        padding: 0.8rem 1.2rem;
    }

    .stat-num {
        font-size: 1.8rem;
    }

    .about-header h2 {
        font-size: 2rem;
    }

    .about-tagline {
        font-size: 1rem;
    }

    .stats-container {
        gap: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-icon {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-description,
    .about-features {
        padding: 2rem;
    }

    .about-highlights {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .features-header h2 {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .features-subtitle {
        font-size: 1.5rem;
    }

    .value-list {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        flex-direction: column;
        text-align: center;
    }

    .platform-value-box {
        padding: 2rem 1.5rem;
    }

    .platform-value-box h3 {
        font-size: 1.5rem;
    }

    .value-list li {
        padding: 0.8rem;
    }

    .value-list li span:last-child {
        font-size: 0.95rem;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .game-container {
        grid-template-columns: 1fr;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .game-info-header {
        padding: 1.5rem;
    }

    .game-info-header .game-detail-title {
        font-size: 1.6rem;
    }

    .game-iframe {
        height: 510px;
    }

    .game-cover-image {
        max-width: 250px;
        max-height: 180px;
        margin-bottom: 1.5rem;
    }

    .play-button-large {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .action-button {
        font-size: 0.95rem;
        padding: 0.9rem;
    }

    .sidebar-section {
        padding: 1.2rem;
    }

    .features-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .categories-header h2 {
        font-size: 2rem;
    }

    .categories-description {
        font-size: 1rem;
    }

    .category-icon-wrapper {
        width: 70px;
        height: 70px;
    }

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

    .category-card h3 {
        font-size: 1.3rem;
    }

    .games-header h2 {
        font-size: 2rem;
    }

    .games-description {
        font-size: 1rem;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .game-image {
        height: 160px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .footer-column:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Category Banner */
    .category-banner {
        padding: 2.5rem 0 2rem;
    }
    
    .category-icon-large {
        font-size: 3rem;
    }
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .category-subtitle {
        font-size: 1rem;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.5rem;
    }
    
    .features-title {
        font-size: 1.5rem;
    }
    
    /* Category Sections */
    .category-about-section,
    .category-features-section,
    .category-why-section,
    .category-types-section,
    .category-who-section {
        padding: 2.5rem 0;
    }
    
    /* List Items */
    .feature-item,
    .why-item,
    .type-item,
    .who-item {
        padding-left: 2rem;
        font-size: 0.95rem;
    }
    
    .feature-icon {
        font-size: 1.8rem;
    }
    
    .who-item::before {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
    
    .who-intro {
        font-size: 1rem;
    }
    
    /* Keep existing 480px styles below */
    .games-grid {
        grid-template-columns: 1fr;
    }

    .games-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }

    .games-header h2 {
        font-size: 1.8rem;
    }

    .game-image {
        height: 180px;
    }

    .game-title {
        font-size: 1rem;
    }

    .btn-load-more {
        padding: 0.9rem 2.5rem;
        font-size: 0.95rem;
    }

    .footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column:first-child {
        grid-column: 1;
    }

    .footer-column h4 {
        font-size: 1.1rem;
    }

    .social-link {
        width: 38px;
        height: 38px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }

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

    .hero h1 {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.85rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        padding: 1rem;
    }

    .hero-description p {
        font-size: 0.9rem;
    }

    .game-icons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        padding: 1rem;
    }

    .game-icon-item {
        font-size: 1.8rem;
        padding: 0.8rem;
    }

    .hero-decoration {
        min-height: 250px;
    }

    .stat-item-small {
        padding: 0.7rem 1rem;
    }

    .stat-num {
        font-size: 1.5rem;
    }

    .stat-text {
        font-size: 0.75rem;
    }

    .about-content {
        padding: 1.5rem 1rem;
    }

    .about-content h2 {
        font-size: 1.5rem;
    }

    .about-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }

    .about-header h2 {
        font-size: 1.8rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
    }

    .stat-icon {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .about-description h3,
    .about-features h3 {
        font-size: 1.3rem;
    }

    .about-description,
    .about-features {
        padding: 1.5rem;
    }

    .features-list li {
        margin-bottom: 1.2rem;
    }

    .section-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }

    .features-header h2 {
        font-size: 1.8rem;
    }

    .features-subtitle {
        font-size: 1.3rem;
    }

    .platform-value-box {
        padding: 1.5rem 1rem;
    }

    .platform-value-box h3 {
        font-size: 1.3rem;
    }

    .value-list li {
        flex-direction: row;
        padding: 0.75rem;
    }

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

    .value-list li span:last-child {
        font-size: 0.9rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-content h4 {
        font-size: 1.1rem;
    }

    .feature-content p {
        font-size: 0.9rem;
    }

    section {
        padding: 2rem 0;
    }

    .categories-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }

    .categories-header h2 {
        font-size: 1.8rem;
    }

    .category-icon-wrapper {
        width: 60px;
        height: 60px;
    }

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

    .category-card h3 {
        font-size: 1.2rem;
    }

    .category-count {
        font-size: 0.75rem;
        padding: 0.25rem 0.8rem;
    }

    .category-description {
        font-size: 0.9rem;
    }

    .btn-category {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ==================== Optimized Category Page Styles ==================== */

/* Category Banner - Clean & Minimal */
.category-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.category-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.category-banner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.category-icon-large {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: floatIcon 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.category-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
    letter-spacing: -0.5px;
}

.category-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* About Section - Enhanced */
.category-about-section {
    background: white;
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
    text-align: left;
    margin-bottom: 0;
}

/* Features Section - List Layout */
.category-features-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 0;
}

.features-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.features-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.feature-item:first-child {
    padding-top: 0;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item:hover {
    padding-left: 1rem;
}

.feature-item:hover .feature-icon {
    transform: scale(1.2);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    line-height: 1;
    transition: transform 0.3s;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.feature-text {
    flex: 1;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.feature-text strong {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.15rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Why Special Section - Enhanced List */
.category-why-section {
    background: white;
    padding: 5rem 0;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
}

.why-item {
    padding: 2rem 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    position: relative;
    padding-left: 3rem;
    transition: all 0.3s;
}

.why-item:first-child {
    padding-top: 0;
}

.why-item:last-child {
    border-bottom: none;
}

.why-item:hover {
    padding-left: 3.5rem;
}

.why-item::before {
    content: '★';
    position: absolute;
    left: 0;
    top: 2rem;
    color: #FFD700;
    font-size: 1.8rem;
    font-weight: bold;
    transition: transform 0.3s;
}

.why-item:first-child::before {
    top: 0;
}

.why-item:hover::before {
    transform: rotate(72deg) scale(1.2);
}

.why-item strong {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.15rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Game Types Section - Enhanced List */
.category-types-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 0;
}

.types-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
}

.type-item {
    padding: 2rem 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    position: relative;
    padding-left: 3rem;
    transition: all 0.3s;
}

.type-item:first-child {
    padding-top: 0;
}

.type-item:last-child {
    border-bottom: none;
}

.type-item:hover {
    padding-left: 3.5rem;
    background: linear-gradient(90deg, rgba(76, 175, 80, 0.05) 0%, transparent 100%);
}

.type-item::before {
    content: '🎮';
    position: absolute;
    left: 0;
    top: 2rem;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.type-item:first-child::before {
    top: 0;
}

.type-item:hover::before {
    transform: scale(1.2);
}

.type-item strong {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.15rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Who Should Play Section - Enhanced */
.category-who-section {
    background: white;
    padding: 5rem 0;
}

.who-intro {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #444;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.who-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
}

.who-item {
    position: relative;
    padding: 1.8rem 0 1.8rem 3.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.who-item:first-child {
    padding-top: 0;
}

.who-item:last-child {
    border-bottom: none;
}

.who-item:hover {
    padding-left: 4rem;
    background: linear-gradient(90deg, rgba(76, 175, 80, 0.05) 0%, transparent 100%);
}

.who-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1.8rem;
    color: white;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
    transition: transform 0.3s;
}

.who-item:first-child::before {
    top: 0;
}

.who-item:hover::before {
    transform: scale(1.1);
}

/* Top Rated Section */
.category-top-rated-section {
    background: #f8f9fa;
    padding: 4rem 0 2rem;
}

.category-top-rated-section .games-grid {
    margin-top: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
}

/* Top Rated Card - Horizontal Layout */
.top-rated-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    gap: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
}

.top-rated-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.top-rated-card:hover::before {
    transform: scaleX(1);
}

.top-rated-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
}

/* Top Rated Image Section */
.top-rated-image-wrapper {
    width: 180px;
    min-width: 180px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.top-rated-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.top-rated-card:hover .top-rated-image {
    transform: scale(1.1);
}

.top-rated-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
    z-index: 2;
}

.badge-icon {
    font-size: 0.9rem;
}

.badge-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Top Rated Content Section */
.top-rated-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.top-rated-header {
    margin-bottom: 0.8rem;
}

.top-rated-title {
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}

.top-rated-category {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.top-rated-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Top Rated Footer */
.top-rated-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.top-rated-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars {
    font-size: 1rem;
    line-height: 1;
}

.rating-number {
    font-size: 0.95rem;
    font-weight: 600;
    color: #FFD700;
}

/* Play Now Button */
.btn-play-now {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-play-now::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-play-now:hover::before {
    width: 300px;
    height: 300px;
}

.btn-play-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(76, 175, 80, 0.4);
}

.play-icon {
    font-size: 0.8rem;
    transition: transform 0.3s;
    position: relative;
    z-index: 1;
}

.btn-play-now:hover .play-icon {
    transform: translateX(3px);
}

.btn-play-now span:first-child {
    position: relative;
    z-index: 1;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
}

/* All Games Section */
.all-games-section {
    background: white;
    padding: 4rem 0;
}

.all-games-section .section-title {
    text-align: center;
    font-size: 2rem;
}

.all-games-section .section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Responsive for New Category Styles */
@media (max-width: 768px) {
    .game-card-featured a {
        flex-wrap: wrap;
    }
    .category-banner {
        padding: 3rem 0 2rem;
    }

    .category-icon-large {
        font-size: 3.5rem;
    }

    .category-title {
        font-size: 2rem;
    }

    .category-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .category-about-section,
    .category-features-section,
    .category-why-section,
    .category-types-section,
    .category-who-section,
    .category-top-rated-section,
    .all-games-section {
        padding: 2.5rem 0;
    }
    
    /* Top Rated Cards Responsive */
    .category-top-rated-section .games-grid {
        grid-template-columns: 1fr;
    }
    
    .top-rated-card {
        flex-direction: column;
    }
    
    .top-rated-image-wrapper {
        width: 100%;
        min-width: 100%;
        height: 200px;
    }
    
    .top-rated-content {
        padding: 1.2rem;
    }
    
    .top-rated-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .btn-play-now {
        width: 100%;
        justify-content: center;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .about-text,
    .who-intro {
        font-size: 0.95rem;
        text-align: left;
    }

    .feature-text,
    .why-item,
    .type-item,
    .who-item {
        font-size: 0.9rem;
    }

    .why-item,
    .type-item {
        padding-left: 1.5rem;
    }

    .why-item::before,
    .type-item::before {
        font-size: 1.2rem;
        left: -5px;
    }

    .who-item {
        padding-left: 1.8rem;
    }

    .who-item::before {
        font-size: 1rem;
        left: -5px;
    }
}

/* Related Games Section Styles */
.related-games {
    background: #f8f9fa;
    padding: 4rem 0;
}

.related-games h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.related-games .section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.related-games .games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Related Game Card Styles */
.related-game-card {
    background: white;
    border-radius: 16px;
    border: 2px solid #f0f0f0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.related-game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: #4CAF50;
}

.related-game-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-game-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.related-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.related-game-content {
    padding: 1.5rem;
}

.related-game-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.8rem 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6rem;
}

.related-game-category {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.related-game-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.related-game-rating .stars {
    font-size: 1rem;
    line-height: 1;
}

.related-game-rating .rating-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #FF9800;
}

.related-game-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive for Related Games */
@media (max-width: 768px) {
    .related-games {
        padding: 3rem 0;
    }
    
    .related-games h2 {
        font-size: 1.6rem;
    }
    
    .related-games .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .related-game-image {
        height: 180px;
    }
    
    .related-game-content {
        padding: 1.2rem;
    }
}
