/* Base Styles & Variables */
:root {
    --primary-color: #6200ea;
    --secondary-color: #03dac6;
    --accent-color: #bb86fc;
    --background-dark: #121212;
    --background-darker: #0a0a0a;
    --card-background: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --border-radius: 8px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
    --grid-gap: 2rem;
    --container-width: 1200px;
    --header-height: 80px;
}

/* Global Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--background-dark), var(--background-darker));
    min-height: 100vh;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

/* Layout & Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}

.page-header {
    text-align: center;
    padding: 6rem 0 3rem;
    background: rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.page-header h1 {
    margin-bottom: 0.5rem;
    font-size: 3.5rem;
}

.page-header p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-secondary);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo img {
    height: 40px;
    width: 40px;
    margin-right: 1rem;
    border-radius: 50%;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a.active {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    background-image: url('images/12.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: var(--text-secondary);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

.primary-btn:hover {
    background: #7c4dff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.secondary-btn {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.secondary-btn:hover {
    background: var(--accent-color);
    color: var(--background-dark);
    transform: translateY(-2px);
}

.outline-btn {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.outline-btn:hover {
    background: var(--text-primary);
    color: var(--background-dark);
}

.small-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Featured Games Section */
.featured-games {
    background: var(--background-darker);
}

.featured-games h2,
.difference h2,
.latest-posts h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.game-card {
    background: var(--card-background);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

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

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    margin-bottom: 0.75rem;
    color: var(--accent-color);
}

.game-info p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

/* What Makes Our Games Different Section */
.difference {
    background: var(--background-dark);
}

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

.difference-item {
    background: var(--card-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.difference-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    color: white;
}

.icon svg {
    width: 30px;
    height: 30px;
}

/* Latest Posts Section */
.latest-posts {
    background: var(--background-darker);
}

.post-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--grid-gap);
}

.post-card {
    background: var(--card-background);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4);
}

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.post-info {
    padding: 1.5rem;
}

.post-info h3 {
    margin-bottom: 0.75rem;
    color: var(--accent-color);
}

.post-info p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.view-all {
    text-align: center;
    margin-top: 3rem;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(to right, var(--primary-color), #7c4dff);
    text-align: center;
}

.newsletter h2 {
    color: white;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    font-size: 1rem;
}

.newsletter-form .btn {
    border-radius: 0;
    padding: 0 2rem;
}

/* Footer */
footer {
    background: var(--background-darker);
    padding: 5rem 0 0;
}

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

.footer-logo img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    border-radius: 50%;
}

.footer-logo p {
    margin-bottom: 0.5rem;
}

.footer-links h3,
.footer-policy h3,
.footer-contact h3,
.footer-social h3 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-links ul li,
.footer-policy ul li {
    margin-bottom: 0.75rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-contact svg,
.social-icons svg {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--card-background);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--card-background);
    padding: 1rem;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
    z-index: 99;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    margin-bottom: 0;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

.cookie-content a {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

/* Blog Page Styles */
.blog-posts {
    max-width: 900px;
    margin: 0 auto;
}

.post {
    background: var(--card-background);
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.post-image {
    height: 400px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.post-meta .category {
    color: var(--accent-color);
}

.post-content h2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
}

.post-tags span {
    background: rgba(98, 0, 234, 0.2);
    color: var(--accent-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
}

/* Games Page Styles */
.game-filters {
    background: var(--card-background);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    box-shadow: var(--box-shadow);
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 500;
}

.filter-group select {
    padding: 0.5rem;
    border-radius: var(--border-radius);
    background: var(--background-dark);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-bar {
    display: flex;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.search-bar input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--background-dark);
    color: var(--text-primary);
}

.search-bar .btn {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 0 1rem;
}

.search-bar .btn svg {
    width: 20px;
    height: 20px;
}

.game-showcase {
    margin-bottom: 3rem;
}

.game-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: var(--card-background);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: var(--box-shadow);
}

.game-image {
    height: 100%;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.game-details {
    padding: 2rem;
}

.game-header {
    margin-bottom: 1.5rem;
}

.game-header h2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.game-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.game-meta .category,
.game-meta .platform {
    display: inline-block;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.rating svg {
    width: 16px;
    height: 16px;
    color: #ffab00;
}

.game-description h3 {
    margin: 1.5rem 0 0.75rem;
    font-size: 1.25rem;
    color: var(--accent-color);
}

.game-description ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.game-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-section {
    text-align: center;
    background: linear-gradient(to right, var(--primary-color), #7c4dff);
    border-radius: var(--border-radius);
    padding: 3rem;
    margin-bottom: 3rem;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* About Page Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-text h2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--grid-gap);
    margin-top: 3rem;
}

.value-item {
    background: var(--card-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    color: white;
}

.value-icon svg {
    width: 30px;
    height: 30px;
}

.team-section {
    background: var(--background-darker);
    text-align: center;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
}

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

.team-member {
    background: var(--card-background);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    padding-bottom: 1.5rem;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    margin: 1.5rem 0 0.25rem;
    color: var(--accent-color);
}

.team-member p {
    padding: 0 1.5rem;
    margin-bottom: 0.75rem;
}

.team-member p:first-of-type {
    color: var(--secondary-color);
    font-weight: 500;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--background-dark);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
}

.social-links svg {
    width: 18px;
    height: 18px;
    color: white;
}

.work-with-us {
    text-align: center;
}

.opportunities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--grid-gap);
    margin: 3rem 0;
}

.opportunity {
    background: var(--card-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.opportunity:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.opportunity h3 {
    color: var(--accent-color);
}

.opportunity p {
    margin-bottom: 0;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2,
.contact-form-container h2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.info-item h3 {
    margin-bottom: 0.5rem;
}

.info-item p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

.social-contact h3 {
    margin: 2rem 0 1rem;
}

.contact-form-container {
    background: var(--card-background);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    background: var(--background-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    font-size: 0.875rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

.map-section {
    margin-top: 5rem;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.faq-section {
    margin-top: 5rem;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: var(--grid-gap);
}

.faq-item {
    background: var(--card-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.faq-item h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.faq-item p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 200;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--card-background);
    max-width: 500px;
    width: 90%;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
}

.modal-content svg {
    width: 60px;
    height: 60px;
    color: var(--success-color);
    margin: 0 auto 1.5rem;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent-color);
}

.close-btn {
    margin-top: 2rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .game-item {
        grid-template-columns: 1fr;
    }
    
    .game-image {
        height: 300px;
    }
    
    .game-image img {
        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    header {
        height: auto;
        padding: 1rem 0;
    }
    
    nav {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 70%;
        height: calc(100vh - var(--header-height));
        background: var(--background-darker);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        z-index: 90;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 1rem 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }
    
    .newsletter-form .btn {
        border-radius: 0 0 var(--border-radius) var(--border-radius);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.125rem;
    }
    
    .post-image {
        height: 250px;
    }
    
    .game-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Button Hover Light Effect */
.btn.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-50%);
    transition: width 0.3s ease;
    z-index: -1;
    border-radius: var(--border-radius);
}

.btn.primary-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn.primary-btn:hover::before {
    width: 100%;
}

/* Unique Color Scheme */
:root {
    --primary-color: #6200ea;
    --secondary-color: #03dac6;
    --accent-color: #bb86fc;
    --success-color: #00c853;
    --warning-color: #ffab00;
    --error-color: #ff5252;
}

/* Active Link Style Enhancement */
nav ul li a.active {
    position: relative;
    color: var(--accent-color);
}

nav ul li a.active::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
}
