* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
html {
    scroll-behavior: smooth;
}
body {
    background: linear-gradient(135deg, #0a1d37 0%, #1a3a5f 100%);
    color: #f0f8ff;
    line-height: 1.7;
    min-height: 100vh;
    padding-bottom: 100px;
}
a {
    color: #4fc3f7;
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover {
    color: #29b6f6;
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.site-header {
    background: rgba(10, 29, 55, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #00bcd4;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.my-logo {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(90deg, #00bcd4, #00e676);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.my-logo span {
    color: #ffeb3b;
}
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.main-nav a {
    color: #e3f2fd;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
}
.main-nav a:hover {
    background: rgba(0, 188, 212, 0.2);
    text-decoration: none;
}
.hamburger {
    display: none;
    background: none;
    border: none;
    color: #00bcd4;
    font-size: 1.8rem;
    cursor: pointer;
}
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.95rem;
    color: #b0bec5;
}
.breadcrumb a {
    color: #80deea;
}
.breadcrumb span {
    margin: 0 0.5rem;
}
.hero {
    text-align: center;
    padding: 4rem 0 3rem;
    background: radial-gradient(ellipse at center, rgba(26, 58, 95, 0.8) 0%, rgba(10, 29, 55, 0) 70%);
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #00e5ff, #00ff95);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}
.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #bbdefb;
}
.last-updated {
    display: inline-block;
    background: rgba(255, 193, 7, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #ffd54f;
}
.search-box {
    max-width: 700px;
    margin: 2rem auto 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 0.5rem;
    display: flex;
    border: 1px solid #00bcd4;
}
.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: white;
    font-size: 1.1rem;
    outline: none;
}
.search-box button {
    background: linear-gradient(90deg, #00bcd4, #00e676);
    color: white;
    border: none;
    padding: 0 2rem;
    border-radius: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}
.search-box button:hover {
    transform: scale(1.05);
}
.main-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    margin-top: 2rem;
}
article {
    background: rgba(13, 34, 61, 0.7);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
article h2 {
    font-size: 2.5rem;
    color: #00e5ff;
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #00bcd4;
}
article h2:first-of-type {
    margin-top: 0;
}
article h3 {
    font-size: 1.8rem;
    color: #69f0ae;
    margin: 2rem 0 1rem;
}
article h4 {
    font-size: 1.4rem;
    color: #ffd740;
    margin: 1.5rem 0 0.8rem;
}
article p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: #e1f5fe;
}
.emphasis {
    background: linear-gradient(90deg, rgba(0, 188, 212, 0.1), transparent);
    border-left: 4px solid #00bcd4;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    font-size: 1.2rem;
}
.highlight {
    color: #ffeb3b;
    font-weight: bold;
}
.game-img {
    width: 100%;
    border-radius: 10px;
    margin: 2rem 0;
    border: 2px solid #00bcd4;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.sidebar {
    background: rgba(13, 34, 61, 0.7);
    border-radius: 15px;
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 120px;
}
.sidebar h3 {
    color: #00e5ff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}
.quick-links ul {
    list-style: none;
}
.quick-links li {
    margin-bottom: 0.8rem;
    padding-left: 1.2rem;
    position: relative;
}
.quick-links li:before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #00e676;
    font-size: 0.8rem;
}
.rating-widget {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: center;
}
.stars {
    font-size: 2rem;
    color: #ffd700;
    margin: 1rem 0;
    cursor: pointer;
}
.stars span {
    margin: 0 0.2rem;
    transition: transform 0.2s;
}
.stars span:hover {
    transform: scale(1.3);
}
.rating-btn {
    background: linear-gradient(90deg, #ff9800, #ff5722);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1rem;
    width: 100%;
}
.comments-section {
    margin-top: 4rem;
    background: rgba(13, 34, 61, 0.7);
    border-radius: 15px;
    padding: 2.5rem;
}
.comment-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #00bcd4;
    border-radius: 8px;
    padding: 1rem;
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
    min-height: 120px;
    resize: vertical;
}
.comment-form input[type="text"],
.comment-form input[type="email"] {
    width: 48%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #00bcd4;
    border-radius: 8px;
    padding: 0.8rem;
    color: white;
    margin-bottom: 1rem;
}
.comment-form .form-row {
    display: flex;
    justify-content: space-between;
}
.comment-form button {
    background: linear-gradient(90deg, #00bcd4, #00e676);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    margin: 1rem auto 0;
}
.site-footer {
    margin-top: 5rem;
    background: rgba(5, 20, 40, 0.95);
    padding: 3rem 0 1.5rem;
    border-top: 2px solid #00bcd4;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
friend-link {
    display: block;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    transition: background 0.3s;
}
friend-link:hover {
    background: rgba(0, 188, 212, 0.3);
}
.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #1a3a5f;
    color: #90a4ae;
    font-size: 0.9rem;
}
@media (max-width: 992px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    .sidebar {
        position: static;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    .hamburger {
        display: block;
    }
    .main-nav {
        display: none;
        width: 100%;
        order: 3;
        margin-top: 1rem;
    }
    .main-nav.active {
        display: block;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    .main-nav a {
        display: block;
        padding: 0.8rem;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    article, .sidebar, .comments-section {
        padding: 1.5rem;
    }
    .comment-form .form-row {
        flex-direction: column;
    }
    .comment-form input[type="text"],
    .comment-form input[type="email"] {
        width: 100%;
    }
}
