* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: #0a0e17;
    color: #e0e0e0;
    line-height: 1.7;
    overflow-x: hidden;
}
a {
    color: #ff4655;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
a:hover {
    color: #ff7c87;
    text-shadow: 0 0 8px rgba(255, 70, 85, 0.5);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
.site-header {
    background: linear-gradient(135deg, #1a1f2e 0%, #0a0e17 100%);
    padding: 1.2rem 5%;
    border-bottom: 3px solid #ff4655;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.my-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, #ff4655, #00d9ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(255, 70, 85, 0.3);
    letter-spacing: 1px;
}
.my-logo a {
    background: none;
    color: inherit;
}
.my-logo:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.main-nav a {
    color: #b0b7c3;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff4655;
    transition: width 0.3s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}
.main-nav a:hover,
.main-nav a.active {
    color: #ffffff;
}
.hamburger {
    display: none;
    background: none;
    border: none;
    color: #ff4655;
    font-size: 1.8rem;
    cursor: pointer;
}
.breadcrumb {
    padding: 1rem 5%;
    background-color: #111827;
    font-size: 0.9rem;
}
.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}
.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin: 0 10px;
    color: #6b7280;
}
.breadcrumb a {
    color: #9ca3af;
}
.breadcrumb a:hover {
    color: #ff4655;
}
.hero {
    background: radial-gradient(circle at 70% 30%, #1e293b, transparent 50%),
                radial-gradient(circle at 20% 80%, #111827, transparent 50%),
                #0a0e17;
    padding: 3rem 5%;
    text-align: center;
    border-bottom: 1px solid #1f2937;
}
.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #ff4655, #00d9ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}
.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #cbd5e1;
}
.search-box {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.search-box input {
    flex-grow: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: #1e293b;
    color: #f1f5f9;
    font-size: 1rem;
}
.search-box input:focus {
    outline: 2px solid #ff4655;
    outline-offset: -2px;
}
.search-box button {
    background: linear-gradient(90deg, #ff4655, #ff6b7a);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}
.search-box button:hover {
    background: linear-gradient(90deg, #ff2e3f, #ff4655);
}
.container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    padding: 3rem 5%;
    max-width: 1600px;
    margin: 0 auto;
}
.main-content {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #334155;
}
.sidebar {
    background: rgba(17, 24, 39, 0.8);
    border-radius: 12px;
    padding: 2rem;
    align-self: start;
    border: 1px solid #374151;
}
h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #f8fafc;
}
h1 { font-size: 3.2rem; }
h2 {
    font-size: 2.4rem;
    border-left: 5px solid #00d9ff;
    padding-left: 1rem;
    margin-top: 3rem;
}
h3 {
    font-size: 1.8rem;
    color: #ffb347;
    margin-top: 2.5rem;
}
h4 {
    font-size: 1.4rem;
    color: #7ee7fc;
    margin-top: 2rem;
}
p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: justify;
}
strong {
    color: #ffb347;
    font-weight: 700;
}
blockquote {
    border-left: 4px solid #ff4655;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    background: rgba(255, 70, 85, 0.05);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
}
ul, ol {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}
li {
    margin-bottom: 0.7rem;
}
img.featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    margin: 2.5rem auto;
    border: 3px solid #334155;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}
.caption {
    text-align: center;
    font-style: italic;
    color: #94a3b8;
    margin-top: -1.5rem;
    margin-bottom: 2.5rem;
}
.widget {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px dashed #4b5563;
}
.widget:last-child {
    border-bottom: none;
}
.widget h3 {
    font-size: 1.5rem;
    margin-top: 0;
    color: #00d9ff;
}
.link-list a {
    display: block;
    padding: 0.8rem 0;
    border-bottom: 1px solid #374151;
    color: #cbd5e1;
}
.link-list a:hover {
    background: rgba(255, 70, 85, 0.1);
    padding-left: 10px;
    color: #ff4655;
}
.comment-rating-section {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 12px;
    padding: 2.5rem;
    margin-top: 3rem;
    border: 1px solid #475569;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #cbd5e1;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    background: #1e293b;
    border: 1px solid #475569;
    border-radius: 6px;
    color: #f1f5f9;
    font-size: 1rem;
}
.form-group textarea {
    min-height: 150px;
    resize: vertical;
}
.star-rating {
    display: flex;
    gap: 0.5rem;
    font-size: 1.8rem;
    color: #4b5563;
    margin: 0.5rem 0 1.5rem;
}
.star-rating .star {
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}
.star-rating .star:hover,
.star-rating .star.active {
    color: #ffd700;
    transform: scale(1.2);
}
.submit-btn {
    background: linear-gradient(90deg, #00d9ff, #0088cc);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.3);
}
.submit-btn:hover {
    background: linear-gradient(90deg, #00c3ff, #0077aa);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 217, 255, 0.5);
}
.site-footer {
    background: #030712;
    padding: 3rem 5% 1.5rem;
    border-top: 3px solid #ff4655;
    margin-top: 4rem;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}
.footer-section h4 {
    color: #00d9ff;
    margin-top: 0;
    font-size: 1.3rem;
}
.friend-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
friend-link {
    display: block;
    padding: 0.7rem 1rem;
    background: rgba(255, 70, 85, 0.1);
    border-radius: 6px;
    border-left: 3px solid #ff4655;
    transition: all 0.3s ease;
}
friend-link:hover {
    background: rgba(255, 70, 85, 0.2);
    transform: translateX(5px);
}
.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 0.9rem;
}
@media (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .sidebar {
        order: -1;
    }
}
@media (max-width: 768px) {
    .my-logo {
        font-size: 2rem;
    }
    .hamburger {
        display: block;
    }
    .main-nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #1a1f2e;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 1rem 5%;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
    .main-nav.active ul {
        display: flex;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    .main-content,
    .sidebar,
    .comment-rating-section {
        padding: 1.5rem;
    }
}
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.7rem;
    }
    .search-box {
        flex-direction: column;
        border-radius: 12px;
    }
    .search-box input,
    .search-box button {
        width: 100%;
        border-radius: 0;
    }
}
