        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
        html { scroll-behavior: smooth; }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.7;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a { color: #e50914; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #ff6b6b; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
            border-bottom: 3px solid #e50914;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #e50914;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Trebuchet MS', sans-serif;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo span { color: #fff; }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #ccc;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #e50914;
            left: 0;
            bottom: 0;
            transition: width 0.3s;
        }
        .desktop-nav a:hover:after { width: 100%; }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: #1a1f2e;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #333;
        }
        .mobile-nav.active { display: flex; }
        .mobile-nav ul { list-style: none; }
        .mobile-nav li { margin: 1rem 0; }
        .mobile-nav a { color: #ccc; font-size: 1.1rem; }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #1a1f2e;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb span { margin: 0 0.5rem; }
        .hero {
            background: linear-gradient(rgba(15,20,25,0.8), rgba(15,20,25,0.9)), url('https://images.unsplash.com/photo-1531259683007-016a7b628fc3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            padding: 4rem 0;
            text-align: center;
            border-bottom: 2px solid #333;
        }
        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: #fff;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 6px #000;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #ccc;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 3rem 0;
        }
        .content-area { grid-column: 1; }
        .sidebar { grid-column: 2; }
        .content-card {
            background: #1a1f2e;
            border-radius: 12px;
            padding: 2.5rem;
            margin-bottom: 2.5rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
            border-left: 5px solid #e50914;
        }
        h2 {
            color: #e50914;
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #2a2f3e;
        }
        h3 {
            color: #ff9f43;
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: #00d2d3;
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #2a2f3e;
            border-left: 4px solid #e50914;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-img {
            width: 100%;
            border-radius: 10px;
            margin: 2rem 0;
            border: 3px solid #333;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 2rem 0;
        }
        .link-list a {
            background: #2a2f3e;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            color: #fff;
            font-weight: 600;
            border: 1px solid #444;
        }
        .link-list a:hover {
            background: #e50914;
            border-color: #e50914;
            text-decoration: none;
        }
        .form-section {
            background: #1a1f2e;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.9rem;
            border-radius: 6px;
            border: 1px solid #444;
            background: #0f1419;
            color: #fff;
            font-size: 1rem;
        }
        button, .btn {
            background: linear-gradient(to right, #e50914, #b5070f);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        button:hover, .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(229, 9, 20, 0.4);
            text-decoration: none;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            color: #444;
            font-size: 1.8rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        .sidebar-widget {
            background: #1a1f2e;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            border-top: 4px solid #00d2d3;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: #00d2d3;
            margin-bottom: 1rem;
        }
        footer {
            background: #0a0e13;
            color: #aaa;
            padding: 3rem 0 1.5rem;
            border-top: 3px solid #333;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 2rem;
            color: #e50914;
            margin-bottom: 1rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1rem 0;
        }
        .friend-links a {
            color: #ff9f43;
            padding: 0.3rem 0.8rem;
            background: #1a1f2e;
            border-radius: 4px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #777;
        }
        @media (max-width: 992px) {
            main { grid-template-columns: 1fr; }
            .sidebar { grid-column: 1; }
            .desktop-nav { display: none; }
            .mobile-nav-toggle { display: block; }
        }
        @media (max-width: 768px) {
            .hero { padding: 2.5rem 0; }
            .content-card { padding: 1.5rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .link-list { justify-content: center; }
        }
