* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
html {
    scroll-behavior: smooth;
}
body {
    background: #0a0e17;
    color: #e0e0e0;
    line-height: 1.7;
    overflow-x: hidden;
}
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.site-header {
    background: linear-gradient(135deg, #000428 0%, #0a0e17 100%);
    border-bottom: 2px solid #ffd700;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffd700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
.logo span {
    color: #4dabf7;
}
.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.desktop-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.desktop-nav a:hover {
    background: #ffd700;
    color: #000;
}
.hamburger {
    display: none;
    font-size: 1.8rem;
    color: #ffd700;
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-nav {
    display: none;
    flex-direction: column;
    background: #111827;
    padding: 1rem;
    border-top: 1px solid #333;
}
.mobile-nav.active {
    display: flex;
}
.mobile-nav a {
    color: #e0e0e0;
    padding: 0.8rem;
    text-decoration: none;
    border-bottom: 1px solid #333;
}
.mobile-nav a:hover {
    background: #222;
}
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.9rem;
}
.breadcrumb a {
    color: #4dabf7;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.hero {
    background: linear-gradient(rgba(10,14,23,0.9), rgba(10,14,23,0.9)), url('https://images.unsplash.com/photo-1533616688419-b7a585564f70?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    padding: 3rem 1rem;
    text-align: center;
    border-radius: 12px;
    margin: 1.5rem 0;
}
.hero h1 {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.search-box {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
}
.search-box input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #ffd700;
    border-radius: 8px 0 0 8px;
    background: #1a2236;
    color: #fff;
    font-size: 1rem;
}
.search-box button {
    background: #ffd700;
    color: #000;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}
.search-box button:hover {
    background: #ffed4e;
}
.main-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
    margin: 2rem 0;
}
article {
    background: #111827;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.sidebar {
    background: #111827;
    padding: 1.5rem;
    border-radius: 12px;
    height: fit-content;
}
article h2 {
    color: #4dabf7;
    font-size: 2.2rem;
    margin: 1.5rem 0 1rem;
    border-left: 5px solid #ffd700;
    padding-left: 1rem;
}
article h3 {
    color: #ffd700;
    font-size: 1.6rem;
    margin: 1.2rem 0 0.8rem;
}
article p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}
article strong {
    color: #ffd700;
}
.emoji {
    font-size: 1.2em;
    margin-right: 0.3rem;
}
.featured-image {
    width: 100%;
    border-radius: 12px;
    margin: 1.5rem 0;
    border: 3px solid #333;
}
blockquote {
    border-left: 4px solid #ffd700;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #aaa;
}
.inline-link {
    color: #4dabf7;
    text-decoration: none;
    font-weight: 600;
}
.inline-link:hover {
    text-decoration: underline;
    color: #74c0fc;
}
.interactive-section {
    background: #1a2236;
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
}
.interactive-section h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
}
.rating-stars {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}
.star {
    color: #555;
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.2s;
}
.star.active {
    color: #ffd700;
}
.form-group {
    margin-bottom: 1.2rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ccc;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid #444;
    background: #0a0e17;
    color: #fff;
}
.submit-btn {
    background: #ffd700;
    color: #000;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}
.submit-btn:hover {
    background: #ffed4e;
}
.longtail-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 3rem 0 2rem;
}
.web-link {
    background: #1a2236;
    padding: 1.2rem;
    border-radius: 8px;
    border-left: 4px solid #4dabf7;
}
.web-link a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    display: block;
}
.web-link a:hover {
    color: #ffd700;
}
.site-footer {
    background: #000428;
    padding: 2.5rem 0 1.5rem;
    margin-top: 3rem;
    border-top: 2px solid #333;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.copyright {
    color: #888;
    font-size: 0.9rem;
}
.social-links a {
    color: #ccc;
    margin-left: 1rem;
    font-size: 1.2rem;
    transition: color 0.3s;
}
.social-links a:hover {
    color: #ffd700;
}
@media (max-width: 992px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .longtail-links {
        grid-template-columns: 1fr;
    }
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
