<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Game Library Section */
.game-library {
    padding: 100px 0 0px;
}

.section-title {
    font-family: var(--font-main);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
    text-shadow: var(--neon-glow);
}

.game-library-title {
    font-family: var(--font-main);
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 30px;
    color: var(--accent);
    text-shadow: var(--neon-glow);
}

.game-library-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

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

.game-zone {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid var(--primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-zone:hover {
    transform: translateY(-10px);
    box-shadow: var(--neon-glow);
}

.game-zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent);
}

.game-zone-title {
    font-family: var(--font-main);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.game-zone-title .tm {
    font-size: 0.8rem;
    vertical-align: super;
    margin-left: 5px;
}

.game-zone-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    margin-bottom: 20px;
    overflow: hidden;
}

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

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

.game-zone-features {
    margin-bottom: 20px;
}

.game-zone-feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.game-zone-feature-icon {
    margin-right: 10px;
    color: var(--accent);
}

.game-zone-cta {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--dark);
    font-family: var(--font-main);
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.game-zone-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.6);
}

/* SEO Block */
.seo-block {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 40px;
    margin: 60px auto;
    max-width: 900px;
    border: 1px solid var(--secondary);
    position: relative;
}

.seo-block::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 12px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    z-index: -1;
    opacity: 0.3;
}

.seo-block p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.seo-block strong {
    color: var(--accent);
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 60px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--dark);
    font-family: var(--font-main);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
    font-size: 1.1rem;
    margin: 10px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.8);
}



.game-zone-feature-icon {
    margin-right: 10px;
    color: var(--accent);
    font-size: 1.2rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .game-library-title {
        font-size: 2.2rem;
    }
    
    .seo-block {
        padding: 20px;
    }
    
    
}</pre></body></html>