* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}
a {
    color: #4dabf7;
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover {
    color: #339af0;
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.site-header {
    background-color: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.my-logo {
    font-family: 'Arial Black', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #ff4757;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 71, 87, 0.5);
}
.my-logo span {
    color: #4dabf7;
}
.my-logo:hover {
    text-decoration: none;
    color: #ff4757;
}
.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}
.desktop-nav a {
    color: #ddd;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 8px 0;
    position: relative;
}
.desktop-nav a:hover {
    text-decoration: none;
    color: #4dabf7;
}
.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #4dabf7;
    transition: width 0.3s ease;
}
.desktop-nav a:hover::after {
    width: 100%;
}
.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 8px 15px;
    width: 300px;
}
.search-box input {
    background: transparent;
    border: none;
    color: #fff;
    width: 100%;
    padding: 5px 10px;
    font-size: 1rem;
    outline: none;
}
.search-box button {
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.3s;
}
.search-box button:hover {
    color: #4dabf7;
}
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 15, 0.98);
    border-top: 1px solid #333;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.mobile-nav.active {
    display: block;
}
.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.mobile-nav a {
    color: #ddd;
    font-size: 1.2rem;
    display: block;
    padding: 12px 15px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
}
.mobile-nav a:hover {
    background: rgba(77, 171, 247, 0.2);
    color: #4dabf7;
    text-decoration: none;
}
.breadcrumb {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
}
.breadcrumb ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    gap: 10px;
}
.breadcrumb li {
    color: #aaa;
    font-size: 0.95rem;
}
.breadcrumb a {
    color: #aaa;
}
.breadcrumb a:hover {
    color: #4dabf7;
}
.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: #666;
}
.main-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 30px 0;
}
@media (max-width: 992px) {
    .main-content {
        grid-template-columns: 1fr;
    }
}
.article-content {
    background: rgba(20, 20, 30, 0.7);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
}
.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
    color: #aaa;
    font-size: 0.95rem;
}
.update-time {
    color: #4dabf7;
    font-weight: 600;
}
h1 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.3;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
h2 {
    font-size: 2rem;
    color: #4dabf7;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #333;
}
h3 {
    font-size: 1.6rem;
    color: #ffa94d;
    margin: 30px 0 15px;
}
h4 {
    font-size: 1.3rem;
    color: #69db7c;
    margin: 25px 0 12px;
}
p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: justify;
}
.lead-paragraph {
    font-size: 1.3rem;
    color: #ddd;
    background: rgba(77, 171, 247, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #4dabf7;
    margin-bottom: 30px;
}
.highlight {
    background-color: rgba(255, 215, 0, 0.15);
    padding: 3px 6px;
    border-radius: 3px;
    font-weight: 600;
}
.trailer-container {
    margin: 40px 0;
    text-align: center;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    padding-top: 56.25%; 
}
.trailer-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.image-container {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.image-container figcaption {
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    font-style: italic;
    color: #aaa;
    text-align: center;
    font-size: 0.95rem;
}
ul, ol {
    margin-left: 25px;
    margin-bottom: 20px;
}
li {
    margin-bottom: 10px;
}
.related-links {
    background: rgba(30, 30, 50, 0.7);
    border-radius: 10px;
    padding: 25px;
    margin: 40px 0;
    border-left: 5px solid #ff4757;
}
.related-links h3 {
    color: #ff4757;
    margin-top: 0;
}
.related-links ul {
    list-style: none;
    margin-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}
.related-links li {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}
.related-links li:hover {
    background: rgba(77, 171, 247, 0.2);
    transform: translateX(5px);
}
.related-links a {
    color: #ddd;
    display: block;
}
.related-links a:hover {
    text-decoration: none;
    color: #4dabf7;
}
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.widget {
    background: rgba(20, 20, 30, 0.7);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #333;
}
.widget h3 {
    font-size: 1.4rem;
    color: #ffa94d;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}
.interaction-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    color: #ddd;
    font-weight: 600;
}
.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #444;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: border 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4dabf7;
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.rating-stars {
    display: flex;
    gap: 5px;
    direction: rtl; 
}
.rating-stars input {
    display: none;
}
.rating-stars label {
    font-size: 1.8rem;
    color: #444;
    cursor: pointer;
    transition: color 0.3s;
}
.rating-stars label:hover,
.rating-stars label:hover ~ label,
.rating-stars input:checked ~ label {
    color: #ffd700;
}
.btn {
    background: linear-gradient(90deg, #4dabf7, #339af0);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}
.btn:hover {
    background: linear-gradient(90deg, #339af0, #228be6);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(51, 154, 240, 0.4);
    text-decoration: none;
}
.comment {
    padding: 15px 0;
    border-bottom: 1px solid #333;
}
.comment:last-child {
    border-bottom: none;
}
.comment-author {
    color: #4dabf7;
    font-weight: 600;
    margin-bottom: 5px;
}
.comment-date {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 8px;
}
.comment-text {
    color: #ccc;
    font-size: 1rem;
}
.site-footer {
    background-color: rgba(10, 10, 15, 0.95);
    border-top: 1px solid #333;
    padding: 50px 0 30px;
    margin-top: 60px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}
.footer-section h4 {
    color: #4dabf7;
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #aaa;
}
.footer-links a:hover {
    color: #4dabf7;
    padding-left: 5px;
}
friend-link {
    display: block;
    margin-bottom: 10px;
}
friend-link a {
    color: #69db7c;
    font-weight: 600;
}
friend-link a:hover {
    color: #ffa94d;
}
.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #777;
    font-size: 0.95rem;
}
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    .desktop-nav {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .search-box {
        order: 3;
        width: 100%;
        margin-top: 15px;
        display: none;
    }
    .search-box.active {
        display: flex;
    }
    .my-logo {
        font-size: 1.8rem;
    }
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    .article-content {
        padding: 25px;
    }
    .related-links ul {
        grid-template-columns: 1fr;
    }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.article-content, .sidebar .widget {
    animation: fadeIn 0.8s ease-out;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0a0a0f;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #444;
}
