* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', 'Orbitron', monospace;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin: 20px 0;
    padding: 20px 30px;
    border: 2px solid #ff6b35;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.2);
}

.logo h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff6b35;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
    animation: glow 3s ease-in-out infinite alternate;
}

.tagline {
    font-size: 0.9rem;
    color: #00ff88;
    font-weight: 300;
    display: block;
    margin-top: 5px;
}

@keyframes glow {
    from { text-shadow: 0 0 15px rgba(255, 107, 53, 0.5); }
    to { text-shadow: 0 0 25px rgba(255, 107, 53, 0.8); }
}

.nav {
    display: flex;
    gap: 15px;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 25px;
    padding: 12px 24px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
}

.nav-btn:hover {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-2px);
}

.nav-btn.active {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    border-color: #ff6b35;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

/* Section Management */
.section {
    display: none;
    min-height: 80vh;
    padding: 30px 0;
}

.section.active {
    display: block;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 50px 0;
    padding: 50px 0;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    min-width: 200px;
}

.hero-btn.primary {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.hero-btn.secondary {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

/* Basketball Animation */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.basketball-animation {
    position: relative;
    width: 300px;
    height: 300px;
}

.basketball {
    font-size: 4rem;
    position: absolute;
    animation: bounce 2s ease-in-out infinite;
    left: 50%;
    transform: translateX(-50%);
}

.hoop {
    font-size: 3rem;
    position: absolute;
    top: 20px;
    right: 30px;
    animation: sway 3s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { top: 200px; }
    50% { top: 80px; }
}

@keyframes sway {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* Features Section */
.features {
    margin: 60px 0;
}

.features h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 1.3rem;
    color: #ff6b35;
    margin-bottom: 10px;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Game Header */
.game-header {
    text-align: center;
    margin-bottom: 40px;
}

.game-header h2 {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 15px;
}

.game-header p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 20px;
}

.game-info {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.info-tag {
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid #00ff88;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 0.9rem;
    color: #00ff88;
    font-weight: 600;
}

/* Game Container */
.game-container-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    margin-bottom: 40px;
}

.game-container {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #ff6b35;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

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

.game-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 107, 53, 0.3);
    border-top: 4px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Game Controls */
.game-controls {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #00ff88;
    height: fit-content;
}

.game-controls h3 {
    color: #00ff88;
    margin-bottom: 20px;
    text-align: center;
}

.controls-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.control-group h4 {
    color: #ff6b35;
    margin-bottom: 10px;
    text-align: center;
}

.control-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.control-item .key {
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid #ff6b35;
    border-radius: 6px;
    padding: 4px 8px;
    font-weight: 700;
    font-size: 0.8rem;
    color: #ff6b35;
}

/* Game Features List */
.game-features {
    margin: 40px 0;
}

.game-features h3 {
    text-align: center;
    font-size: 2rem;
    color: #00ff88;
    margin-bottom: 30px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.feature-item {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid #00ff88;
    border-radius: 8px;
    padding: 15px 20px;
    text-align: center;
    font-weight: 600;
    color: #00ff88;
}

/* About Section */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content h2 {
    text-align: center;
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid #00ff88;
}

.about-card h3 {
    color: #00ff88;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.about-card p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-card ul {
    list-style: none;
    padding: 0;
}

.about-card li {
    color: #fff;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-card a {
    color: #ff6b35;
    text-decoration: none;
}

.about-card a:hover {
    text-decoration: underline;
}

.credits {
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #ff6b35;
    text-align: center;
}

.credits h3 {
    color: #ff6b35;
    margin-bottom: 15px;
}

.credits p {
    color: #ccc;
    line-height: 1.6;
}

.credits a {
    color: #00ff88;
    text-decoration: none;
}

.credits a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
    border-top: 2px solid rgba(255, 107, 53, 0.3);
    color: #ccc;
}

.footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.footer-links a:hover {
    color: #00ff88;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .game-container-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .game-header h2 {
        font-size: 2rem;
    }
}

/* SEO Content Section */
.seo-content {
    margin: 60px 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.seo-content h3 {
    color: #00ff88;
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
}

.seo-content h4 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin: 25px 0 15px 0;
}

.seo-text {
    line-height: 1.8;
    font-size: 1.1rem;
}

.seo-text p {
    color: #ccc;
    margin-bottom: 20px;
}

.seo-text strong {
    color: #fff;
    font-weight: 700;
}

.seo-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.seo-text li {
    color: #ccc;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
}

.seo-text li strong {
    color: #00ff88;
}

/* Enhanced responsive design for SEO content */
@media (max-width: 768px) {
    .seo-content {
        padding: 25px;
        margin: 40px 0;
    }
    
    .seo-content h3 {
        font-size: 1.6rem;
    }
    
    .seo-content h4 {
        font-size: 1.2rem;
    }
    
    .seo-text {
        font-size: 1rem;
    }
}

/* Game Information Box */
.game-info-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    border: 2px solid #ff6b35;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item strong {
    color: #ff6b35;
    font-weight: 700;
    min-width: 100px;
}

.info-item span {
    color: #ccc;
    text-align: right;
    flex: 1;
}

/* Game Tags */
.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tag {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 255, 136, 0.3);
}

