/* Base Styles */
:root {
    --primary-color: #7b38d8;
    --primary-light: #9a6ae0;
    --primary-dark: #5d2aa8;
    --secondary-color: #ff6b6b;
    --accent-color: #4cd964;
    --dark-color: #1e1e2a;
    --darker-color: #16161f;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --border-radius: 8px;
    --card-border-radius: 12px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --header-height: 80px;
    --footer-bg: #151520;
    --font-main: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    --font-heading: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

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

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f7;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

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

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

/* Button Styles */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(123, 56, 216, 0.3);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

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

.btn-secondary:hover {
    background-color: #ff5252;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(123, 56, 216, 0.2);
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 5px 15px rgba(123, 56, 216, 0.3);
}

.btn-cookie {
    padding: 8px 16px;
    font-size: 0.9rem;
    margin-right: 10px;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

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

.logo img {
    height: 50px;
    border-radius: 50%;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

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

nav ul li a {
    color: var(--dark-color);
    font-weight: 600;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

nav ul li a i {
    margin-right: 8px;
    font-size: 1.1rem;
}

nav ul li a:hover {
    color: var(--primary-color);
    background-color: rgba(123, 56, 216, 0.05);
}

nav ul li a.active {
    color: var(--primary-color);
    background-color: rgba(123, 56, 216, 0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
    margin-bottom: 60px;
}

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

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

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Featured Posts Section */
.featured-posts {
    margin-bottom: 60px;
}

.featured-posts h2 {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.featured-posts h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

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

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.post-image {
    height: 200px;
    overflow: hidden;
}

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

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 20px;
}

.post-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

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

.read-more {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.read-more:after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover:after {
    margin-left: 10px;
}

/* Game Facts Section */
.game-facts {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0;
    margin: 60px 0;
}

.game-facts h2 {
    text-align: center;
    margin-bottom: 40px;
    color: white;
    position: relative;
    padding-bottom: 15px;
}

.game-facts h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.facts-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.fact-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.fact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.fact-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.fact-item p {
    padding: 20px;
    margin-bottom: 0;
}

/* Forum Preview Section */
.forum-preview {
    margin-bottom: 60px;
}

.forum-preview h2 {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.forum-preview h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.topics-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.topic {
    background-color: white;
    padding: 20px;
    border-radius: var(--card-border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.topic:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.topic h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.topic p {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.cta-forum {
    text-align: center;
}

/* Footer Styles */
footer {
    background-color: var(--footer-bg);
    color: white;
    padding: 60px 0 20px;
}

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

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

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: white;
}

.footer-contact h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--secondary-color);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.social-icons {
    display: flex;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin-left: 10px;
    transition: var(--transition);
}

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

/* Page Banner */
.page-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
}

.page-banner h1 {
    color: white;
    margin-bottom: 10px;
    font-size: 3rem;
}

.page-banner p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* Blog Page Styles */
.blog-posts {
    width: 70%;
}

.post-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.post-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    background-color: white;
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.post-item .post-image {
    height: 100%;
}

.post-item .post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.post-item .category {
    background-color: var(--primary-light);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-item .date {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.sidebar {
    width: 30%;
}

.post-container {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

/* Widget Styles */
.widget {
    background-color: white;
    border-radius: var(--card-border-radius);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.widget h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.widget h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 1.5px;
}

.categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories ul li {
    margin-bottom: 12px;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 12px;
}

.categories ul li:last-child {
    border-bottom: none;
}

.categories ul li a {
    color: var(--dark-color);
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.categories ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.categories ul li a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.popular-post {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.popular-post:last-child {
    margin-bottom: 0;
}

.popular-post img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.popular-post h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.popular-post span {
    color: var(--gray-color);
    font-size: 0.8rem;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud a {
    background-color: var(--light-gray);
    color: var(--dark-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.tag-cloud a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Forum Styles */
.forum-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/forum-banner.jpg');
}

.forum-container {
    display: block;
}

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

.search-box {
    display: flex;
    width: 60%;
}

.search-box input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-right: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
}

.search-box button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background-color: var(--primary-dark);
}

.create-topic {
    display: flex;
    gap: 15px;
}

.forum-categories {
    margin-bottom: 40px;
}

.category {
    background-color: white;
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.category-header {
    background-color: var(--dark-color);
    padding: 20px;
    color: white;
}

.category-header h2 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.category-header h2 i {
    margin-right: 10px;
    color: var(--primary-light);
}

.category-header p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.topic-list {
    padding: 20px;
}

.topic-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition);
}

.topic-item:last-child {
    border-bottom: none;
}

.topic-item:hover {
    background-color: rgba(123, 56, 216, 0.05);
}

.topic-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(123, 56, 216, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.topic-details {
    flex: 1;
}

.topic-details h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.topic-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.topic-meta span {
    display: flex;
    align-items: center;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.topic-meta span i {
    margin-right: 5px;
    color: var(--primary-light);
}

.topic-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.topic-stats div {
    text-align: center;
    margin-bottom: 10px;
}

.topic-stats div:last-child {
    margin-bottom: 0;
}

.topic-stats span:first-child {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.topic-stats span:last-child {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.forum-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-box {
    background-color: white;
    border-radius: var(--card-border-radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--box-shadow);
}

.stat-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.stat-box span {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.stat-box p {
    color: var(--gray-color);
    margin: 0;
}

/* About Page Styles */
.about-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/about-banner.jpg');
}

.about-container {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

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

.about-text h2 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-text h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 1.5px;
}

.values {
    margin-bottom: 60px;
    text-align: center;
}

.values h2 {
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.values h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 1.5px;
}

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

.value-item {
    background-color: white;
    padding: 30px 20px;
    border-radius: var(--card-border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(123, 56, 216, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.value-item h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.value-item p {
    color: var(--gray-color);
    margin-bottom: 0;
}

.team {
    margin-bottom: 60px;
    text-align: center;
}

.team h2 {
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.team h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 1.5px;
}

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

.team-member {
    background-color: white;
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

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

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.team-member h3 {
    margin: 20px 0 5px;
    font-size: 1.3rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    padding: 0 20px;
    color: var(--gray-color);
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(123, 56, 216, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
}

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

.achievements {
    margin-bottom: 60px;
    text-align: center;
}

.achievements h2 {
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.achievements h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 1.5px;
}

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

.achievement-item {
    background-color: var(--dark-color);
    color: white;
    padding: 30px 20px;
    border-radius: var(--card-border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 10px;
    line-height: 1;
}

.achievement-item p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

.cta {
    text-align: center;
    background-color: white;
    padding: 60px 30px;
    border-radius: var(--card-border-radius);
    box-shadow: var(--box-shadow);
}

.cta h2 {
    margin-bottom: 15px;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--gray-color);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Contact Page Styles */
.contact-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/contact-banner.jpg');
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto 60px;
}

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

.contact-info {
    background-color: white;
    padding: 40px;
    border-radius: var(--card-border-radius);
    box-shadow: var(--box-shadow);
}

.contact-info h2 {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 1.5px;
}

.contact-info p {
    color: var(--gray-color);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(123, 56, 216, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.info-content h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.info-content p {
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(123, 56, 216, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
}

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

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: var(--card-border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form h2 {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-form h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 1.5px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(123, 56, 216, 0.1);
}

.required {
    color: var(--danger-color);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.map-section {
    margin-bottom: 60px;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.map-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 1.5px;
}

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

.faq-section {
    margin-bottom: 60px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.faq-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 1.5px;
}

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

.faq-item {
    background-color: white;
    padding: 25px;
    border-radius: var(--card-border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

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

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

.modal-content {
    position: relative;
    background-color: white;
    width: 90%;
    max-width: 500px;
    border-radius: var(--card-border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

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

.modal-body {
    padding: 40px;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.modal-body h2 {
    margin-bottom: 15px;
}

.modal-body p {
    margin-bottom: 25px;
    color: var(--gray-color);
}

/* Blog Post Styles */
.blog-post {
    width: 70%;
    background-color: white;
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.post-header {
    padding: 30px 30px 0;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.post-meta .category {
    background-color: var(--primary-light);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-meta .date,
.post-meta .author {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.post-social {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.post-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(123, 56, 216, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
}

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

.post-featured-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.post-content {
    padding: 30px;
}

.post-intro {
    font-size: 1.2rem;
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 30px;
}

.post-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.post-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.post-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.post-content ul,
.post-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-content .post-image {
    margin: 30px 0;
    border-radius: var(--card-border-radius);
    overflow: hidden;
    height: auto;
}

.post-content .post-image img {
    width: 100%;
    border-radius: 0;
}

.image-caption {
    display: block;
    text-align: center;
    color: var(--gray-color);
    font-size: 0.9rem;
    padding: 10px;
    background-color: var(--light-gray);
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
}

.post-tags span {
    color: var(--dark-color);
    font-weight: 600;
}

.post-tags a {
    background-color: var(--light-gray);
    color: var(--dark-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.post-tags a:hover {
    background-color: var(--primary-color);
    color: white;
}

.author-bio {
    display: flex;
    gap: 30px;
    background-color: var(--light-gray);
    padding: 30px;
    margin-bottom: 40px;
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.author-info h3 {
    margin-bottom: 5px;
}

.author-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

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

.author-social {
    display: flex;
    gap: 15px;
}

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

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

.related-posts {
    padding: 0 30px 30px;
}

.related-posts h2 {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.related-posts h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 1.5px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-post {
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.related-post h3 {
    padding: 15px 15px 5px;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.related-post p {
    padding: 0 15px 15px;
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.comments-section {
    padding: 0 30px 30px;
    border-top: 1px solid var(--light-gray);
    padding-top: 40px;
}

.comments-section h2 {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.comments-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 1.5px;
}

.comment-form {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
}

.comment-form h3 {
    margin-bottom: 20px;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.comment {
    display: flex;
    gap: 20px;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-header h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.comment-header span {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.comment-content p {
    margin-bottom: 10px;
}

.comment-actions {
    display: flex;
    gap: 20px;
}

.comment-actions a {
    color: var(--gray-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.comment-actions a:hover {
    color: var(--primary-color);
}

.comment-actions a i {
    margin-right: 5px;
}

.reply {
    margin-top: 20px;
    margin-left: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.post-sidebar {
    width: 30%;
}

.about-author {
    margin-bottom: 30px;
}

.author-mini {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-mini img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-mini h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-mini p {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin: 0;
}

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

.newsletter p {
    margin-bottom: 15px;
}

.newsletter form {
    display: flex;
    gap: 10px;
}

.newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.newsletter button {
    padding: 0 20px;
}

/* Unique post styling elements */
.comparison-table {
    margin: 30px 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 15px;
    text-align: left;
}

.comparison-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--light-gray);
}

.comparison-table tr:nth-child(even) {
    background-color: var(--light-gray);
}

.verdict {
    background-color: var(--dark-color);
    color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 30px 0;
}

.verdict h3 {
    color: white;
    margin-bottom: 10px;
}

.rating span {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.pros, .cons {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
}

.pros h3, .cons h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.pros h3 {
    color: var(--success-color);
}

.cons h3 {
    color: var(--danger-color);
}

.game-info {
    display: flex;
    gap: 20px;
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.game-image {
    width: 120px;
    height: 120px;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
}

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

.game-details {
    flex: 1;
}

.game-details p {
    margin-bottom: 5px;
}

.game-rating {
    margin-top: 10px;
}

.stars {
    color: var(--warning-color);
    margin-right: 10px;
}

.score {
    font-weight: 600;
}

.honorable-mentions {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 30px 0;
}

.timeline {
    margin: 30px 0;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
}

.timeline-item:not(:last-child):after {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 2px;
    height: calc(100% + 20px);
    background-color: var(--light-gray);
}

.year {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    z-index: 1;
}

.event {
    flex: 1;
    background-color: var(--light-gray);
    padding: 15px;
    border-radius: var(--border-radius);
}

.event h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.event p {
    margin-bottom: 0;
    color: var(--gray-color);
}

.vr-platforms {
    margin: 30px 0;
    display: grid;
    gap: 20px;
}

.platform {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
}

.platform h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.platform-details p {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.platform-details p strong {
    min-width: 120px;
    display: inline-block;
}

.games-showcase {
    margin: 30px 0;
    display: grid;
    gap: 20px;
}

.game-card {
    display: flex;
    gap: 20px;
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
}

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

.game-info {
    flex: 1;
}

.game-info h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.game-info p {
    margin-bottom: 5px;
}

.vr-advantages {
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.advantage {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
}

.advantage h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.advantage p {
    margin-bottom: 0;
}

.challenges-grid {
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.challenge-item {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
}

.challenge-item h3 {
    color: var(--danger-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.challenge-item p {
    margin-bottom: 0;
}

.market-data {
    margin: 30px 0;
}

.data-point {
    margin-bottom: 30px;
}

.data-point h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.data-visualization {
    display: flex;
    height: 40px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 10px;
}

.data-bar {
    height: 100%;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    padding: 0 10px;
}

.data-bar.primary {
    background-color: var(--primary-color);
}

.data-point p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.dev-insight {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.dev-insight img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.dev-insight h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.dev-insight p {
    margin-bottom: 10px;
    font-style: italic;
}

.dev-insight span {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.developer-quote {
    background-color: var(--light-gray);
    padding: 30px;
    border-left: 5px solid var(--primary-color);
    margin: 30px 0;
    font-style: italic;
}

.developer-quote p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.developer-quote cite {
    color: var(--gray-color);
    font-size: 0.9rem;
    font-style: normal;
}

.development-process {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
}

.process-step {
    text-align: center;
    flex: 1;
    padding: 0 10px;
    position: relative;
}

.process-step:not(:last-child):after {
    content: '→';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--primary-color);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-weight: 600;
}

.process-step h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.process-step p {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.dev-areas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.dev-area {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
}

.dev-area h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.dev-area p {
    margin-bottom: 0;
    color: var(--gray-color);
}

.art-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.art-item {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
}

.art-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.art-item p {
    margin-bottom: 0;
    color: var(--gray-color);
}

.qa-types {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.qa-type {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
}

.qa-type h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.qa-type p {
    margin-bottom: 0;
    color: var(--gray-color);
}

.challenges-container {
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.trends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.trend-item {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
}

.trend-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.trend-item p {
    margin-bottom: 0;
    color: var(--gray-color);
}

.game-highlights {
    margin: 30px 0;
}

.game-highlight {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.game-highlight h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.game-highlight p {
    margin-bottom: 0;
}

.esports-economics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.economics-item {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
}

.economics-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.economics-item p {
    margin-bottom: 0;
    color: var(--gray-color);
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.infrastructure-item {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
}

.infrastructure-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.infrastructure-item p {
    margin-bottom: 0;
    color: var(--gray-color);
}

.challenges-section {
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.challenge {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
}

.challenge h3 {
    color: var(--danger-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.challenge p {
    margin-bottom: 0;
    color: var(--gray-color);
}

.future-trends {
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.trend {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
}

.trend h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.trend p {
    margin-bottom: 0;
    color: var(--gray-color);
}

.resources-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resources-list li {
    margin-bottom: 12px;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 12px;
}

.resources-list li:last-child {
    border-bottom: none;
}

.resources-list li a {
    display: flex;
    align-items: center;
    color: var(--dark-color);
    transition: var(--transition);
}

.resources-list li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.resources-list li a i {
    margin-right: 10px;
    color: var(--primary-color);
}

.events-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.events-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

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

.event-date {
    background-color: var(--primary-color);
    color: white;
    padding: 8px;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    min-width: 80px;
    font-size: 0.9rem;
}

.event-details h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.event-details p {
    margin-bottom: 0;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.vr-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vr-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

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

.vr-headset {
    display: flex;
    gap: 15px;
}

.vr-headset img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.vr-headset h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.vr-headset p {
    margin-bottom: 5px;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.rating {
    color: var(--warning-color);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin-bottom: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-buttons a {
    color: white;
    text-decoration: underline;
    margin-left: 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .post-container {
        flex-direction: column;
    }
    
    .blog-post, .post-sidebar {
        width: 100%;
    }
    
    .post-sidebar {
        margin-top: 40px;
    }
    
    .blog-posts {
        width: 100%;
    }
    
    .sidebar {
        width: 100%;
        margin-top: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-intro {
        grid-template-columns: 1fr;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .vr-advantages, .challenges-grid, .infrastructure-grid, .challenges-section, .future-trends {
        grid-template-columns: 1fr;
    }
    
    .dev-areas, .esports-economics {
        grid-template-columns: 1fr;
    }
    
    .game-card {
        flex-direction: column;
    }
    
    .game-card img {
        width: 100%;
        height: 200px;
    }
    
    .game-info {
        padding: 15px 0;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        position: relative;
        height: auto;
        padding: 15px 0;
    }
    
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 5px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .post-item {
        grid-template-columns: 1fr;
    }
    
    .post-item .post-image {
        height: 200px;
    }
    
    .forum-actions {
        flex-direction: column;
        gap: 20px;
    }
    
    .search-box {
        width: 100%;
    }
    
    .topic-item {
        flex-direction: column;
    }
    
    .topic-stats {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        width: 100%;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .post-featured-image {
        height: 300px;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .author-image {
        margin: 0 auto;
    }
    
    .author-social {
        justify-content: center;
    }
    
    .development-process {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-step:not(:last-child):after {
        content: '↓';
        right: 50%;
        top: auto;
        bottom: -25px;
        transform: translateX(50%);
    }
    
    .values-grid, .team-grid, .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
    }
    
    .game-info {
        flex-direction: column;
    }
    
    .game-image {
        width: 100%;
        height: 200px;
    }
    
    .game-details {
        padding-top: 15px;
    }
    
    .dev-insight {
        flex-direction: column;
        text-align: center;
    }
    
    .dev-insight img {
        margin: 0 auto 15px;
    }
}
