        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        }
        :root {
            --primary: #FF6B35;
            --secondary: #1A5F7A;
            --accent: #FFD166;
            --dark: #2D3047;
            --light: #F8F9FA;
            --gray: #6C757D;
            --success: #38B000;
            --danger: #E63946;
            --radius: 8px;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
            line-height: 1.6;
        }
        body {
            color: var(--dark);
            background: var(--light);
            max-width: 1440px;
            margin: 0 auto;
            padding: 0;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            color: var(--dark);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        h2 {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            border-bottom: 3px solid var(--accent);
            padding-bottom: 0.5rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.4rem;
            color: var(--secondary);
            margin-top: 1.8rem;
        }
        h4 {
            font-size: 1.1rem;
            color: var(--dark);
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1rem;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        .site-header {
            background: var(--dark);
            color: white;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo:hover {
            text-decoration: none;
            color: white;
        }
        .my-logo::before {
            content: "🎈";
            font-size: 1.8rem;
        }
        .main-nav {
            display: flex;
            gap: 1.5rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            align-items: center;
        }
        .nav-link {
            color: white;
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            font-weight: 500;
        }
        .nav-link:hover {
            background: rgba(255, 255, 255, 0.1);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .search-container {
            position: relative;
            max-width: 400px;
            width: 100%;
        }
        #search-form {
            display: flex;
            background: white;
            border-radius: 50px;
            overflow: hidden;
        }
        #search-input {
            flex: 1;
            padding: 0.8rem 1.5rem;
            border: none;
            outline: none;
            font-size: 1rem;
        }
        #search-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }
        #search-btn:hover {
            background: var(--secondary);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            padding: 2rem;
            min-height: 100vh;
        }
        main {
            background: white;
            padding: 2rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        aside {
            background: white;
            padding: 1.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .info-box {
            border: 2px solid var(--accent);
            border-radius: var(--radius);
            padding: 1rem;
            margin-bottom: 1.5rem;
        }
        .info-box h3 {
            background: var(--accent);
            margin: -1rem -1rem 1rem -1rem;
            padding: 0.8rem 1rem;
            text-align: center;
        }
        .content-image {
            width: 100%;
            height: auto;
            border-radius: var(--radius);
            margin: 1.5rem 0;
            box-shadow: var(--shadow);
            object-fit: cover;
        }
        .image-caption {
            text-align: center;
            color: var(--gray);
            font-style: italic;
            margin-top: -0.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }
        ul, ol {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        th, td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        th {
            background: var(--secondary);
            color: white;
            font-weight: 600;
        }
        tr:hover {
            background: #f9f9f9;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 1.5rem;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            min-height: 44px;
            min-width: 44px;
        }
        .btn:hover {
            background: var(--secondary);
            transform: translateY(-2px);
            text-decoration: none;
        }
        .btn-secondary {
            background: var(--secondary);
        }
        .btn-small {
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark);
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: var(--radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus {
            outline: none;
            border-color: var(--primary);
        }
        .rating {
            display: flex;
            gap: 0.2rem;
            margin: 1rem 0;
        }
        .star {
            color: #ddd;
            cursor: pointer;
            font-size: 1.5rem;
            transition: var(--transition);
        }
        .star.active, .star:hover {
            color: #FFD166;
        }
        .social-share {
            display: flex;
            gap: 1rem;
            margin: 2rem 0;
        }
        .share-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: var(--transition);
        }
        .facebook { background: #1877F2; }
        .twitter { background: #1DA1F2; }
        .reddit { background: #FF4500; }
        .discord { background: #5865F2; }
        .share-btn:hover {
            transform: translateY(-3px);
            text-decoration: none;
        }
        #back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
        }
        #back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        #back-to-top:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }
        .site-footer {
            background: var(--dark);
            color: white;
            padding: 3rem 2rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: var(--accent);
            margin-bottom: 1rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1rem 0;
        }
        .friend-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            color: white;
            text-decoration: none;
        }
        .friend-link:hover {
            background: rgba(255, 255, 255, 0.2);
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        .highlight {
            background: linear-gradient(120deg, var(--accent) 0%, var(--accent) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            padding: 0.1rem 0.2rem;
        }
        .tag {
            display: inline-block;
            background: var(--secondary);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.8rem;
            margin: 0.2rem;
        }
        .alert {
            padding: 1rem;
            border-radius: var(--radius);
            margin: 1rem 0;
            border-left: 4px solid;
        }
        .alert-info {
            background: #e7f3ff;
            border-left-color: var(--secondary);
        }
        .alert-warning {
            background: #fff3cd;
            border-left-color: var(--accent);
        }
        .last-updated {
            background: var(--light);
            padding: 1rem;
            border-radius: var(--radius);
            margin: 1rem 0;
            font-size: 0.9rem;
            color: var(--gray);
            border-left: 4px solid var(--success);
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            .main-nav {
                width: 100%;
                justify-content: center;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--dark);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                box-shadow: var(--shadow);
            }
            .nav-list.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                right: 2rem;
                top: 1.5rem;
            }
            .search-container {
                max-width: 100%;
                order: 3;
                margin-top: 1rem;
            }
            .social-share {
                justify-content: center;
                flex-wrap: wrap;
            }
            #back-to-top {
                bottom: 1rem;
                right: 1rem;
                width: 44px;
                height: 44px;
            }
        }
        @media (max-width: 480px) {
            .content-wrapper, main, aside {
                padding: 1rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .btn {
                padding: 0.7rem 1.2rem;
                font-size: 0.9rem;
            }
        }
        @media print {
            .site-header, aside, .social-share, #back-to-top, .site-footer {
                display: none;
            }
            body {
                color: black;
                background: white;
            }
            a {
                color: black;
                text-decoration: underline;
            }
        }
