:root {
            --primary-green: #1a472a;
            --secondary-green: #2a623d;
            --accent-amber: #d4af37;
            --accent-red: #8b0000;
            --dark-bg: #0c0c0c;
            --light-bg: #f5f5f5;
            --text-light: #e8e8e8;
            --text-dark: #121212;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            --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-light);
            background-color: var(--dark-bg);
            background-image: linear-gradient(rgba(12, 12, 12, 0.9), rgba(18, 18, 18, 0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%231a472a" opacity="0.05"/></svg>');
            background-attachment: fixed;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(12, 12, 12, 0.95);
            border-bottom: 2px solid var(--accent-amber);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(5px);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .my-logo {
            font-family: 'Impact', 'Haettenschweiler', sans-serif;
            font-size: 2.2rem;
            color: var(--accent-amber);
            text-decoration: none;
            letter-spacing: 1.5px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo:hover {
            color: #fff;
            transform: scale(1.03);
        }
        .my-logo i {
            font-size: 1.8rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
            position: relative;
        }
        .nav-links a:hover,
        .nav-links a.active {
            background-color: var(--primary-green);
            color: var(--accent-amber);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--accent-amber);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 80%;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
            border-top: 1px solid #333;
            margin-top: 1rem;
        }
        .breadcrumb a {
            color: var(--accent-amber);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 2rem 0;
        }
        article {
            background: rgba(30, 30, 30, 0.8);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
            border-left: 5px solid var(--accent-amber);
        }
        h1, h2, h3, h4 {
            color: var(--accent-amber);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            border-bottom: 3px double var(--secondary-green);
            padding-bottom: 1rem;
            margin-bottom: 2rem;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 3rem;
            border-left: 4px solid var(--accent-red);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 2.5rem;
            color: #4ecdc4;
        }
        h4 {
            font-size: 1.4rem;
            margin-top: 2rem;
            color: #ff9a76;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: #ccc;
            background: rgba(42, 98, 61, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--accent-amber);
            margin-bottom: 2.5rem;
        }
        .highlight {
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            padding: 1rem;
            border-radius: 6px;
            margin: 1.5rem 0;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        .note {
            background-color: rgba(26, 71, 42, 0.3);
            border-left: 4px solid var(--primary-green);
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        strong {
            color: var(--accent-amber);
            font-weight: 700;
        }
        em {
            color: #a3d9b1;
            font-style: italic;
        }
        a.content-link {
            color: #6bbf59;
            text-decoration: none;
            border-bottom: 1px dotted #6bbf59;
            transition: var(--transition);
        }
        a.content-link:hover {
            color: #9dff8a;
            border-bottom: 1px solid #9dff8a;
            background-color: rgba(107, 191, 89, 0.1);
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        li strong {
            color: #ffcc5c;
        }
        .image-container {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .featured-img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid var(--secondary-green);
            box-shadow: var(--shadow);
            transition: transform 0.5s ease;
        }
        .featured-img:hover {
            transform: scale(1.01);
        }
        .img-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .timeline {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .timeline-card {
            background: rgba(40, 40, 40, 0.9);
            border-radius: 10px;
            padding: 1.5rem;
            border-top: 5px solid var(--accent-red);
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        .timeline-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }
        .timeline-card h3 {
            color: #ff9a76;
            font-size: 1.5rem;
            margin-top: 0;
        }
        .timeline-year {
            display: inline-block;
            background: var(--accent-red);
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        .search-box {
            background: rgba(42, 98, 61, 0.2);
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            text-align: center;
        }
        .search-box h3 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 1.5rem auto 0;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem 1.2rem;
            border: 2px solid var(--primary-green);
            border-radius: 8px 0 0 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            background: var(--primary-green);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: var(--transition);
            font-weight: bold;
        }
        .search-form button:hover {
            background: var(--secondary-green);
        }
        .user-interaction {
            background: rgba(30, 30, 30, 0.9);
            border-radius: 10px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid #444;
        }
        .rating-form, .comment-form {
            margin-top: 2rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: gold;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 0.8rem;
            margin: 0.5rem 0 1rem;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid #555;
            border-radius: 6px;
            color: white;
            font-family: inherit;
        }
        button[type="submit"] {
            background: linear-gradient(to right, var(--primary-green), var(--secondary-green));
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        button[type="submit"]:hover {
            background: linear-gradient(to right, var(--secondary-green), #3a7a4a);
            transform: translateY(-2px);
        }
        footer {
            background-color: var(--primary-green);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 3px solid var(--accent-amber);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: var(--accent-amber);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            margin-bottom: 0.8rem;
            border-radius: 6px;
            transition: var(--transition);
        }
        friend-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }
        friend-link a {
            color: #a3d9b1;
            text-decoration: none;
            display: block;
        }
        friend-link a:hover {
            color: #fff;
        }
        .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) {
            .nav-links {
                gap: 1rem;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background-color: rgba(12, 12, 12, 0.98);
                width: 100%;
                text-align: center;
                padding: 2rem;
                transition: 0.5s;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
                border-top: 1px solid #333;
            }
            .nav-links.active {
                left: 0;
            }
            .nav-links li {
                margin: 0.8rem 0;
            }
            .header-top {
                padding: 0.8rem 0;
            }
            article {
                padding: 1.5rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input,
            .search-form button {
                width: 100%;
                border-radius: 8px;
                margin-bottom: 0.5rem;
            }
        }
        @media print {
            .search-box, .user-interaction, .hamburger, footer {
                display: none;
            }
            body {
                color: black;
                background: white;
            }
            a {
                color: #0000EE;
                text-decoration: underline;
            }
        }
