:root {
            --primary-dark: #1a1a2e;
            --secondary-dark: #16213e;
            --accent-blue: #0f3460;
            --accent-gold: #e9b949;
            --accent-red: #e94560;
            --text-light: #f1f1f1;
            --text-gray: #b8b8b8;
            --border-radius: 8px;
            --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(--primary-dark);
            background-image: radial-gradient(circle at 20% 30%, rgba(15, 52, 96, 0.2) 0%, transparent 20%),
                              radial-gradient(circle at 80% 80%, rgba(233, 69, 96, 0.1) 0%, transparent 20%);
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-red);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(22, 33, 62, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 2px solid var(--accent-blue);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-red));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            border-bottom-color: var(--accent-gold);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: var(--accent-gold);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(255,255,255,0.05);
            margin-bottom: 30px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb span {
            color: var(--text-gray);
            margin: 0 8px;
        }
        main {
            padding: 30px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background-color: rgba(22, 33, 62, 0.7);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255,255,255,0.05);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            color: var(--accent-gold);
            line-height: 1.2;
            border-bottom: 3px solid var(--accent-red);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: var(--accent-gold);
            padding-left: 15px;
            border-left: 5px solid var(--accent-red);
        }
        h3 {
            font-size: 1.6rem;
            margin: 30px 0 15px;
            color: var(--text-light);
        }
        h4 {
            font-size: 1.3rem;
            margin: 25px 0 12px;
            color: var(--text-gray);
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--accent-gold);
            font-weight: 600;
            margin-bottom: 30px;
            padding: 20px;
            background-color: rgba(233, 185, 73, 0.1);
            border-radius: var(--border-radius);
            border-left: 5px solid var(--accent-gold);
        }
        .highlight {
            background-color: rgba(233, 69, 96, 0.15);
            padding: 25px;
            border-radius: var(--border-radius);
            margin: 30px 0;
            border: 1px solid rgba(233, 69, 96, 0.3);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
        .info-box {
            display: flex;
            background-color: rgba(15, 52, 96, 0.5);
            padding: 20px;
            border-radius: var(--border-radius);
            margin: 25px 0;
            align-items: center;
        }
        .info-icon {
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin-right: 20px;
            flex-shrink: 0;
        }
        .img-container {
            margin: 30px auto;
            text-align: center;
            max-width: 800px;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            border: 2px solid var(--accent-blue);
            transition: var(--transition);
        }
        .img-container img:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.4);
        }
        figcaption {
            margin-top: 10px;
            font-style: italic;
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        aside {
            background-color: rgba(22, 33, 62, 0.7);
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
            border: 1px solid rgba(255,255,255,0.05);
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget-title {
            font-size: 1.4rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-red);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 1px solid var(--accent-blue);
            background-color: rgba(255,255,255,0.08);
            color: var(--text-light);
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            outline: none;
        }
        .search-form button {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #d4334e;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
        }
        .rating-form label, .comment-form label {
            margin-bottom: 8px;
            font-weight: 600;
        }
        .rating-stars {
            display: flex;
            justify-content: space-around;
            margin: 15px 0;
            font-size: 1.8rem;
            color: var(--text-gray);
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: var(--accent-gold);
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid var(--accent-blue);
            background-color: rgba(255,255,255,0.08);
            color: var(--text-light);
            border-radius: var(--border-radius);
            outline: none;
            font-family: inherit;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        button[type="submit"] {
            background-color: var(--accent-blue);
            color: white;
            border: none;
            padding: 14px;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        button[type="submit"]:hover {
            background-color: #133a6e;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed rgba(255,255,255,0.1);
        }
        .link-list a {
            display: block;
            padding: 8px;
            border-radius: 5px;
            transition: var(--transition);
        }
        .link-list a:hover {
            background-color: rgba(233, 185, 73, 0.1);
            text-decoration: none;
            padding-left: 15px;
        }
        footer {
            background-color: var(--secondary-dark);
            padding: 50px 0 30px;
            margin-top: 60px;
            border-top: 3px solid var(--accent-red);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: var(--accent-gold);
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        friend-link {
            display: block;
            margin-bottom: 15px;
            padding: 10px;
            background-color: rgba(255,255,255,0.05);
            border-radius: 5px;
            transition: var(--transition);
        }
        friend-link:hover {
            background-color: rgba(233, 185, 73, 0.1);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background-color: var(--secondary-dark);
                flex-direction: column;
                align-items: center;
                padding-top: 40px;
                transition: 0.5s;
                box-shadow: -5px 0 15px rgba(0,0,0,0.5);
                z-index: 999;
            }
            .nav-links.active {
                right: 0;
            }
            .nav-links li {
                margin: 0 0 30px 0;
            }
            .hamburger {
                display: block;
            }
            .header-content {
                padding: 0 10px;
            }
            article, aside {
                padding: 20px;
            }
            .lead {
                font-size: 1.1rem;
                padding: 15px;
            }
        }
        @media print {
            header, aside, footer, .breadcrumb, .search-form, .rating-form, .comment-form {
                display: none;
            }
            body {
                color: black;
                background: white;
            }
            a {
                color: blue;
            }
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
