        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a0e17;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #f39c12;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 15px 0;
            border-bottom: 3px solid #f39c12;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(45deg, #f39c12, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .my-logo:hover {
            transform: scale(1.05);
            transition: transform 0.3s;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
        }
        .main-nav a:hover {
            background-color: rgba(243, 156, 18, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #f39c12;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #131a2e;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: #f39c12;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .main-article {
            background-color: #151b2e;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            border-bottom: 2px dashed #f39c12;
            padding-bottom: 20px;
        }
        .article-header h1 {
            font-size: 3rem;
            color: #ffd700;
            margin-bottom: 15px;
            text-shadow: 2px 2px 5px #000;
        }
        .article-meta {
            color: #aaa;
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .hero-image {
            margin: 30px 0;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid #f39c12;
        }
        .hero-image img {
            width: 100%;
            transition: transform 0.5s;
        }
        .hero-image:hover img {
            transform: scale(1.03);
        }
        .article-content {
            font-size: 1.1rem;
        }
        .article-content h2 {
            color: #f39c12;
            font-size: 2.2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #2a3b5c;
        }
        .article-content h3 {
            color: #ffd700;
            font-size: 1.8rem;
            margin: 30px 0 15px;
        }
        .article-content h4 {
            color: #ff6b6b;
            font-size: 1.5rem;
            margin: 25px 0 10px;
        }
        .article-content p {
            margin-bottom: 25px;
            text-align: justify;
            line-height: 1.8;
        }
        .article-content strong {
            color: #ffd700;
            font-weight: 700;
        }
        .article-content em {
            color: #6ab04c;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(145deg, #1e2a4a, #131f3a);
            border-left: 5px solid #f39c12;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .internal-links {
            background-color: #1a243f;
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .internal-links h3 {
            margin-top: 0;
        }
        .internal-links ul {
            list-style: square inside;
            padding-left: 15px;
        }
        .internal-links li {
            margin-bottom: 10px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background-color: #151b2e;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .widget h3 {
            color: #f39c12;
            font-size: 1.5rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .widget input, .widget textarea, .widget select {
            padding: 12px;
            border: 1px solid #2a3b5c;
            border-radius: 8px;
            background-color: #1a243f;
            color: #e0e0e0;
            font-size: 1rem;
        }
        .widget textarea {
            min-height: 120px;
            resize: vertical;
        }
        .widget button {
            background: linear-gradient(45deg, #f39c12, #e74c3c);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .widget button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 2rem;
            margin: 15px 0;
        }
        .rating-stars i {
            cursor: pointer;
            color: #444;
            transition: color 0.3s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #ffd700;
        }
        .site-footer {
            background: linear-gradient(135deg, #1a1a2e 0%, #0d111f 100%);
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 3px solid #f39c12;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #f39c12;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            padding: 10px 15px;
            background-color: #1a243f;
            border-radius: 8px;
            margin-bottom: 10px;
            border-left: 4px solid #6ab04c;
            transition: background-color 0.3s;
        }
        friend-link:hover {
            background-color: #222d4e;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2a3b5c;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .main-nav {
                width: 100%;
                display: none;
                margin-top: 20px;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 15px;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .content-wrapper {
                gap: 25px;
            }
            .main-article, .widget {
                padding: 20px;
            }
            .footer-content {
                flex-direction: column;
            }
        }
