<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Base Styles */
:root {
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --accent-color: #8b5cf6;
    --text-color: #1f2937;
    --bg-color: #f9fafb;
    --card-bg: #ffffff;
    --header-color: #111827;
    --border-color: #e5e7eb;
    --shadow-color: rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Loading Animation */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loader {
    width: 60px;
    height: 60px;
    border: 6px solid var(--border-color);
    border-top: 6px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 1px 3px var(--shadow-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 2px 0;
    transition: all 0.3s ease;
}

.main-nav {
    width: 100%;
    display: block;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 15px 0 0;
    border-top: 1px solid var(--border-color);
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--primary-color);
}

.desktop-nav-items {
    display: flex;
    gap: 20px;
    align-items: center;
}

.desktop-nav-items a {
    font-size: 1.2rem;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.desktop-nav-items a:hover {
    color: var(--primary-color);
}

.search-container {
    width: 100%;
    padding: 20px 5% 0;
}

.search-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px 0 0 8px;
    font-size: 1rem;
    outline: none;
}

.search-btn {
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background-color: var(--secondary-color);
}

/* Hero Banner */
.hero-banner {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 5%;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: white;
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Category Tabs */
.category-tabs {
    padding: 20px 5%;
    background-color: white;
}

.tab-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    flex-wrap: wrap;
}

.tab {
    padding: 8px 20px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.tab:hover::after, .tab.active::after {
    width: 100%;
}

.tab.active {
    color: var(--primary-color);
}

/* Game Showcase */
.game-showcase {
    padding: 40px 5%;
    background-color: var(--bg-color);
}

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

.showcase-header h2 {
    font-size: 1.8rem;
    color: var(--text-color);
}

.view-all {
    color: var(--primary-color);
    font-weight: 500;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.game-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px var(--shadow-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.game-img-container {
    position: relative;
    height: 160px;
}

.game-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-rating {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.game-info {
    padding: 15px;
}

.game-title {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.game-platforms {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.game-platform {
    font-size: 0.7rem;
    color: var(--primary-color);
    background-color: rgba(59, 130, 246, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
}

.game-desc {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Trending Section */
.trending-section {
    padding: 40px 5%;
    background-color: white;
}

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

.trending-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.trending-tab {
    padding: 6px 15px;
    background: none;
    border: none;
    font-size: 0.9rem;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.trending-tab:hover, .trending-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.trending-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.trend-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: var(--bg-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.trend-item:hover {
    background-color: #f3f4f6;
    transform: translateX(5px);
}

.rank {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 30px;
}

.trend-content {
    display: flex;
    flex: 1;
}

.trend-content img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.trend-info {
    margin-left: 10px;
}

.trend-info h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.trend-info p {
    font-size: 0.85rem;
    color: #6b7280;
}

/* Community Spotlight */
.community-spotlight {
    padding: 40px 5%;
    background-color: var(--bg-color);
}

.community-spotlight h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.spotlight-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.spotlight-main {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px var(--shadow-color);
}

.spotlight-main img {
    width: 50%;
    object-fit: cover;
}

.spotlight-info {
    padding: 25px;
    width: 50%;
}

.spotlight-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.spotlight-info p {
    color: #6b7280;
    margin-bottom: 20px;
}

.spotlight-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.spotlight-btn:hover {
    background-color: var(--secondary-color);
}

.spotlight-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px var(--shadow-color);
}

.sidebar-card h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.contributor-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contributor-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contributor-list img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.event-list li {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
}

.event-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.event-date {
    color: var(--primary-color);
    font-weight: 500;
}

/* Footer Styles */
footer {
    background-color: var(--header-color);
    color: white;
    padding: 0px 5% 10px;
}

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

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-newsletter h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.newsletter-form button {
    padding: 10px 15px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #7c3aed;
}

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

.copyright {
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-newsletter {
        grid-column: span 2;
    }

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

    .spotlight-main {
        flex-direction: column;
    }

    .spotlight-main img, .spotlight-info {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        transition: left 0.3s ease;
        z-index: 200;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 0;
        border-top: none;
        background-color: transparent;
    }

    .main-nav li {
        margin-bottom: 15px;
    }

    .desktop-nav-items {
        display: none;
    }

    .search-container {
        padding-top: 20px;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .showcase-header, .trending-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-newsletter {
        grid-column: auto;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .search-form {
        flex-direction: column;
    }

    .search-input {
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .search-btn {
        border-radius: 8px;
        width: 100%;
        padding: 12px;
    }

    .tab-container {
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .tab {
        white-space: nowrap;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}</pre></body></html>