* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
body {
    background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3a 100%);
    color: #e0e0ff;
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.site-header {
    background: rgba(10, 10, 40, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #4a00e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.my-logo {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 2.2rem;
    background: linear-gradient(90deg, #00dbde, #fc00ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    text-shadow: 0 0 15px rgba(0, 219, 222, 0.3);
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.my-logo:hover {
    text-shadow: 0 0 25px rgba(0, 219, 222, 0.7);
    transform: scale(1.05);
}
.hamburger {
    display: none;
    background: none;
    border: none;
    color: #00dbde;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
}
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}
.main-nav a {
    color: #b0b0ff;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}
.main-nav a:hover,
.main-nav a.active {
    color: #fff;
    background: linear-gradient(90deg, #4a00e0, #8e2de2);
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #00dbde;
    transition: all 0.3s ease;
}
.main-nav a:hover::after {
    left: 10%;
    width: 80%;
}
.breadcrumb {
    padding: 15px 0;
    font-size: 0.9rem;
    color: #aaa;
}
.breadcrumb a {
    color: #8e2de2;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.main-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 30px 0;
    flex: 1;
}
.article-content {
    background: rgba(20, 20, 50, 0.8);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #333366;
}
.hero-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #00dbde, #fc00ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}
.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #444488;
    font-size: 0.9rem;
    color: #aaa;
}
.featured-img {
    width: 100%;
    border-radius: 10px;
    margin: 25px 0;
    border: 3px solid #4a00e0;
    transition: transform 0.5s ease;
}
.featured-img:hover {
    transform: scale(1.02);
}
h2 {
    color: #00dbde;
    margin: 35px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #8e2de2;
    font-size: 1.8rem;
}
h3 {
    color: #b0b0ff;
    margin: 25px 0 10px;
    font-size: 1.4rem;
}
h4 {
    color: #d0d0ff;
    margin: 20px 0 8px;
    font-size: 1.1rem;
}
p {
    margin-bottom: 20px;
    text-align: justify;
    hyphens: auto;
}
.lead {
    font-size: 1.2rem;
    color: #fff;
    background: rgba(74, 0, 224, 0.1);
    padding: 15px;
    border-left: 4px solid #00dbde;
    border-radius: 0 8px 8px 0;
    margin-bottom: 25px;
}
.highlight {
    background: linear-gradient(90deg, #4a00e0, #8e2de2);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
blockquote {
    border-left: 5px solid #00dbde;
    padding-left: 20px;
    margin: 25px 0;
    font-style: italic;
    color: #ccc;
    background: rgba(0, 219, 222, 0.05);
    padding: 15px 20px;
    border-radius: 0 10px 10px 0;
}
ul, ol {
    margin-left: 25px;
    margin-bottom: 20px;
}
li {
    margin-bottom: 8px;
}
a {
    color: #8e2de2;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #00dbde;
    text-decoration: underline;
}
.sidebar {
    background: rgba(20, 20, 50, 0.8);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #333366;
    align-self: start;
    position: sticky;
    top: 120px;
}
.widget {
    margin-bottom: 30px;
}
.widget-title {
    color: #00dbde;
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #444488;
}
.search-form {
    display: flex;
}
.search-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #444488;
    background: #0a0a2a;
    color: #fff;
    border-radius: 5px 0 0 5px;
}
.search-form button {
    background: linear-gradient(90deg, #4a00e0, #8e2de2);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.search-form button:hover {
    background: linear-gradient(90deg, #8e2de2, #4a00e0);
}
.related-links a {
    display: block;
    padding: 10px 15px;
    margin-bottom: 8px;
    background: rgba(74, 0, 224, 0.1);
    border-radius: 5px;
    border-left: 3px solid #00dbde;
    transition: all 0.3s ease;
}
.related-links a:hover {
    background: rgba(74, 0, 224, 0.3);
    border-left-color: #fc00ff;
    transform: translateX(5px);
}
.comment-section, .rating-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #333366;
}
.comment-form, .rating-form {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    margin-bottom: 5px;
    color: #b0b0ff;
}
.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    border: 1px solid #444488;
    background: #0a0a2a;
    color: #fff;
    border-radius: 5px;
    font-size: 1rem;
}
.form-group textarea {
    min-height: 150px;
    resize: vertical;
}
.submit-btn {
    background: linear-gradient(90deg, #00dbde, #fc00ff);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}
.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.star-rating {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}
.star-rating input {
    display: none;
}
.star-rating label {
    font-size: 2rem;
    color: #555;
    cursor: pointer;
    transition: color 0.3s;
}
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: #ffcc00;
}
.site-footer {
    background: rgba(5, 5, 20, 0.95);
    margin-top: 60px;
    padding: 40px 0 20px;
    border-top: 2px solid #4a00e0;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}
friend-link {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 15px;
}
friend-link a {
    color: #b0b0ff;
    padding: 8px;
    display: block;
    background: rgba(255,255,255,0.05);
    border-radius: 5px;
}
friend-link a:hover {
    background: rgba(74, 0, 224, 0.3);
}
.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333366;
    color: #888;
    font-size: 0.9rem;
}
@media (max-width: 992px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    .sidebar {
        position: static;
    }
}
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .main-nav ul {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: rgba(10, 10, 40, 0.98);
        width: 280px;
        padding: 20px;
        border-radius: 0 0 0 15px;
        transition: right 0.5s ease;
        box-shadow: -5px 5px 15px rgba(0,0,0,0.5);
    }
    .main-nav.active ul {
        right: 0;
    }
    .hero-title {
        font-size: 2rem;
    }
    .header-inner {
        flex-wrap: wrap;
    }
}
