        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #0a2e1d 0%, #1a5c3a 100%);
            color: #f0f0f0;
        }
        a {
            color: #ffcc00;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #fff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(0, 0, 0, 0.9);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ffcc00;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Georgia', serif;
        }
        .logo a:hover {
            color: #fff;
            text-decoration: none;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 25px;
        }
        nav ul li a {
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        nav ul li a:hover {
            background: #ffcc00;
            color: #000;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffcc00;
        }
        .breadcrumb {
            padding: 10px 0;
            background: rgba(255, 255, 255, 0.1);
            margin-top: 10px;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
        }
        .breadcrumb ul li {
            margin-right: 10px;
            font-size: 0.9rem;
        }
        .breadcrumb ul li:after {
            content: '>';
            margin-left: 10px;
            color: #ccc;
        }
        .breadcrumb ul li:last-child:after {
            content: '';
        }
        main {
            padding: 30px 0;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            margin-top: 20px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
        }
        article {
            padding: 20px;
            background: rgba(0, 0, 0, 0.7);
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }
        aside {
            padding: 20px;
            background: rgba(0, 0, 0, 0.7);
            border-radius: 10px;
            height: fit-content;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffcc00;
            margin-bottom: 20px;
            text-align: center;
            border-bottom: 3px solid #ffcc00;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 2.2rem;
            color: #4cd964;
            margin-top: 30px;
            margin-bottom: 15px;
            padding-left: 10px;
            border-left: 5px solid #4cd964;
        }
        h3 {
            font-size: 1.8rem;
            color: #5ac8fa;
            margin-top: 25px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 1.4rem;
            color: #ff9500;
            margin-top: 20px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .highlight {
            background: rgba(255, 204, 0, 0.2);
            padding: 15px;
            border-left: 4px solid #ffcc00;
            margin: 20px 0;
            font-style: italic;
        }
        .bold {
            font-weight: bold;
            color: #ffcc00;
        }
        ul, ol {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        li {
            margin-bottom: 10px;
        }
        form {
            margin: 20px 0;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            background: #222;
            color: #fff;
        }
        button {
            padding: 12px 25px;
            background: #ffcc00;
            color: #000;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        button:hover {
            background: #ffdb4d;
        }
        .widget {
            margin-bottom: 30px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
        }
        .widget h3 {
            font-size: 1.5rem;
            color: #ffcc00;
            margin-bottom: 15px;
        }
        .rating {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .stars {
            color: #ffcc00;
        }
        footer {
            background: rgba(0, 0, 0, 0.9);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .footer-section h4 {
            color: #ffcc00;
            margin-bottom: 20px;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
            font-style: italic;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            margin-top: 30px;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .header-content {
                flex-wrap: wrap;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 15px;
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
                margin-left: 0;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 5px;
        }