/* Game Description Section */
.game-description-section {
    margin: 50px 0;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.game-description-section h3 {
    color: #00ff88;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.game-description-section p {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: justify;
}

.game-description-section strong {
    color: #fff;
    font-weight: 700;
}

/* Similar Games Section */
.similar-games {
    margin: 50px 0;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.similar-games h3 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
}

.similar-games > p {
    color: #ccc;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.similar-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.similar-game {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.similar-game:hover {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-3px);
}

.similar-game h4 {
    color: #ff6b35;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.similar-game p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* How to Play Section */
.how-to-play-content {
    max-width: 900px;
    margin: 0 auto;
}

.how-to-play-content h2 {
    text-align: center;
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 40px;
}

.guide-sections {
    margin-bottom: 50px;
}

.guide-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.guide-section:hover {
    background: rgba(0, 255, 136, 0.05);
    border-color: #00ff88;
}

.guide-section h3 {
    color: #00ff88;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.guide-section h4 {
    color: #ff6b35;
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
}

.guide-section p {
    color: #ccc;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 15px;
}

.guide-section ol {
    color: #ccc;
    margin-left: 20px;
    line-height: 1.6;
}

.guide-section li {
    margin: 8px 0;
    font-size: 1rem;
}

/* Controls Detailed */
.controls-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.control-set h4 {
    color: #ff6b35;
    margin-bottom: 15px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6b35;
}

.control-set ul {
    list-style: none;
    padding: 0;
}

.control-set li {
    color: #ccc;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.control-set strong {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.2);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.9rem;
    min-width: 100px;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    background: rgba(255, 107, 53, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.faq-section h3 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.05);
}

.faq-item h4 {
    color: #ff6b35;
    font-size: 1.2rem;
    margin-bottom: 10px;
    cursor: pointer;
}

.faq-item p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
}

/* Enhanced responsive design for new sections */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .info-item span {
        text-align: left;
    }
    
    .game-tags {
        justify-content: center;
    }
    
    .similar-games-grid {
        grid-template-columns: 1fr;
    }
    
    .controls-detailed {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .how-to-play-content h2 {
        font-size: 2.2rem;
    }
    
    .guide-section {
        padding: 20px;
    }
    
    .faq-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .game-info-box {
        padding: 20px;
        margin: 30px 0;
    }
    
    .tag {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .game-description-section, 
    .similar-games {
        padding: 20px;
        margin: 30px 0;
    }
    
    .guide-section h3 {
        font-size: 1.4rem;
    }
    
    .faq-item h4 {
        font-size: 1.1rem;
    }
}

/* Compact Hero Section for Homepage */
.hero-compact {
    text-align: center;
    padding: 30px 0;
    margin-bottom: 20px;
}

.hero-compact .hero-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-compact .hero-content p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Home Game Section */
.home-game-section {
    margin: 40px 0;
}

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

.game-header-home h3 {
    font-size: 2.2rem;
    color: #ff6b35;
    margin-bottom: 10px;
}

.game-header-home p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 20px;
}

.game-container-home {
    max-width: 1000px;
    margin: 0 auto 30px auto;
}

.game-container-home .game-container {
    height: 500px;
}

.game-container-home iframe {
    height: 500px;
}

/* Quick Controls */
.quick-controls {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    margin: 30px auto;
    max-width: 600px;
    border: 2px solid #00ff88;
}

.quick-controls h4 {
    color: #00ff88;
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.controls-compact {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.control-compact {
    text-align: center;
    flex: 1;
}

.control-compact .key {
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid #ff6b35;
    border-radius: 8px;
    padding: 8px 12px;
    font-weight: 700;
    color: #ff6b35;
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.control-compact span:last-child {
    color: #ccc;
    font-size: 0.9rem;
}

/* Blog Section */
.blog-content {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-content h2 {
    text-align: center;
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

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

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-post {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.blog-post:hover {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-5px);
}

.blog-post h3 {
    color: #00ff88;
    font-size: 1.4rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-meta {
    color: #ff6b35;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    padding-bottom: 8px;
}

.blog-post p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1rem;
}

.blog-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.blog-tag {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: lowercase;
}

/* SEO Blog Content */
.seo-blog-content {
    background: rgba(255, 107, 53, 0.05);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    margin-top: 40px;
}

.seo-blog-content h3 {
    color: #ff6b35;
    font-size: 2.2rem;
    margin-bottom: 25px;
    text-align: center;
}

.seo-blog-content h4 {
    color: #00ff88;
    font-size: 1.4rem;
    margin: 25px 0 15px 0;
}

.seo-blog-content .seo-text {
    line-height: 1.8;
    font-size: 1.1rem;
}

.seo-blog-content p {
    color: #ccc;
    margin-bottom: 20px;
}

.seo-blog-content strong {
    color: #fff;
    font-weight: 700;
}

.seo-blog-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.seo-blog-content li {
    color: #ccc;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
}

.seo-blog-content li strong {
    color: #00ff88;
}

/* Responsive Updates for New Sections */
@media (max-width: 768px) {
    .hero-compact .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .game-header-home h3 {
        font-size: 1.8rem;
    }
    
    .controls-compact {
        flex-direction: column;
        gap: 15px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-content h2 {
        font-size: 2.2rem;
    }
    
    .seo-blog-content {
        padding: 25px;
    }
    
    .seo-blog-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-compact .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .game-header-home h3 {
        font-size: 1.5rem;
    }
    
    .quick-controls {
        padding: 15px;
        margin: 20px auto;
    }
    
    .blog-post {
        padding: 20px;
    }
    
    .blog-keywords {
        gap: 5px;
    }
    
    .blog-tag {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}

/* Legal Pages Styles */
.legal-content {
    padding: 2rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: calc(100vh - 200px);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    color: #e0e0e0;
}

.legal-container h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #00ff41;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.last-updated {
    text-align: center;
    color: #888;
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.intro-text {
    font-size: 1.1rem;
    color: #b0b0b0;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.legal-section {
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 65, 0.1);
}

.legal-section h2 {
    font-family: 'Orbitron', monospace;
    color: #00ff41;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 255, 65, 0.3);
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    color: #ffba08;
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem 0;
    font-weight: 600;
}

.legal-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #d0d0d0;
}

.legal-section ul {
    margin: 1rem 0 1rem 1.5rem;
    color: #d0d0d0;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.legal-section a {
    color: #00ff41;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #ffba08;
    text-decoration: underline;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-method {
    background: rgba(0, 255, 65, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 65, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 65, 0.4);
}

.contact-method h2 {
    font-size: 1.2rem;
    color: #00ff41;
    margin-bottom: 1rem;
    font-family: 'Rajdhani', sans-serif;
}

.contact-method p {
    margin-bottom: 0.5rem;
    color: #d0d0d0;
}

.contact-method strong {
    color: #ffba08;
}

.contact-info, .response-info, .faq-section, .important-note {
    margin-top: 2rem;
}

.response-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.response-item {
    background: rgba(255, 186, 8, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 186, 8, 0.2);
    text-align: center;
}

.response-item h3 {
    color: #ffba08;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.response-item p {
    color: #d0d0d0;
    font-weight: bold;
    margin: 0;
}

.important-note {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
}

.important-note h2 {
    color: #ff4444;
}

/* Cookie Policy Specific Styles */
.cookie-table {
    margin: 1.5rem 0;
}

.cookie-table h3 {
    color: #00ff41;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem 0;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    padding-bottom: 0.3rem;
}

/* Footer Link Styles */
.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.footer-links a {
    color: #00ff41;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffba08;
    text-decoration: underline;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-container {
        padding: 0 1rem;
    }
    
    .legal-container h1 {
        font-size: 2rem;
    }
    
    .legal-section {
        padding: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .response-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .response-grid {
        grid-template-columns: 1fr;
    }
}

/* Game Controls Bar */
.game-controls-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px 8px 0 0;
    border-bottom: 2px solid #ff6b35;
    margin-bottom: -2px;
    z-index: 10;
    position: relative;
}

.control-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #00ff88;
    border-radius: 6px;
    color: #fff;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    min-width: 40px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00ff88;
    transform: translateY(-1px);
}

.control-btn:active {
    transform: translateY(0);
}

.game-selector {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #ff6b35;
    border-radius: 6px;
    color: #fff;
    padding: 8px 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.game-selector:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.game-selector option {
    background: #1a1a2e;
    color: #fff;
    padding: 8px;
}

/* Enhanced Game Loading */
.loading-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 15px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #00ff88);
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -30px;
    height: 100%;
    width: 30px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { left: -30px; }
    100% { left: 100%; }
}

/* Game Error States */
.game-error {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    z-index: 20;
    border-radius: 12px;
}

.error-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff6b35;
}

.game-error h4 {
    color: #ff6b35;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.game-error p {
    margin-bottom: 15px;
    color: #ccc;
}

.game-error ul {
    text-align: left;
    margin-bottom: 25px;
    color: #ccc;
}

.game-error li {
    margin-bottom: 8px;
}

.retry-btn {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    border: none;
    border-radius: 8px;
    color: white;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.retry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Fullscreen Support */
.game-container.fullscreen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999 !important;
    background: #000 !important;
}

.game-container.fullscreen iframe {
    width: 100% !important;
    height: 100% !important;
}

.game-container.fullscreen .game-controls-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.8);
}

/* All Games Section */
.games-content {
    padding: 30px 0;
}

.games-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

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

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-card:hover {
    border-color: #00ff88;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
}

.game-card.featured {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.game-card.featured:hover {
    border-color: #ff6b35;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.game-preview {
    text-align: center;
    margin-bottom: 20px;
}

.game-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    animation: bounce 2s ease-in-out infinite;
}

.game-info h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    color: #ffd700;
    font-size: 1rem;
}

.rating-text {
    color: #ccc;
    font-size: 0.9rem;
}

.game-info p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.feature-tag {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.game-actions {
    display: flex;
    gap: 12px;
}

.play-btn, .info-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.play-btn {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000;
}

.play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

.info-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid #fff;
}

.info-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Game Comparison Table */
.game-comparison {
    margin: 60px 0;
}

.game-comparison h3 {
    font-size: 2rem;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.comparison-table {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.comparison-table td {
    color: #ccc;
}

.comparison-table .featured-row {
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid #ff6b35;
}

.comparison-table .featured-row td {
    color: #fff;
}

/* Why Choose Games Section */
.games-why-choose {
    margin: 60px 0;
}

.games-why-choose h3 {
    font-size: 2rem;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.reason-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.reason-card:hover {
    border-color: #00ff88;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff6b35;
}

.reason-card h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.reason-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Game Info Modal */
.game-info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid #ff6b35;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    color: #ff6b35;
    font-size: 1.5rem;
    font-weight: 700;
}

.close-modal {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ff6b35;
}

.modal-body {
    padding: 25px 30px 30px;
}

.game-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.stat {
    color: #ccc;
    font-size: 0.9rem;
}

.stat strong {
    color: #00ff88;
}

.game-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.game-features h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.game-features ul {
    list-style: none;
    padding: 0;
}

.game-features li {
    color: #ccc;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.game-features li::before {
    content: '✓';
    color: #00ff88;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.modal-actions .play-btn,
.modal-actions .close-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.modal-actions .close-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid #fff;
}

.modal-actions .close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .game-card {
        padding: 20px;
    }
    
    .games-content h2 {
        font-size: 2rem;
    }
    
    .games-intro {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reason-card {
        padding: 25px 15px;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header,
    .modal-body {
        padding: 20px;
    }
    
    .game-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .game-controls-bar {
        flex-wrap: wrap;
        gap: 10px;
        padding: 15px;
    }
    
    .control-btn {
        min-width: auto;
        padding: 8px;
    }
    
    .game-selector {
        min-width: 150px;
        order: -1;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .game-card {
        padding: 15px;
    }
    
    .game-icon {
        font-size: 3rem;
    }
    
    .games-content h2 {
        font-size: 1.8rem;
    }
    
    .game-comparison h3,
    .games-why-choose h3 {
        font-size: 1.5rem;
    }
    
    .reason-icon {
        font-size: 2.5rem;
    }
    
    .reason-card h4 {
        font-size: 1.2rem;
    }
    
    .game-features {
        justify-content: center;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
}

/* Coming Soon Game Card */
.coming-soon-card {
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0.7;
}

.coming-soon-card:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    opacity: 0.9;
}

.coming-soon-card .game-icon {
    color: #888;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.coming-soon-card h3 {
    color: #888;
}

.coming-soon-card .rating-text {
    color: #666;
}

.coming-soon-card p {
    color: #777;
}

.coming-soon-card .feature-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #888;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Disabled Buttons */
.play-btn:disabled, .info-btn:disabled {
    background: rgba(255, 255, 255, 0.05);
    color: #666;
    cursor: not-allowed;
    opacity: 0.5;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.play-btn:disabled:hover, .info-btn:disabled:hover {
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.05);
}

/* Coming Soon Row in Table */
.coming-soon-row {
    opacity: 0.6;
    font-style: italic;
}

.coming-soon-row td {
    color: #888 !important;
}

/* Enhanced Game Loading States */
.load-success {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 100;
    animation: slideInRight 0.3s ease, fadeOut 0.5s ease 2.5s forwards;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

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

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.temporary-message {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 107, 53, 0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 100;
    animation: slideUpFade 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

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

/* Enhanced Loading Progress */
.loading-progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-top: 20px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #00ff88, #ff6b35);
    background-size: 200% 100%;
    border-radius: 3px;
    width: 0%;
    transition: width 0.4s ease;
    position: relative;
    animation: gradientShift 2s ease-in-out infinite;
}

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

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -40px;
    height: 100%;
    width: 40px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -40px; }
    100% { left: 100%; }
}

/* Enhanced Game Loading */
.game-loading {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 107, 53, 0.2);
    border-top: 5px solid #ff6b35;
    border-right: 5px solid #00ff88;
    border-radius: 50%;
    animation: spinEnhanced 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    margin-bottom: 25px;
}

@keyframes spinEnhanced {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

#loading-text {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
}

/* Enhanced Game Controls */
.game-controls-bar {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 255, 136, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
}

.control-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #00ff88;
    border-radius: 8px;
    color: #fff;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    min-width: 45px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

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

.control-btn:hover {
    background: rgba(0, 255, 136, 0.15);
    border-color: #00ff88;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.control-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

/* Enhanced Fullscreen Styles */
.game-container.fullscreen {
    background: #000 !important;
    z-index: 10000 !important;
}

.game-container.fullscreen .game-controls-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid #ff6b35;
    animation: slideDownFade 0.3s ease;
}

@keyframes slideDownFade {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.game-container.fullscreen iframe {
    width: 100vw !important;
    height: 100vh !important;
    border: none !important;
}

/* Mobile Gaming Optimization */
@media (max-width: 768px) {
    .game-container-home {
        margin: 0 -20px; /* Extend to screen edges on mobile */
    }
    
    .game-container {
        border-radius: 0; /* Remove rounded corners on mobile */
        margin: 0;
    }
    
    .game-container iframe {
        height: 400px; /* Optimized height for mobile */
    }
    
    .game-controls-bar {
        padding: 12px;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .control-btn {
        min-width: 50px;
        height: 44px; /* Larger touch targets */
        font-size: 1.2rem;
    }
    
    .game-selector {
        min-width: 120px;
        font-size: 0.9rem;
        padding: 10px;
    }
    
    /* Touch-friendly navigation */
    .nav-btn {
        padding: 15px 20px; /* Larger touch targets */
        font-size: 1rem;
        min-height: 44px;
    }
    
    /* Improved mobile game loading */
    .game-loading {
        padding: 20px;
    }
    
    .loading-spinner {
        width: 50px;
        height: 50px;
        border-width: 4px;
    }
    
    #loading-text {
        font-size: 1rem;
    }
    
    .load-success {
        top: 10px;
        right: 10px;
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .temporary-message {
        bottom: 10px;
        padding: 8px 15px;
        font-size: 0.8rem;
        margin: 0 10px;
        max-width: calc(100% - 20px);
    }
}

@media (max-width: 480px) {
    .game-container iframe {
        height: 350px; /* Smaller height for very small screens */
    }
    
    .game-controls-bar {
        padding: 10px;
        gap: 5px;
    }
    
    .control-btn {
        min-width: 44px;
        height: 44px;
        padding: 8px;
        font-size: 1rem;
    }
    
    .nav-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .hero-compact .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .game-header-home h3 {
        font-size: 1.4rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .control-btn:hover {
        transform: none; /* Disable hover effects on touch devices */
        box-shadow: none;
    }
    
    .control-btn:active {
        background: rgba(0, 255, 136, 0.2);
        transform: scale(0.95);
    }
    
    .game-card:hover {
        transform: none;
        box-shadow: none;
    }
    
    .feature-card:hover {
        transform: none;
        border-color: transparent;
        background: rgba(255, 255, 255, 0.05);
    }
}

/* High DPI Display Optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .control-btn {
        border-width: 1px; /* Thinner borders on high DPI displays */
    }
    
    .game-controls-bar {
        border-width: 1px;
    }
    
    .progress-bar {
        height: 4px;
    }
}

/* Landscape Mobile Optimization */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .game-container iframe {
        height: calc(100vh - 100px); /* Use more screen space in landscape */
    }
    
    .hero-compact {
        padding: 15px 0;
    }
    
    .game-header-home {
        margin-bottom: 15px;
    }
    
    .quick-controls {
        margin: 15px auto;
        padding: 15px;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .loading-spinner {
        animation: none;
        border-top-color: #ff6b35;
        border-right-color: #00ff88;
    }
    
    .progress-bar {
        animation: none;
    }
    
    .progress-bar::after {
        animation: none;
    }
    
    #loading-text {
        animation: none;
    }
    
    .control-btn::before {
        display: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .control-btn {
        border-width: 3px;
        border-color: #fff;
    }
    
    .game-loading {
        background: #000;
    }
    
    .progress-bar {
        background: #fff;
    }
}

/* Focus Indicators for Accessibility */
.control-btn:focus-visible,
.nav-btn:focus-visible,
.play-btn:focus-visible,
.info-btn:focus-visible {
    outline: 3px solid #00ff88;
    outline-offset: 2px;
}

/* Enhanced Blog Functionality */
.blog-controls {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.blog-search {
    display: flex;
    gap: 10px;
    flex: 1;
    min-width: 300px;
}

.search-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.search-input::placeholder {
    color: #888;
}

.search-btn {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    border: none;
    border-radius: 8px;
    color: #000;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

.blog-filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-select {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    padding: 10px 15px;
    color: #fff;
    font-size: 0.9rem;
    font-family: 'Rajdhani', sans-serif;
    cursor: pointer;
    min-width: 150px;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.filter-select option {
    background: #1a1a2e;
    color: #fff;
    padding: 8px;
}

/* Enhanced Blog Posts */
.blog-post {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.blog-post:hover {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
}

.blog-post.expanded {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.08);
}

.blog-header {
    margin-bottom: 20px;
}

.blog-header h3 {
    color: #00ff88;
    font-size: 1.4rem;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-post:hover .blog-header h3 {
    color: #fff;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.blog-meta span {
    color: #ccc;
    font-weight: 500;
}

.blog-meta .author {
    color: #ff6b35;
    font-weight: 600;
}

.blog-meta .category {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.blog-meta .date {
    color: #888;
}

.blog-meta .read-time {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.8rem;
}

.blog-preview > p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1rem;
}

.blog-content-preview {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin: 15px 0;
}

.blog-post.expanded .blog-content-preview {
    max-height: 500px;
}

.blog-content-preview h4 {
    color: #ff6b35;
    font-size: 1.1rem;
    margin: 15px 0 10px 0;
    font-weight: 600;
}

.blog-content-preview ul {
    margin: 10px 0 15px 20px;
    color: #ccc;
}

.blog-content-preview li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.blog-content-preview strong {
    color: #00ff88;
    font-weight: 600;
}

.blog-content-preview p {
    color: #ccc;
    line-height: 1.6;
    margin: 15px 0;
}

.read-more-btn {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    border: none;
    border-radius: 8px;
    color: white;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 15px;
    width: 100%;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.blog-post.expanded .read-more-btn {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000;
}

/* Author Profiles */
.author-profiles {
    margin: 60px 0;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.author-profiles h3 {
    color: #ff6b35;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
}

.authors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.author-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.author-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
    background: rgba(255, 107, 53, 0.1);
}

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

.author-card:hover::before {
    left: 100%;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b35, #00ff88);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.author-card:hover .author-avatar {
    transform: scale(1.1);
}

.author-info h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-title {
    color: #ff6b35;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.author-bio {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.author-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.author-stats span {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    margin: 40px 0;
    grid-column: 1 / -1;
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.no-results p {
    color: #888;
    margin-bottom: 25px;
    font-size: 1rem;
}

.clear-filters-btn {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    border: none;
    border-radius: 8px;
    color: #000;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.clear-filters-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

/* Blog Tags Enhancement */
.blog-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    margin-bottom: 15px;
}

.blog-tag {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: lowercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .blog-controls {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .blog-search {
        min-width: auto;
        width: 100%;
    }
    
    .blog-filters {
        width: 100%;
        justify-content: center;
    }
    
    .filter-select {
        min-width: 130px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-post {
        padding: 20px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .authors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .author-card {
        padding: 20px;
    }
    
    .author-profiles {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .blog-controls {
        padding: 15px;
        gap: 15px;
    }
    
    .search-input {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .search-btn {
        padding: 10px 12px;
        font-size: 1rem;
    }
    
    .filter-select {
        padding: 8px 12px;
        font-size: 0.8rem;
        min-width: 120px;
    }
    
    .blog-post {
        padding: 15px;
    }
    
    .blog-header h3 {
        font-size: 1.2rem;
    }
    
    .blog-meta {
        font-size: 0.8rem;
    }
    
    .blog-keywords {
        gap: 5px;
    }
    
    .blog-tag {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .author-stats {
        flex-direction: column;
        gap: 8px;
    }
}

/* Animation for blog transitions */
.blog-post {
    animation: slideInUp 0.5s ease forwards;
}

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

/* Search input animations */
.search-input:focus {
    animation: inputFocus 0.3s ease;
}

@keyframes inputFocus {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Author card selection animation */
.author-card.selected {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    transform: scale(1.02);
}

/* Blog loading states */
.blog-post.loading {
    opacity: 0.6;
    pointer-events: none;
}

.blog-post.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 1.5s infinite;
}

/* Dark mode blog adjustments */
@media (prefers-color-scheme: dark) {
    .search-input {
        background: rgba(0, 0, 0, 0.3);
    }
    
    .filter-select {
        background: rgba(0, 0, 0, 0.3);
    }
    
    .blog-post {
        background: rgba(0, 0, 0, 0.2);
    }
}

/* Game Screenshots Section */
.game-screenshots {
    margin: 60px 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.game-screenshots h3 {
    color: #00ff88;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.game-screenshots > p {
    color: #ccc;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.screenshot-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.screenshot-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.screenshot-item:hover img {
    transform: scale(1.05);
}

.mobile-screenshot {
    grid-column: span 1;
    max-width: 250px;
    margin: 0 auto;
}

.mobile-screenshot img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.screenshot-caption {
    padding: 20px;
    text-align: center;
}

.screenshot-caption h4 {
    color: #ff6b35;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.screenshot-caption p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.screenshots-cta {
    text-align: center;
    margin-top: 30px;
}

.cta-btn {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    border: none;
    border-radius: 12px;
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.6);
    background: linear-gradient(45deg, #ff8c42, #ffad42);
}

.cta-btn:active {
    transform: translateY(-1px);
}

/* Image Loading States */
.screenshot-item img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-item img.loaded,
.screenshot-item img[src] {
    opacity: 1;
}

/* Lazy Loading Placeholder */
.screenshot-item img[data-src] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    min-height: 200px;
}

/* Responsive Design for Screenshots */
@media (max-width: 1024px) {
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .mobile-screenshot {
        grid-column: span 2;
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .game-screenshots {
        padding: 25px;
        margin: 40px 0;
    }
    
    .game-screenshots h3 {
        font-size: 1.8rem;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mobile-screenshot {
        grid-column: span 1;
        max-width: 250px;
    }
    
    .screenshot-caption {
        padding: 15px;
    }
    
    .cta-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .game-screenshots {
        padding: 20px;
        margin: 30px 0;
    }
    
    .game-screenshots h3 {
        font-size: 1.5rem;
    }
    
    .screenshots-grid {
        gap: 15px;
    }
    
    .screenshot-caption h4 {
        font-size: 1.1rem;
    }
    
    .screenshot-caption p {
        font-size: 0.85rem;
    }
    
    .cta-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* High DPI Display Optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .screenshot-item img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Dark Mode Adjustments */
@media (prefers-color-scheme: dark) {
    .screenshot-item {
        background: rgba(0, 0, 0, 0.3);
    }
    
    .game-screenshots {
        background: rgba(0, 0, 0, 0.2);
    }
}

/* Social Sharing Section */
.social-sharing {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 255, 136, 0.1));
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    text-align: center;
}

.social-sharing h4 {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-bottom: 10px;
    font-weight: 700;
}

.social-sharing p {
    color: #ccc;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.sharing-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    min-width: 140px;
    text-transform: uppercase;
}

.share-btn.facebook {
    background: linear-gradient(45deg, #1877f2, #42a5f5);
    color: white;
}

.share-btn.twitter {
    background: linear-gradient(45deg, #1da1f2, #42a5f5);
    color: white;
}

.share-btn.whatsapp {
    background: linear-gradient(45deg, #25d366, #4caf50);
    color: white;
}

.share-btn.copy {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: white;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.share-btn:active {
    transform: translateY(-1px);
}

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

.share-stats {
    margin-top: 15px;
}

.share-count {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #00ff88;
}

/* Game Reviews Section */
.game-reviews {
    margin: 60px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.game-reviews h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 15px;
    font-weight: 700;
}

.game-reviews > p {
    text-align: center;
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Overall Rating Display */
.overall-rating {
    margin-bottom: 50px;
}

.rating-summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.big-rating {
    text-align: center;
    padding: 30px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.rating-number {
    font-size: 4rem;
    font-weight: 900;
    color: #ff6b35;
    display: block;
    line-height: 1;
}

.rating-stars {
    font-size: 2rem;
    margin: 10px 0;
}

.big-rating p {
    color: #ccc;
    margin: 0;
    font-size: 1.1rem;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: #ccc;
}

.rating-bar span:first-child {
    min-width: 30px;
    color: #ff6b35;
    font-weight: 600;
}

.rating-bar span:last-child {
    min-width: 40px;
    text-align: right;
    font-weight: 600;
}

.bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #00ff88);
    transition: width 0.3s ease;
}

/* Add Review Section */
.add-review {
    margin: 40px 0;
    padding: 30px;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 136, 0.2);
}

.add-review h4 {
    font-size: 1.5rem;
    color: #00ff88;
    margin-bottom: 20px;
    font-weight: 700;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rating-input {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.rating-input span {
    color: #ccc;
    font-weight: 600;
}

.star-rating {
    display: flex;
    gap: 5px;
}

.star {
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.3;
}

.star:hover,
.star.active {
    opacity: 1;
    transform: scale(1.2);
}

#reviewer-name, #review-text {
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

#reviewer-name:focus, #review-text:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

#review-text {
    min-height: 100px;
    resize: vertical;
}

.submit-review-btn {
    padding: 15px 30px;
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    align-self: flex-start;
}

.submit-review-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

/* User Reviews */
.user-reviews {
    margin-top: 50px;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.reviews-header h4 {
    font-size: 1.8rem;
    color: #ff6b35;
    font-weight: 700;
    margin: 0;
}

.review-sort {
    padding: 10px 15px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    background: rgba(255, 107, 53, 0.1);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    cursor: pointer;
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.review-item {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.review-item:hover {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.05);
    transform: translateY(-2px);
}

.review-item.featured-review {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.reviewer-name {
    font-weight: 700;
    color: #ff6b35;
    font-size: 1.1rem;
}

.review-rating {
    font-size: 1rem;
}

.review-date {
    color: #999;
    font-size: 0.9rem;
}

.helpful-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid #00ff88;
    border-radius: 8px;
    color: #00ff88;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.helpful-btn:hover {
    background: rgba(0, 255, 136, 0.3);
    transform: scale(1.05);
}

.review-text {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1rem;
}

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

.review-tag {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.load-more-reviews {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
}

.load-more-reviews:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Responsive Design for Social & Reviews */
@media (max-width: 768px) {
    .social-sharing {
        padding: 20px;
        margin: 30px 0;
    }
    
    .sharing-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .share-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .game-reviews {
        padding: 25px;
        margin: 40px 0;
    }
    
    .rating-summary {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .reviews-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .reviewer-info {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .social-sharing h4 {
        font-size: 1.3rem;
    }
    
    .game-reviews h3 {
        font-size: 2rem;
    }
    
    .rating-number {
        font-size: 3rem;
    }
    
    .review-item {
        padding: 20px;
    }
    
    .rating-input {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}