        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .site-header {
            background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
            color: white;
            padding: 1rem 2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: #ffeb3b;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: transform 0.3s ease;
        }
        .logo a:hover {
            transform: scale(1.05);
        }
        .logo span {
            color: #ffffff;
            font-weight: 300;
        }
        .main-nav ul {
            display: flex;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background-color: #ffeb3b;
            color: #1a237e;
        }
        .breadcrumb {
            background-color: #e8eaf6;
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            color: #5c6bc0;
        }
        .breadcrumb ul {
            display: flex;
            gap: 0.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .main-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        .content-area {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .sidebar-widget {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        h1 {
            font-size: 2.8rem;
            color: #1a237e;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #3949ab;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ffeb3b;
        }
        h3 {
            font-size: 1.5rem;
            color: #5c6bc0;
            margin: 1.8rem 0 1rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #555;
            background-color: #f3f4fd;
            padding: 1.2rem;
            border-left: 5px solid #3949ab;
            border-radius: 0 8px 8px 0;
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 0.2rem 0.4rem;
            border-radius: 3px;
            font-weight: 600;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .skin-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .skin-card {
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 1.2rem;
            transition: all 0.3s ease;
            text-align: center;
        }
        .skin-card:hover {
            border-color: #3949ab;
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(57, 73, 171, 0.15);
        }
        .skin-card img {
            border-radius: 8px;
            margin-bottom: 1rem;
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .search-form,
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #444;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #3949ab;
        }
        button, .btn {
            background: linear-gradient(to right, #3949ab, #5c6bc0);
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #303f9f, #3949ab);
            transform: scale(1.03);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.5rem;
            color: #ffc107;
            cursor: pointer;
        }
        .internal-links {
            background: #1a237e;
            color: white;
            padding: 2.5rem;
        }
        .internal-links h3 {
            color: #ffeb3b;
            text-align: center;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 6px;
            transition: background 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        .web-link a {
            color: #c5cae9;
            display: block;
        }
        .web-link a:hover {
            color: #ffeb3b;
            text-decoration: underline;
        }
        .site-footer {
            background: #0d1440;
            color: #bdbdbd;
            text-align: center;
            padding: 2rem;
            font-size: 0.95rem;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }
        .footer-links a {
            color: #9fa8da;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #ffeb3b;
        }
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .sidebar {
                order: -1;
            }
            h1 {
                font-size: 2.3rem;
            }
        }
        @media (max-width: 768px) {
            .site-header {
                padding: 1rem;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: #1a237e;
                padding: 1rem;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            .main-container {
                padding: 0 1rem;
            }
            .content-area {
                padding: 1.5rem;
            }
            .skin-list {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            .web-links-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .lead {
                font-size: 1.1rem;
            }
            .skin-list {
                grid-template-columns: 1fr;
            }
        }
