* {
    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, #0c1a2d 0%, #1a3a5f 100%);
    color: #e0e0e0;
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.site-header {
    background: rgba(12, 26, 45, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #f8c300;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a {
    text-decoration: none;
    color: #f8c300;
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 10px rgba(248, 195, 0, 0.5);
    transition: all 0.3s ease;
}
.logo a:hover {
    color: #ffdd40;
    text-shadow: 0 2px 20px rgba(248, 195, 0, 0.8);
}
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}
.main-nav a {
    color: #b0c4de;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}
.main-nav a:hover,
.main-nav a.active {
    background: #f8c300;
    color: #0c1a2d;
}
.hamburger {
    display: none;
    background: none;
    border: none;
    color: #f8c300;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
}
.breadcrumb {
    padding: 15px 0;
    background: rgba(26, 58, 95, 0.7);
    margin-bottom: 30px;
}
.breadcrumb ol {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}
.breadcrumb li {
    margin-right: 10px;
    font-size: 0.95rem;
}
.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin-left: 10px;
    color: #f8c300;
}
.breadcrumb a {
    color: #b0c4de;
    text-decoration: none;
}
.breadcrumb a:hover {
    color: #f8c300;
}
.hero {
    text-align: center;
    padding: 40px 20px;
    background: radial-gradient(circle at center, #1e3a5f 0%, #0c1a2d 100%);
    border-radius: 15px;
    margin-bottom: 40px;
    border: 1px solid #2a4a75;
}
.hero h1 {
    font-size: 2.8rem;
    color: #f8c300;
    margin-bottom: 20px;
    line-height: 1.2;
}
.search-box {
    max-width: 700px;
    margin: 30px auto;
    display: flex;
}
.search-box input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid #f8c300;
    border-radius: 50px 0 0 50px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1.1rem;
    outline: none;
}
.search-box button {
    background: #f8c300;
    color: #0c1a2d;
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 0 35px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}
.search-box button:hover {
    background: #ffdd40;
}
.main-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    padding: 20px 0 50px;
}
.article-content {
    background: rgba(26, 58, 95, 0.6);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid #2a4a75;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.article-content h2 {
    color: #f8c300;
    border-left: 5px solid #f8c300;
    padding-left: 15px;
    margin: 35px 0 20px;
    font-size: 2rem;
}
.article-content h3 {
    color: #a3d0ff;
    margin: 25px 0 15px;
    font-size: 1.5rem;
}
.article-content p {
    margin-bottom: 22px;
    font-size: 1.15rem;
    text-align: justify;
}
.article-content emoji {
    font-size: 1.3em;
    margin-right: 8px;
}
.highlight-box {
    background: rgba(248, 195, 0, 0.1);
    border-left: 4px solid #f8c300;
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
}
.featured-img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid #f8c300;
    margin: 30px 0;
    transition: transform 0.5s;
}
.featured-img:hover {
    transform: scale(1.02);
}
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.rating-widget, .comment-widget {
    background: rgba(26, 58, 95, 0.8);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #2a4a75;
}
.rating-widget h3, .comment-widget h3 {
    color: #f8c300;
    margin-bottom: 20px;
    font-size: 1.5rem;
}
.stars {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    font-size: 2rem;
    color: #555;
}
.stars .star {
    cursor: pointer;
    transition: color 0.2s;
}
.stars .star:hover,
.stars .star.active {
    color: #f8c300;
}
.rating-form input, .comment-form input,
.rating-form textarea, .comment-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid #2a4a75;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
}
.rating-form button, .comment-form button {
    width: 100%;
    padding: 15px;
    background: #f8c300;
    color: #0c1a2d;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}
.rating-form button:hover, .comment-form button:hover {
    background: #ffdd40;
}
.footer-links {
    background: rgba(12, 26, 45, 0.9);
    padding: 40px 0;
    border-top: 2px solid #f8c300;
}
.web-link-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.web-link {
    background: rgba(42, 74, 117, 0.5);
    padding: 18px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}
.web-link:hover {
    background: rgba(248, 195, 0, 0.2);
    transform: translateY(-5px);
}
.web-link a {
    color: #b0c4de;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}
.web-link a:hover {
    color: #f8c300;
}
.site-footer {
    text-align: center;
    padding: 25px;
    background: #0a1525;
    color: #8a9bb2;
    font-size: 0.95rem;
    border-top: 1px solid #1a3a5f;
}
@media (max-width: 1024px) {
    .web-link-container {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .main-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(12, 26, 45, 0.98);
        padding: 20px;
        border-top: 2px solid #f8c300;
    }
    .main-nav.active ul {
        display: flex;
    }
    .hamburger {
        display: block;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .main-content {
        grid-template-columns: 1fr;
    }
    .web-link-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    .search-box {
        flex-direction: column;
    }
    .search-box input {
        border-radius: 50px;
        margin-bottom: 15px;
    }
    .search-box button {
        border-radius: 50px;
        padding: 15px;
    }
    .web-link-container {
        grid-template-columns: 1fr;
    }
    .article-content {
        padding: 25px 20px;
    }
}
