:root {
            --primary-dark: #1a472a;
            --primary-green: #2d5a27;
            --accent-gold: #c8a951;
            --accent-red: #8b0000;
            --text-light: #f0f0f0;
            --text-dark: #222;
            --bg-light: #fdfdfd;
            --bg-card: #fff;
            --shadow: rgba(0, 20, 5, 0.15);
            --transition: all 0.3s ease;
        }
        * {
            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: var(--text-dark);
            background-color: var(--bg-light);
            background-image: linear-gradient(to bottom, #0c1f13 0%, var(--bg-light) 400px);
            background-attachment: fixed;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--primary-dark);
            color: var(--text-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
            font-size: 2.2rem;
            color: var(--accent-gold);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1.5px;
            transition: var(--transition);
        }
        .my-logo:hover {
            color: #fff;
            transform: scale(1.02);
        }
        .main-nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
            transition: var(--transition);
            position: relative;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent-gold);
            background-color: rgba(255,255,255,0.05);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        .nav-links a:hover::after {
            width: 80%;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: rgba(255,255,255,0.05);
            padding: 0.75rem 0;
            font-size: 0.9rem;
            color: #ccc;
        }
        .breadcrumb a {
            color: var(--accent-gold);
        }
        .breadcrumb span {
            margin: 0 0.5rem;
        }
        .page-hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center/cover;
            color: white;
            text-align: center;
            padding: 4rem 1rem;
            margin-bottom: 3rem;
            border-bottom: 4px solid var(--accent-gold);
        }
        .page-hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            color: var(--accent-gold);
        }
        .page-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .search-form {
            max-width: 600px;
            margin: 2rem auto 0;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        .search-form input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            transition: var(--transition);
            font-weight: bold;
        }
        .search-form button:hover {
            background-color: #a00;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 3rem 0;
        }
        article {
            background: var(--bg-card);
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px var(--shadow);
            border-left: 5px solid var(--primary-green);
        }
        .content-block {
            margin-bottom: 3rem;
        }
        h2, h3, h4 {
            color: var(--primary-dark);
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h2 {
            font-size: 2.2rem;
            border-bottom: 2px solid var(--accent-gold);
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--primary-green);
        }
        h4 {
            font-size: 1.4rem;
            color: var(--accent-red);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead-in {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary-dark);
            border-left: 4px solid var(--accent-gold);
            padding-left: 1rem;
            margin: 2rem 0;
        }
        .highlight {
            background-color: #f8f8e8;
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px dashed var(--accent-gold);
            margin: 2rem 0;
        }
        .cast-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .cast-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px var(--shadow);
            transition: var(--transition);
        }
        .cast-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px var(--shadow);
        }
        .cast-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-bottom: 3px solid var(--accent-gold);
        }
        .cast-card .info {
            padding: 1.5rem;
        }
        .cast-card h4 {
            margin-top: 0;
            color: var(--primary-dark);
        }
        .character {
            color: var(--accent-red);
            font-weight: bold;
            margin: 0.5rem 0;
        }
        .link-list {
            list-style: none;
            padding: 1.5rem;
            background: #f9f9f9;
            border-radius: 8px;
        }
        .link-list li {
            margin-bottom: 0.75rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .link-list li::before {
            content: '🦕';
            position: absolute;
            left: 0;
        }
        .link-list a {
            color: var(--primary-green);
            text-decoration: underline;
            transition: var(--transition);
        }
        .link-list a:hover {
            color: var(--accent-red);
        }
        aside {
            background: var(--bg-card);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: var(--primary-dark);
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-gold);
            margin-bottom: 1rem;
        }
        .update-time {
            background: var(--primary-dark);
            color: white;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            font-size: 0.95rem;
        }
        .update-time i {
            color: var(--accent-gold);
            margin-right: 0.5rem;
        }
        .user-interaction {
            background: var(--bg-card);
            padding: 2.5rem;
            border-radius: 10px;
            margin-top: 3rem;
            box-shadow: 0 10px 30px var(--shadow);
        }
        .rating-section,
        .comment-section {
            margin-bottom: 3rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star.active,
        .star:hover {
            color: var(--accent-gold);
        }
        .interaction-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: var(--primary-dark);
        }
        .form-group input,
        .form-group textarea {
            padding: 1rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .submit-btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
        }
        .site-footer {
            background-color: var(--primary-dark);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.75rem;
            color: #ccc;
            transition: var(--transition);
        }
        friend-link:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .page-hero h1 {
                font-size: 2.5rem;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--primary-dark);
                flex-direction: column;
                padding: 1rem;
                text-align: center;
                box-shadow: 0 10px 20px var(--shadow);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-toggle {
                display: block;
            }
            .cast-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            article, aside, .user-interaction {
                padding: 1.5rem;
            }
            .header-content {
                flex-wrap: wrap;
            }
        }
        @media (max-width: 480px) {
            .page-hero h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .cast-grid {
                grid-template-columns: 1fr;
            }
        }
