:root {
            --primary: #0078d7;
            --secondary: #ff3c00;
            --dark: #0c0c1c;
            --light: #f0f4f8;
            --gray: #6c757d;
            --success: #28a745;
            --warning: #ffc107;
            --spartan-gold: #c9a35e;
            --forerunner-silver: #a0a0a0;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--secondary);
        }
        header {
            background: linear-gradient(135deg, #0c0c1c 0%, #1a1a2e 100%);
            border-bottom: 3px solid var(--spartan-gold);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-family: 'Arial Black', Impact, sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-weight: 900;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        .desktop-nav a {
            color: var(--light);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--spartan-gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            padding: 0.5rem;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            border-radius: 2px;
            transition: 0.3s;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--dark);
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: 0 10px 15px rgba(0,0,0,0.5);
            border-top: 1px solid #333;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: var(--light);
            padding: 1rem;
            border-bottom: 1px solid #333;
            font-weight: 600;
        }
        .breadcrumb {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            border-bottom: 1px solid #333;
        }
        .breadcrumb a {
            color: var(--forerunner-silver);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        article {
            background-color: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            padding: 3rem;
            margin-bottom: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        h1 {
            font-size: 3.2rem;
            color: var(--spartan-gold);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(201, 163, 94, 0.3);
        }
        h2 {
            font-size: 2.4rem;
            color: var(--primary);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(0, 120, 215, 0.3);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--forerunner-silver);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--light);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #e0e0e0;
        }
        .lead {
            font-size: 1.4rem;
            font-weight: 300;
            color: #b0c7ff;
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }
        .highlight {
            background-color: rgba(0, 120, 215, 0.1);
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            width: 100%;
            max-width: 900px;
            height: auto;
            border-radius: 10px;
            margin: 2.5rem auto;
            display: block;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(255, 60, 0, 0.2);
        }
        strong {
            color: var(--spartan-gold);
            font-weight: 700;
        }
        em {
            color: #a0d2ff;
            font-style: italic;
        }
        .quote {
            font-size: 1.3rem;
            font-style: italic;
            color: var(--forerunner-silver);
            text-align: center;
            padding: 2rem;
            margin: 3rem 0;
            border-top: 2px solid var(--spartan-gold);
            border-bottom: 2px solid var(--spartan-gold);
            background-color: rgba(201, 163, 94, 0.05);
        }
        .search-section, .comments-section, .rating-section {
            background-color: rgba(255, 255, 255, 0.02);
            border-radius: 10px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .search-section h3, .comments-section h3, .rating-section h3 {
            margin-top: 0;
            color: var(--secondary);
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--forerunner-silver);
        }
        input, textarea, select {
            padding: 0.8rem 1rem;
            background-color: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            color: var(--light);
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 120, 215, 0.2);
        }
        button {
            background: linear-gradient(90deg, var(--primary), #0056a3);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 6px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
        }
        button:hover {
            background: linear-gradient(90deg, var(--secondary), #c43200);
            transform: translateY(-2px);
            box-shadow: 0 7px 15px rgba(255, 60, 0, 0.3);
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: var(--gray);
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: var(--warning);
        }
        footer {
            background-color: #050510;
            border-top: 3px solid var(--spartan-gold);
            padding: 3rem 2rem;
            margin-top: 4rem;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-section h4 {
            color: var(--spartan-gold);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: block;
            margin: 1.5rem 0;
            padding: 0.8rem;
            background-color: rgba(255, 255, 255, 0.03);
            border-radius: 6px;
            border-left: 3px solid var(--primary);
            transition: transform 0.3s ease;
        }
        friend-link:hover {
            transform: translateX(5px);
            background-color: rgba(0, 120, 215, 0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #333;
            color: var(--gray);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.1rem; }
            h3 { font-size: 1.6rem; }
            .container { padding: 1.5rem; }
            article { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .header-container { padding: 1rem; }
            .desktop-nav { display: none; }
            .hamburger { display: flex; }
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.9rem; }
            .lead { font-size: 1.2rem; }
            .breadcrumb { padding: 0.8rem 1rem; }
        }
        @media (max-width: 576px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            article { padding: 1.5rem; }
            .featured-image { margin: 1.5rem 0; }
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        .text-center { text-align: center; }
        .mt-3 { margin-top: 3rem; }
        .mb-3 { margin-bottom: 3rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
