        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #f9a826;
            --accent-dark: #d68910;
            --text: #e6e6e6;
            --text-secondary: #b0b0b0;
            --card-bg: rgba(255, 255, 255, 0.05);
            --border: rgba(249, 168, 38, 0.3);
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--text);
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-dark);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--accent), var(--accent-dark));
            color: #000;
            padding: 12px 28px;
            border-radius: 4px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
            text-decoration: none;
            color: #000;
        }
        .section {
            padding: 60px 0;
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--accent);
            position: relative;
            padding-bottom: 15px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--accent);
        }
        .card {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
        }
        header {
            background: rgba(22, 33, 62, 0.95);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--accent);
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Arial Black', sans-serif;
        }
        .logo span {
            color: var(--text);
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 4px;
        }
        nav a:hover {
            background: rgba(249, 168, 38, 0.1);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent);
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(0, 0, 0, 0.2);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .breadcrumb span {
            color: var(--text-secondary);
            margin: 0 8px;
        }
        .hero {
            text-align: center;
            padding: 80px 0;
            background: radial-gradient(circle at center, rgba(26,26,46,0.8) 0%, rgba(22,33,62,0.9) 100%), url('https://images.unsplash.com/photo-1533616688419-b7a585564f70?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center/cover;
            border-bottom: 3px solid var(--accent);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: var(--text-secondary);
        }
        .search-container {
            max-width: 700px;
            margin: 40px auto;
            padding: 20px;
        }
        .search-form {
            display: flex;
            box-shadow: var(--shadow);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            background: rgba(255,255,255,0.1);
            color: var(--text);
            font-size: 1.1rem;
            outline: none;
        }
        .search-input::placeholder {
            color: var(--text-secondary);
        }
        .search-btn {
            background: var(--accent);
            color: #000;
            border: none;
            padding: 0 35px;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: var(--accent-dark);
        }
        main {
            flex: 1;
            padding: 40px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article h2, article h3, article h4 {
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }
        article h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--accent);
            padding-left: 15px;
        }
        article h3 {
            font-size: 1.8rem;
        }
        article h4 {
            font-size: 1.5rem;
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        article strong {
            color: var(--accent);
            font-weight: 700;
        }
        article em {
            color: var(--text-secondary);
            font-style: italic;
        }
        .highlight-box {
            background: rgba(249, 168, 38, 0.1);
            border-left: 4px solid var(--accent);
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .image-wrapper {
            margin: 40px 0;
            text-align: center;
        }
        .image-wrapper img {
            border-radius: 12px;
            box-shadow: var(--shadow);
            border: 2px solid var(--border);
        }
        .image-caption {
            font-style: italic;
            color: var(--text-secondary);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .link-list {
            background: var(--card-bg);
            padding: 25px;
            border-radius: 12px;
            margin: 40px 0;
        }
        .link-list h3 {
            margin-top: 0;
        }
        .link-list ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        .link-list li {
            padding: 12px 15px;
            background: rgba(255,255,255,0.03);
            border-radius: 6px;
            transition: var(--transition);
        }
        .link-list li:hover {
            background: rgba(249, 168, 38, 0.1);
            transform: translateX(5px);
        }
        aside .card {
            position: sticky;
            top: 120px;
        }
        .info-box {
            margin-bottom: 30px;
        }
        .info-box h3 {
            color: var(--accent);
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--border);
        }
        .info-box ul {
            list-style: none;
        }
        .info-box li {
            padding: 10px 0;
            border-bottom: 1px dashed rgba(255,255,255,0.1);
        }
        .info-box li:last-child {
            border-bottom: none;
        }
        .interaction {
            margin-top: 60px;
        }
        .interaction h2 {
            margin-bottom: 30px;
        }
        .rating-form, .comment-form {
            margin-bottom: 50px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 20px 0;
            font-size: 2rem;
            color: #555;
            cursor: pointer;
        }
        .stars .star {
            transition: var(--transition);
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--accent);
            transform: scale(1.2);
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 15px;
            background: rgba(255,255,255,0.08);
            border: 1px solid var(--border);
            border-radius: 6px;
            color: var(--text);
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(249, 168, 38, 0.2);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        footer {
            background: rgba(0, 0, 0, 0.7);
            padding: 60px 0 30px;
            margin-top: 80px;
            border-top: 2px solid var(--accent);
        }
        .footer-grid {
            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: 20px;
            display: block;
        }
        .friend-links {
            margin: 30px 0;
        }
        friend-link {
            display: inline-block;
            background: rgba(249, 168, 38, 0.1);
            padding: 8px 15px;
            margin: 5px 10px 5px 0;
            border-radius: 4px;
            transition: var(--transition);
        }
        friend-link:hover {
            background: rgba(249, 168, 38, 0.25);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
                order: 2;
            }
            nav {
                display: none;
                width: 100%;
                order: 3;
                margin-top: 20px;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 10px;
            }
            nav li {
                width: 100%;
            }
            nav a {
                display: block;
                padding: 15px;
                border-radius: 6px;
                background: rgba(255,255,255,0.05);
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .section-title {
                font-size: 2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
        }
