:root {
            --primary: #2A5CAA;
            --secondary: #FCC419;
            --accent: #E03131;
            --dark: #1A1A2E;
            --light: #F8F9FA;
            --gray: #6C757D;
            --border-radius: 12px;
            --shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
            --max-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f0f2f5;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
            color: white;
            padding: 1.2rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--secondary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: -0.5px;
        }
        .my-logo i {
            color: #FFD43B;
        }
        .my-logo span {
            background: linear-gradient(90deg, #FFD43B, #FFA94D);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2.2rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
        }
        nav a:hover {
            color: var(--secondary);
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--secondary);
            transition: width 0.3s ease;
            border-radius: 2px;
        }
        nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 1rem 0;
            margin-bottom: 2.5rem;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 0.7rem;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            font-size: 0.95rem;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        .breadcrumb i {
            margin: 0 0.5rem;
            font-size: 0.8rem;
            color: #adb5bd;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 3rem;
            margin: 2.5rem 0;
        }
        article {
            background: white;
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
        }
        aside {
            background: white;
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .search-widget, .rating-widget, .comment-form {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            font-size: 1.4rem;
            color: var(--dark);
            margin-bottom: 1.2rem;
            padding-bottom: 0.7rem;
            border-bottom: 3px solid var(--secondary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget-title i {
            color: var(--primary);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid #dee2e6;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-form input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(42, 92, 170, 0.2);
        }
        .search-form button {
            background: linear-gradient(to right, var(--primary), #3a6ec4);
            color: white;
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
        }
        .search-form button:hover {
            background: linear-gradient(to right, #1f4a8f, var(--primary));
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            color: #ffd700;
        }
        .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover {
            transform: scale(1.2);
        }
        .rating-form button {
            width: 100%;
            padding: 0.9rem;
            background-color: var(--accent);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background-color: #c92a2a;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(224, 49, 49, 0.3);
        }
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 0.9rem 1.2rem;
            margin-bottom: 1.2rem;
            border: 2px solid #dee2e6;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(42, 92, 170, 0.2);
        }
        .comment-form button {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(to right, var(--primary), #3a6ec4);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.05rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background: linear-gradient(to right, #1f4a8f, var(--primary));
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(42, 92, 170, 0.25);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 5px solid var(--secondary);
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid #e9ecef;
        }
        h3 {
            font-size: 1.7rem;
            color: #495057;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--gray);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.08rem;
            color: #444;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--dark);
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-left: 5px solid var(--secondary);
            border-radius: 8px;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 1.8rem;
            border-radius: var(--border-radius);
            border-left: 5px solid #ffc107;
            margin: 2rem 0;
        }
        .highlight strong {
            color: #856404;
            font-size: 1.1rem;
        }
        .dice-link-box {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border: 2px dashed #adb5bd;
            border-radius: var(--border-radius);
            padding: 2rem;
            text-align: center;
            margin: 2.5rem 0;
        }
        .dice-link-box h3 {
            color: var(--accent);
            margin-top: 0;
        }
        .dice-link-box p {
            font-size: 1.1rem;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--primary), #3a6ec4);
            color: white;
            padding: 0.9rem 2.2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(42, 92, 170, 0.25);
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(42, 92, 170, 0.35);
            background: linear-gradient(to right, #1f4a8f, var(--primary));
        }
        .btn-accent {
            background: linear-gradient(to right, var(--accent), #f03e3e);
        }
        .btn-accent:hover {
            background: linear-gradient(to right, #c92a2a, var(--accent));
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            box-shadow: var(--shadow);
            display: block;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: -1.5rem;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        ul, ol {
            margin-left: 1.8rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.7rem;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border-bottom: 1px dotted transparent;
        }
        a:hover {
            color: var(--accent);
            border-bottom: 1px dotted var(--accent);
        }
        strong {
            color: var(--dark);
            font-weight: 700;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 5px;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 3.5rem 0 2rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 1.5rem;
        }
        .footer-links h4 {
            color: #adb5bd;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid #495057;
            padding-bottom: 0.5rem;
        }
        .footer-links ul {
            list-style: none;
            margin-left: 0;
        }
        .footer-links a {
            color: #dee2e6;
            font-weight: 400;
            display: block;
            padding: 0.3rem 0;
        }
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 8px;
        }
        friend-link {
            display: block;
            background-color: #2d3748;
            padding: 1.2rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            text-align: center;
        }
        friend-link a {
            color: #90cdf4;
            font-size: 1.1rem;
        }
        friend-link a:hover {
            color: #63b3ed;
        }
        .copyright {
            text-align: center;
            padding-top: 2.5rem;
            margin-top: 2.5rem;
            border-top: 1px solid #495057;
            color: #adb5bd;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.9rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav ul {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0;
                margin-top: 1.5rem;
            }
            nav ul.active {
                display: flex;
            }
            nav li {
                width: 100%;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            nav a {
                display: block;
                padding: 1rem 0;
            }
            .hamburger {
                display: block;
            }
            .footer-container {
                grid-template-columns: 1fr;
            }
            article {
                padding: 1.8rem;
            }
            .my-logo a {
                font-size: 1.9rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .lead {
                font-size: 1.15rem;
            }
        }
