* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.7;
    max-width: 100vw;
    overflow-x: hidden;
}
a {
    color: #4361ee;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #3a0ca3;
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.site-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a.my-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #4cc9f0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo span {
    color: #f72585;
}
.hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.main-nav a {
    color: #e0e0e0;
    font-weight: 600;
    padding: 0.5rem 0.8rem;
    border-radius: 5px;
}
.main-nav a:hover {
    background-color: rgba(76, 201, 240, 0.2);
    color: #4cc9f0;
    text-decoration: none;
}
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .main-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #16213e;
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }
    .main-nav.active ul {
        display: flex;
    }
}
.breadcrumb {
    padding: 1rem 0;
    background-color: #e9ecef;
    font-size: 0.9rem;
}
.breadcrumb ol {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.breadcrumb li:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: #6c757d;
}
.main-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
    margin: 2rem auto;
}
@media (max-width: 992px) {
    .main-content {
        grid-template-columns: 1fr;
    }
}
.article-content {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.article-content h1 {
    color: #1a1a2e;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    border-bottom: 3px solid #f72585;
    padding-bottom: 0.5rem;
}
.article-content h2 {
    color: #16213e;
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    padding-left: 0.5rem;
    border-left: 5px solid #4361ee;
}
.article-content h3 {
    color: #3a0ca3;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}
.article-content h4 {
    color: #7209b7;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
}
.article-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.article-content strong {
    color: #f72585;
    font-weight: 700;
}
.article-content em {
    color: #4361ee;
}
.article-content blockquote {
    border-left: 4px solid #4cc9f0;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
}
.hero-image {
    margin: 2rem 0;
    text-align: center;
}
.hero-image figcaption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}
.insider-tip {
    background: linear-gradient(to right, #e0f7fa, #bbdefb);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 5px solid #0288d1;
    margin: 2rem 0;
}
.insider-tip i {
    color: #f72585;
    margin-right: 10px;
}
.content-highlight {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.widget {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
.widget h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #4cc9f0;
}
.search-box form {
    display: flex;
}
.search-box input {
    flex-grow: 1;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    outline: none;
}
.search-box button {
    background-color: #4361ee;
    color: white;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background 0.3s;
}
.search-box button:hover {
    background-color: #3a0ca3;
}
.rating-widget form, .comment-widget form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.rating-widget input, .rating-widget select, .comment-widget textarea, .comment-widget input {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}
.rating-widget button, .comment-widget button {
    background-color: #f72585;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}
.rating-widget button:hover, .comment-widget button:hover {
    background-color: #b5179e;
}
.stars {
    display: flex;
    gap: 5px;
    font-size: 1.5rem;
    color: #ffc107;
    margin-bottom: 1rem;
}
.related-links ul {
    list-style: none;
}
.related-links li {
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    position: relative;
}
.related-links li::before {
    content: '🎮';
    position: absolute;
    left: 0;
}
.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.footer-section h4 {
    color: #4cc9f0;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}
.friend-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
friend-link {
    display: inline-block;
    background-color: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s;
}
friend-link:hover {
    background-color: rgba(76, 201, 240, 0.3);
}
.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #aaa;
}
.update-time {
    color: #f72585;
    font-weight: bold;
}
