:root {
    --primary: #7e6eff;
    --primary-light: #b29bfe;
    --secondary: #ff477e;
    --dark: #f5f6fa;
    --light: #0b0c16;
    --gray: #94a3b8;
    --success: #00b894;
    
    --bg-dark: #07080d;
    --card-bg: #111219;
    --card-border: rgba(255, 255, 255, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    background-image: url('image/gaming_background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--dark);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(7, 8, 13, 0.88);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    z-index: -1;
}

h1, h2, h3, .logo, .section-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

html {
    scroll-behavior: smooth;
}

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

header {
    background: rgba(17, 18, 25, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
    color: white;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 10px;
    font-size: 32px;
}

/* Navigation Styles */
.nav-container {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 25px;
    transform: translateX(-50%);
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
}

.nav-links a:hover, .nav-links a.active {
    color: white;
    text-shadow: 0 0 10px rgba(126, 110, 255, 0.4);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    box-shadow: 0 0 10px var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-bar {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
    padding: 7px 15px;
    border-radius: 30px;
    color: white;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    width: 200px;
}

.search-bar input {
    background: transparent;
    border: none;
    color: white;
    outline: none;
    width: 100%;
    font-size: 14px;
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-bar i {
    margin-right: 8px;
    opacity: 0.6;
    color: var(--primary-light);
}

.search-bar:focus-within {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(126, 110, 255, 0.5);
    box-shadow: 0 0 10px rgba(126, 110, 255, 0.2);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(17, 18, 25, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-left: 1px solid var(--card-border);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 30px;
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-container.active {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        margin-bottom: 30px;
        transform: none;
    }
    
    .nav-links a {
        font-size: 18px;
        padding: 10px 0;
    }
    
    .user-actions {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }
    
    .search-bar {
        width: 100%;
    }
    
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Hero Section */
.hero {
    background: rgba(17, 18, 25, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
}

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

.hero h1 {
    font-size: 54px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 30%, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 40px rgba(126, 110, 255, 0.2);
}

.hero p {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--gray);
    opacity: 1;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    box-shadow: 0 0 20px rgba(126, 110, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(255, 71, 126, 0.5);
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
}

.main-content {
    padding: 60px 0;
}

.section {
    margin-bottom: 60px;
    animation: fadeIn 0.6s ease-out;
}

.section.filter-view {
    margin-bottom: 0;
}

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

.section-title {
    font-size: 28px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.view-all {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.view-all:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.category {
    padding: 8px 20px;
    background-color: var(--card-bg);
    color: var(--gray);
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    border: 1px solid var(--card-border);
}

.category:hover, .category.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(126, 110, 255, 0.4);
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
    perspective: 1000px;
}

.game-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
    position: relative;
    cursor: pointer;
    transform: rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg));
    transform-style: preserve-3d;
}

.game-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transition: transform 0.1s ease-out, border-color 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.game-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        250px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
        var(--glow-color, rgba(255, 255, 255, 0.1)),
        transparent 80%
    );
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.game-card .card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    transform: translateZ(20px);
}

.game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--success);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    z-index: 2;
}

.game-thumbnail {
    position: relative;
    overflow: hidden;
}

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

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

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.play-btn {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.game-info {
    padding: 20px;
}

.game-title {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 15px;
}

.game-rating {
    color: #f39c12;
}

.game-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.action-btn {
    flex: 1;
    padding: 8px;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

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

.play-now:hover {
    background-color: #5a4bd6;
}

.favorite-btn {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    color: var(--gray);
    width: 40px;
}

.favorite-btn.favorited {
    background-color: rgba(255, 71, 126, 0.12);
    border-color: rgba(255, 71, 126, 0.3);
    color: var(--secondary);
}

.favorite-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.favorite-btn.favorited:hover {
    background-color: rgba(255, 71, 126, 0.2);
}

/* Game Viewer Overlay Modal */
.game-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: none;
    flex-direction: column;
}

.game-viewer.active {
    display: flex;
}

.game-viewer-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.game-viewer-title {
    font-size: 20px;
    font-weight: 600;
}

.game-viewer-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.game-viewer-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.game-viewer-content {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.game-iframe {
    width: 100%;
    max-width: 900px;
    height: 80vh;
    border: none;
    border-radius: 10px;
    background-color: black;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.game-viewer-actions {
    display: flex;
    justify-content: center;
    padding: 10px 20px 20px;
    gap: 15px;
}

.viewer-action-btn {
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

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

.fullscreen-btn:hover {
    background-color: #5a4bd6;
    transform: translateY(-2px);
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 60px 0;
    text-align: center;
    border-radius: 15px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 71, 126, 0.15);
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
}

.newsletter-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: 15px;
}

.newsletter h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.newsletter p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--bg-dark);
    font-size: 16px;
    outline: none;
}

.newsletter-form button {
    padding: 15px 30px;
    background-color: var(--bg-dark);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background-color: #1b1c26;
}

.newsletter-message {
    display: none;
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    font-weight: 500;
}

.newsletter-message.success {
    background-color: rgba(255, 255, 255, 0.2);
    animation: fadeIn 0.5s ease-out;
}

.newsletter-message.error {
    background-color: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

/* Footer Section */
footer {
    background-color: #050609;
    border-top: 1px solid var(--card-border);
    color: var(--gray);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 3px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b2bec3;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.footer-links a:hover, .footer-links a.active {
    color: white;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    color: white;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b2bec3;
    font-size: 14px;
}

.filtered-category-title {
    margin-bottom: 30px;
    animation: fadeIn 0.6s ease-out;
    display: none;
}

/* Content Pages (DRY - Generic Class for pages content) */
.content-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.6s ease-out;
}

.content-card h2 {
    color: var(--primary);
    margin: 30px 0 15px;
    font-size: 22px;
}

.content-card h2:first-of-type {
    margin-top: 0;
}

.content-card h3 {
    color: var(--dark);
    margin: 25px 0 10px;
    font-size: 18px;
}

.content-card p {
    margin-bottom: 15px;
    color: var(--gray);
}

.content-card ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-card li {
    margin-bottom: 8px;
    color: var(--gray);
}

.content-card a {
    color: var(--primary);
    text-decoration: none;
}

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

/* Contact Grid & Form elements */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-gallery-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.contact-gallery-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.contact-gallery-img:hover {
    transform: scale(1.05);
}

.contact-form {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-form h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    font-size: 16px;
    color: var(--dark);
    transition: all 0.3s;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.07);
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(126, 110, 255, 0.25);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

.submit-btn:hover {
    background-color: #5a4bd6;
    transform: translateY(-2px);
}

.contact-message {
    display: none;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 500;
}

.contact-message.success {
    background-color: rgba(0, 184, 148, 0.1);
    color: var(--success);
    animation: fadeIn 0.5s ease-out;
}

.contact-message.error {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

/* Media Queries */
@media (max-width: 992px) {
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .newsletter h2 {
        font-size: 26px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        border-radius: 30px;
        width: 100%;
    }

    .contact-gallery, .contact-form, .content-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .contact-gallery {
        grid-template-columns: 1fr;
    }
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .game-thumbnail {
        height: 120px;
    }
    
    .game-info {
        padding: 13px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .categories {
        gap: 10px;
    }
    
    .category {
        padding: 6px 15px;
        font-size: 13px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
