        * { 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: #f0f0f0;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            min-height: 100vh;
            padding-bottom: 40px;
        }
        a { color: #ff4655; text-decoration: none; transition: all 0.3s ease; }
        a:hover { color: #ff6b7a; text-shadow: 0 0 8px rgba(255, 70, 85, 0.5); }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3, h4 { font-family: 'Cinzel', 'Times New Roman', serif; color: #ffcc00; margin-bottom: 1rem; line-height: 1.3; }
        h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); border-bottom: 3px solid #ff4655; padding-bottom: 10px; margin-top: 1.5rem; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-top: 2.5rem; padding-left: 10px; border-left: 5px solid #00a8ff; }
        h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin-top: 2rem; color: #4ecdc4; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; text-align: justify; }
        .lead { font-size: 1.3rem; color: #ccc; font-weight: 300; }
        strong, b { color: #ffcc00; font-weight: 700; }
        em { color: #4ecdc4; font-style: italic; }
        blockquote {
            border-left: 4px solid #ff4655;
            padding-left: 20px;
            margin: 2rem 0;
            font-style: italic;
            color: #aaa;
            background: rgba(255, 70, 85, 0.05);
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        .site-header {
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
            border-bottom: 2px solid #ff4655;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ffcc00, #ff4655);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .logo span { color: #00a8ff; }
        .nav-desktop { display: flex; gap: 2rem; }
        .nav-desktop a {
            color: #ddd;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-desktop a:hover { background: rgba(255, 70, 85, 0.2); color: #fff; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffcc00;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(20, 20, 30, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.8);
            border-top: 1px solid #333;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: #ddd;
            padding: 15px;
            border-bottom: 1px solid #333;
            font-size: 1.1rem;
        }
        .nav-mobile a:last-child { border-bottom: none; }
        .breadcrumb {
            padding: 1rem 0;
            color: #aaa;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #00a8ff; }
        .breadcrumb span { color: #ffcc00; }
        .search-module {
            background: rgba(30, 30, 46, 0.8);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            border: 1px solid #444;
            text-align: center;
        }
        .search-module h3 { text-align: center; border: none; padding: 0; }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 1.5rem auto 0;
        }
        .search-form input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #444;
            border-right: none;
            background: #1a1a2e;
            color: #fff;
            font-size: 1rem;
            border-radius: 50px 0 0 50px;
        }
        .search-form button {
            background: linear-gradient(to right, #ff4655, #ff6b7a);
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.3s;
        }
        .search-form button:hover { background: linear-gradient(to right, #ff2e3f, #ff4655); }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-top: 2rem;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-content { background: rgba(25, 25, 40, 0.7); padding: 2rem; border-radius: 10px; border: 1px solid #333; }
        .sidebar {
            background: rgba(25, 25, 40, 0.7);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid #333;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid #ff4655;
            box-shadow: 0 10px 25px rgba(255, 70, 85, 0.3);
        }
        .featured-image figcaption {
            text-align: center;
            padding: 10px;
            background: rgba(0,0,0,0.7);
            color: #aaa;
            font-style: italic;
        }
        .interview-card {
            background: rgba(40, 40, 60, 0.5);
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            border-left: 5px solid #00a8ff;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .interview-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 168, 255, 0.2);
        }
        .actor-name {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 1rem;
        }
        .actor-name i { color: #ffcc00; font-size: 1.5rem; }
        .user-interaction {
            background: rgba(30, 30, 46, 0.9);
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            border: 1px solid #444;
        }
        .rating-module, .comment-module { margin-bottom: 3rem; }
        .rating-module h3, .comment-module h3 { text-align: center; }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 1.5rem 0;
            font-size: 2rem;
            color: #555;
        }
        .stars i { cursor: pointer; transition: color 0.2s, transform 0.2s; }
        .stars i:hover { transform: scale(1.2); }
        .stars i.active { color: #ffcc00; }
        .rating-form, .comment-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .form-group label { display: block; margin-bottom: 5px; color: #ccc; }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 15px;
            background: #1a1a2e;
            border: 2px solid #444;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
        }
        .form-group textarea { min-height: 150px; resize: vertical; }
        .submit-btn {
            background: linear-gradient(to right, #00a8ff, #4ecdc4);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover { background: linear-gradient(to right, #0097e6, #2bcbba); }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
        }
        .web-link {
            background: rgba(40, 40, 60, 0.6);
            padding: 15px;
            border-radius: 6px;
            border: 1px solid #444;
            transition: all 0.3s;
        }
        .web-link:hover { background: rgba(60, 60, 80, 0.8); border-color: #ff4655; }
        .site-footer {
            text-align: center;
            padding: 2rem;
            color: #888;
            font-size: 0.9rem;
            border-top: 1px solid #333;
            margin-top: 3rem;
        }
        .copyright { margin-top: 1rem; }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-desktop { display: none; }
            .header-container { flex-wrap: wrap; }
            .search-form { flex-direction: column; }
            .search-form input { border-radius: 50px; border-right: 2px solid #444; margin-bottom: 10px; }
            .search-form button { border-radius: 50px; padding: 15px; }
            .web-links { grid-template-columns: 1fr; }
        }
