        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #2a2d43;
            --secondary: #e63946;
            --accent: #4cc9f0;
            --light: #f8f9fa;
            --dark: #1d1e2c;
            --gray: #6c757d;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f111a;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        .text-center {
            text-align: center;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(135deg, var(--secondary), #c1121f);
            color: white;
            border-radius: 4px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn:hover {
            background: linear-gradient(135deg, #c1121f, var(--secondary));
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(230, 57, 70, 0.3);
        }
        header {
            background-color: rgba(29, 30, 44, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--secondary);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(to right, #4cc9f0, #e63946);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .my-logo a {
            background: none;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: var(--light);
            font-weight: 500;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--light);
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            padding: 20px;
            flex-direction: column;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            color: var(--light);
            font-size: 1.1rem;
            display: block;
            padding: 10px;
            border-left: 3px solid transparent;
        }
        .mobile-nav a:hover {
            border-left-color: var(--secondary);
            background-color: rgba(255,255,255,0.05);
        }
        .breadcrumb {
            background-color: rgba(42, 45, 67, 0.7);
            padding: 12px 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--gray);
        }
        .breadcrumb a {
            color: var(--accent);
        }
        .breadcrumb span {
            color: var(--gray);
            margin: 0 8px;
        }
        .hero {
            background: radial-gradient(circle at 30% 20%, #2a2d43 0%, #1d1e2c 70%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0zNiAxOGMtOS45NDEgMC0xOCA4LjA1OS0xOCAxOHM4LjA1OSAxOCAxOCAxOCAxOC04LjA1OSAxOC0xOC04LjA1OS0xOC0xOC0xOHptMCAyYzguODMzIDAgMTYgNy4xNjcgMTYgMTZzLTcuMTY3IDE2LTE2IDE2LTE2LTcuMTY3LTE2LTE2IDcuMTY3LTE2IDE2LTE2eiIgZmlsbD0icmdiYSgyMDQsIDIwNCwgMjA0LCAwLjAyKSIvPjwvZz48L3N2Zz4=');
            opacity: 0.05;
            z-index: 0;
        }
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        h1 {
            font-size: 3.2rem;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.2rem;
            color: #b0b7c3;
            margin-bottom: 30px;
            max-width: 700px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 40px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: rgba(29, 30, 44, 0.7);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        h2 {
            color: var(--accent);
            font-size: 2.2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(76, 201, 240, 0.3);
        }
        h3 {
            color: #f8f9fa;
            font-size: 1.7rem;
            margin: 30px 0 15px;
        }
        h4 {
            color: #d0d7e0;
            font-size: 1.3rem;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
        }
        strong {
            color: var(--accent);
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(42,45,67,0.8), rgba(29,30,44,0.9));
            border-left: 5px solid var(--secondary);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .image-container {
            margin: 30px 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
            position: relative;
        }
        .image-container img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .image-container:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            padding: 10px;
            background-color: rgba(0,0,0,0.5);
        }
        .interactive-module {
            background-color: rgba(42,45,67,0.8);
            border-radius: 10px;
            padding: 25px;
            margin: 40px 0;
            border: 1px solid rgba(76, 201, 240, 0.2);
        }
        .module-title {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 12px 15px;
            background-color: rgba(29,30,44,0.8);
            border: 1px solid var(--gray);
            border-radius: 4px;
            color: white;
            font-size: 1rem;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            margin: 10px 0;
        }
        .stars .star {
            transition: color 0.2s;
        }
        .stars .star:hover,
        .stars .star.active {
            color: gold;
        }
        aside {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .sidebar-widget {
            background-color: rgba(29,30,44,0.8);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 25px;
            border: 1px solid rgba(76, 201, 240, 0.1);
        }
        .widget-title {
            color: var(--secondary);
            font-size: 1.3rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(230,57,70,0.3);
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-left: 15px;
            position: relative;
        }
        .related-links li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--accent);
        }
        .related-links a {
            color: #d0d7e0;
        }
        .related-links a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        footer {
            background-color: var(--dark);
            border-top: 3px solid var(--secondary);
            padding: 60px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--accent);
            margin-bottom: 15px;
        }
        .footer-links h4 {
            color: var(--light);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #b0b7c3;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            margin: 20px 0;
            padding: 15px;
            background-color: rgba(42,45,67,0.5);
            border-radius: 6px;
            text-align: center;
        }
        friend-link a {
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--gray);
            color: #b0b7c3;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            article, .sidebar-widget, .interactive-module {
                padding: 25px;
            }
            .header-container {
                padding: 12px 15px;
            }
        }
