* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-dark: #1a0b2e;
    --primary-accent: #8a2be2;
    --secondary-accent: #ff6b35;
    --text-light: #f5f5f7;
    --text-gray: #aaa;
    --card-bg: rgba(40, 20, 60, 0.8);
    --border-glow: rgba(138, 43, 226, 0.4);
    --transition: all 0.3s ease;
}
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, #0c041a 0%, #1a0b2e 50%, #2d1b42 100%);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}
.site-header {
    background: rgba(26, 11, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-glow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 2rem;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}
.my-logo {
    font-family: 'Cambria', serif;
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ff6b35, #8a2be2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--transition);
}
.my-logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.6);
}
.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
}
.main-nav a:hover {
    color: var(--secondary-accent);
    background: rgba(255, 107, 53, 0.1);
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-accent);
    transition: var(--transition);
    transform: translateX(-50%);
}
.main-nav a:hover::after {
    width: 80%;
}
.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-light);
}
.breadcrumb {
    max-width: 1400px;
    margin: 1rem auto;
    padding: 0 2rem;
    font-size: 0.9rem;
}
.breadcrumb a {
    color: var(--text-gray);
    text-decoration: none;
}
.breadcrumb a:hover {
    color: var(--secondary-accent);
}
.main-container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}
article {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid var(--border-glow);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
h1 {
    font-size: 3.2rem;
    background: linear-gradient(90deg, #ff6b35, #8a2be2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: center;
}
.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    color: var(--text-gray);
}
.lead-paragraph {
    font-size: 1.3rem;
    color: #e0e0ff;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(138, 43, 226, 0.1);
    border-left: 4px solid var(--primary-accent);
    border-radius: 0 8px 8px 0;
}
h2 {
    font-size: 2.2rem;
    color: var(--secondary-accent);
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}
h3 {
    font-size: 1.7rem;
    color: #d4a5ff;
    margin: 2.5rem 0 1rem;
}
h4 {
    font-size: 1.4rem;
    color: #b38cd9;
    margin: 2rem 0 1rem;
}
p {
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    text-align: justify;
}
.content-highlight {
    background: rgba(255, 107, 53, 0.08);
    padding: 2rem;
    border-radius: 8px;
    margin: 2.5rem 0;
    border-left: 4px solid var(--secondary-accent);
}
.content-highlight b {
    color: var(--secondary-accent);
    font-size: 1.2rem;
}
.feature-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin: 2.5rem 0;
    border: 2px solid var(--border-glow);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
    transition: var(--transition);
}
.feature-image:hover {
    transform: scale(1.005);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
}
.interactive-section {
    background: rgba(40, 20, 60, 0.9);
    border-radius: 12px;
    padding: 2.5rem;
    margin: 3rem 0;
    border: 1px solid var(--border-glow);
}
.interactive-section h3 {
    margin-top: 0;
}
.search-form, .comment-form, .rating-form {
    display: grid;
    gap: 1.2rem;
    margin-top: 1.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #d4a5ff;
}
.form-control {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.2);
}
textarea.form-control {
    min-height: 150px;
    resize: vertical;
}
.btn {
    padding: 1rem 2rem;
    background: linear-gradient(90deg, var(--primary-accent), #6a11cb);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    justify-self: start;
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(138, 43, 226, 0.4);
}
.star-rating {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}
.star {
    font-size: 2rem;
    color: #444;
    cursor: pointer;
    transition: var(--transition);
}
.star:hover,
.star.active {
    color: #ffc107;
}
.sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}
.sidebar-widget {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-glow);
}
.trailer-links {
    list-style: none;
}
.trailer-links li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.trailer-links a {
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
}
.trailer-links a:hover {
    color: var(--secondary-accent);
    transform: translateX(5px);
}
.trailer-links i {
    color: var(--primary-accent);
}
.site-footer {
    background: rgba(20, 10, 35, 0.98);
    border-top: 1px solid var(--border-glow);
    margin-top: 4rem;
    padding: 3rem 2rem 2rem;
}
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}
.footer-section h4 {
    color: var(--secondary-accent);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}
.friend-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.friend-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}
.friend-links a:hover {
    color: var(--secondary-accent);
    padding-left: 5px;
}
.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    font-size: 0.9rem;
}
@media (max-width: 1024px) {
    .main-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .sidebar {
        position: static;
    }
    h1 {
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }
    .main-nav {
        order: 3;
        width: 100%;
        margin-top: 1rem;
        display: none;
    }
    .main-nav.active {
        display: block;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    .hamburger {
        display: block;
    }
    article {
        padding: 2rem;
    }
    h1 {
        font-size: 2.3rem;
    }
    h2 {
        font-size: 1.9rem;
    }
    .lead-paragraph {
        font-size: 1.1rem;
    }
}
@media (max-width: 480px) {
    .site-header,
    .main-container,
    .breadcrumb {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    article {
        padding: 1.5rem;
    }
    h1 {
        font-size: 2rem;
    }
    .interactive-section {
        padding: 1.5rem;
    }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
article, .sidebar-widget, .interactive-section {
    animation: fadeIn 0.6s ease-out;
}
.text-accent {
    color: var(--secondary-accent);
    font-weight: 700;
}
.emoji {
    font-size: 1.2em;
    margin: 0 0.2rem;
}
.highlight-box {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(255, 107, 53, 0.1));
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border: 1px solid var(--border-glow);
}
.quote {
    font-style: italic;
    font-size: 1.2rem;
    color: #d4a5ff;
    border-left: 3px solid var(--primary-accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
}
