* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #f97316;
    --accent-color: #06b6d4;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.wide-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: rgba(0,0,0,0.15);
    padding: 10px 0;
    font-size: 0.9rem;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: 25px;
    color: rgba(255,255,255,0.95);
}

.contact-info a {
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--secondary-color);
}

.contact-info i {
    margin-right: 6px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    transition: all 0.3s;
}

.social-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.header-main {
    padding: 18px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bg-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 2rem;
    color: var(--secondary-color);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

nav ul li a {
    color: var(--bg-white);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 6px;
    transition: all 0.3s;
    font-weight: 500;
    display: block;
}

nav ul li a:hover,
nav ul li a.active {
    background: rgba(255,255,255,0.15);
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--bg-white);
    font-size: 1.8rem;
    cursor: pointer;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--bg-white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section {
    background: linear-gradient(135deg, #1e40af 0%, var(--primary-color) 50%, var(--accent-color) 100%);
    color: var(--bg-white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(249,115,22,0.4);
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249,115,22,0.5);
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--bg-white);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.game-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.game-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.game-card-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.game-card-content {
    padding: 25px;
}

.game-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.game-card-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.game-card-content .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--bg-white);
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.info-section {
    background: var(--bg-white);
}

.info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.info-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.info-text p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.info-text ul {
    list-style: none;
    margin: 25px 0;
}

.info-text ul li {
    padding: 12px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-text ul li i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.info-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.stats-section {
    background: linear-gradient(135deg, var(--primary-color), #1e40af);
    color: var(--bg-white);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h4 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--bg-white);
}

.blog-card-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.blog-card-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-section {
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-color);
}

.contact-info-box h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-box h4 i {
    color: var(--primary-color);
}

.contact-info-box p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-form {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

footer {
    background: #0f172a;
    color: rgba(255,255,255,0.8);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--bg-white);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
    font-size: 0.95rem;
}

.breadcrumb {
    background: var(--bg-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.breadcrumb ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.breadcrumb ul li a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb ul li a:hover {
    text-decoration: underline;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.content-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 2rem;
    margin: 35px 0 20px;
    color: var(--text-dark);
}

.content-wrapper h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.content-wrapper h4 {
    font-size: 1.2rem;
    margin: 25px 0 12px;
    color: var(--text-dark);
}

.content-wrapper p {
    margin-bottom: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.content-wrapper ul,
.content-wrapper ol {
    margin: 20px 0 20px 25px;
    line-height: 1.8;
    color: var(--text-light);
}

.content-wrapper ul li,
.content-wrapper ol li {
    margin-bottom: 10px;
}

.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
}

.error-content h1 {
    font-size: 8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.error-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.error-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.blog-detail-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-white);
    padding: 80px 0 40px;
}

.blog-detail-header h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-detail-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    font-size: 1rem;
    opacity: 0.95;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-detail-image {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: var(--bg-white);
    overflow: hidden;
}

.blog-detail {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.blog-detail-header {
    padding: 0;
}

.blog-detail-image {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blog-detail-image i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.9);
    z-index: 2;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 25px 40px;
    background: var(--bg-light);
    border-bottom: 1px solid #e0e0e0;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.blog-detail-meta i {
    color: var(--primary-color);
}

.blog-detail-header h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    color: var(--text-dark);
    padding: 35px 40px 30px;
    margin: 0;
}

.blog-detail-content {
    padding: 40px;
    max-width: 100%;
}

.blog-detail-content h2 {
    font-size: 2rem;
    margin: 45px 0 20px;
    color: var(--text-dark);
    font-weight: 700;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
}

.blog-detail-content h3 {
    font-size: 1.6rem;
    margin: 35px 0 18px;
    color: var(--text-dark);
    font-weight: 600;
}

.blog-detail-content h4 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.blog-detail-content p {
    margin-bottom: 20px;
    line-height: 1.9;
    color: var(--text-light);
    font-size: 1.08rem;
    text-align: justify;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin: 25px 0 25px 20px;
    line-height: 1.9;
    color: var(--text-light);
}

.blog-detail-content ul li,
.blog-detail-content ol li {
    margin-bottom: 12px;
    padding-left: 10px;
}

.blog-detail-content ul li {
    list-style: none;
    position: relative;
}

.blog-detail-content ul li:before {
    content: "▸";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -20px;
}

.blog-detail-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.blog-detail-tags {
    padding: 30px 40px;
    border-top: 1px solid #e0e0e0;
    background: var(--bg-light);
}

.blog-detail-tags h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    display: inline-block;
    margin-right: 15px;
}

.blog-detail-tags a {
    display: inline-block;
    padding: 8px 18px;
    background: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    margin: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.blog-detail-tags a:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.comment-section {
    background: var(--bg-white);
    padding: 40px;
    margin-top: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.comment-section h2 {
    font-size: 2rem;
    margin-bottom: 35px;
    color: var(--text-dark);
    font-weight: 700;
}

.comment-form {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 1px solid #e0e0e0;
}

.comment-form h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 600;
}

.comment-form .form-group {
    margin-bottom: 20px;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.comment-form textarea {
    resize: vertical;
    min-height: 120px;
}

.comment-form button[type="submit"] {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 12px 35px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-form button[type="submit"]:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.comment-item:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.comment-avatar i {
    font-size: 1.8rem;
}

.comment-content {
    flex: 1;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.comment-meta strong {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.comment-meta span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.comment-text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
}

.comment-reply {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.comment-reply:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.comment-reply i {
    margin-right: 5px;
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .info-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    nav {
        position: static;
    }
    
    nav ul {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--primary-color);
        flex-direction: column;
        padding: 80px 20px 20px;
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li a {
        padding: 12px 20px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hamburger {
        display: flex;
    }
    
    .header-top .container {
        justify-content: center;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-links {
        margin-top: 10px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1.05rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .games-grid,
    .features-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .blog-detail-image {
        height: 250px;
    }
    
    .blog-detail-image i {
        font-size: 3.5rem;
    }
    
    .blog-detail-header h1 {
        font-size: 1.8rem;
        padding: 25px 25px 20px;
    }
    
    .blog-detail-meta {
        padding: 20px 25px;
        gap: 15px;
    }
    
    .blog-detail-content {
        padding: 25px;
    }
    
    .blog-detail-content h2 {
        font-size: 1.6rem;
        margin: 35px 0 18px;
    }
    
    .blog-detail-content h3 {
        font-size: 1.3rem;
    }
    
    .blog-detail-tags {
        padding: 20px 25px;
    }
    
    .comment-section {
        padding: 25px;
    }
    
    .comment-section h2 {
        font-size: 1.6rem;
    }
    
    .comment-form {
        padding: 25px;
    }
    
    .comment-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .comment-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .comment-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .error-content h1 {
        font-size: 5rem;
    }
}

