        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #c00a0a;
            --primary-dark: #8b0000;
            --secondary: #f0c808;
            --dark: #111;
            --darker: #0a0a0a;
            --light: #f5f5f5;
            --gray: #333;
            --gray-light: #777;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--darker);
            color: var(--light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-primary { color: var(--primary); }
        .text-secondary { color: var(--secondary); }
        .bg-dark { background-color: var(--dark); }
        .py-1 { padding-top: 1rem; padding-bottom: 1rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .py-3 { padding-top: 3rem; padding-bottom: 3rem; }
        .my-2 { margin-top: 2rem; margin-bottom: 2rem; }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .hidden { display: none !important; }
        .btn {
            display: inline-block;
            background: linear-gradient(45deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 12px 28px;
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        .btn:hover {
            background: linear-gradient(45deg, var(--primary-dark), var(--primary));
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(192, 10, 10, 0.4);
        }
        header {
            background-color: rgba(10, 10, 10, 0.95);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -1px;
        }
        .my-logo a {
            background: none;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.95rem;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--light);
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--dark);
            padding: 20px;
            border-top: 1px solid var(--gray);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px 0;
            border-bottom: 1px solid var(--gray);
            font-weight: 600;
            text-transform: uppercase;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: var(--gray);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--light);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb i {
            margin: 0 8px;
            color: var(--gray-light);
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1534423861386-85a16f5d13fd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            padding: 80px 20px;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 3px 3px 6px black;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ddd;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.1rem; }
        }
        main {
            padding: 40px 0;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: rgba(30, 30, 30, 0.7);
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1, h2, h3, h4 {
            color: var(--light);
            margin-top: 1.5em;
            margin-bottom: 0.7em;
            line-height: 1.3;
        }
        h1 {
            font-size: 3rem;
            border-bottom: 3px solid var(--primary);
            padding-bottom: 10px;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--secondary);
            border-left: 5px solid var(--primary);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #f0c808;
        }
        h4 {
            font-size: 1.4rem;
            color: #e0a800;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: #ccc;
        }
        .highlight {
            background-color: rgba(192, 10, 10, 0.1);
            border-left: 4px solid var(--primary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        .quote {
            font-style: italic;
            font-size: 1.3rem;
            color: #aaa;
            text-align: center;
            padding: 30px;
            border-top: 2px solid var(--gray);
            border-bottom: 2px solid var(--gray);
            margin: 40px 0;
        }
        .feature-img {
            width: 100%;
            border-radius: 8px;
            border: 3px solid var(--primary);
            margin: 30px auto;
            box-shadow: 0 10px 20px rgba(0,0,0,0.7);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray-light);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        aside {
            background-color: rgba(40, 40, 40, 0.8);
            border-radius: 8px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 35px;
        }
        .widget-title {
            color: var(--secondary);
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary);
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed var(--gray);
        }
        .link-list li:last-child {
            border-bottom: none;
        }
        .link-list a {
            display: block;
            padding: 8px 5px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        .link-list a:hover {
            background-color: rgba(192, 10, 10, 0.2);
            padding-left: 10px;
        }
        .interactive-section {
            background-color: var(--dark);
            border-radius: 8px;
            padding: 25px;
            margin: 40px 0;
            border: 1px solid var(--gray);
        }
        .interactive-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            background-color: #222;
            border: 1px solid var(--gray);
            border-radius: 4px;
            color: var(--light);
            font-size: 1rem;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 5px;
            font-size: 2rem;
            margin: 10px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: var(--secondary);
        }
        footer {
            background-color: var(--dark);
            border-top: 3px solid var(--primary);
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 20px;
        }
        .footer-links h4 {
            color: var(--light);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            padding: 10px 15px;
            background-color: rgba(255,255,255,0.05);
            border-radius: 4px;
            margin-bottom: 10px;
            transition: background-color 0.3s;
        }
        friend-link:hover {
            background-color: rgba(192, 10, 10, 0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--gray);
            color: var(--gray-light);
            font-size: 0.9rem;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: var(--gray-light);
            margin-top: 30px;
            padding-top: 10px;
            border-top: 1px dashed var(--gray);
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            article, aside {
                padding: 20px;
            }
            .hero {
                padding: 50px 20px;
            }
        }
