        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #f0f0f0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #4fc3f7;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
            text-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(0, 20, 40, 0.95);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ffcc00, #ff8a00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .main-nav a {
            color: #b0e0e6;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #ffcc00;
            transition: width 0.3s;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ffcc00;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #80d8ff;
        }
        .search-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 15px;
            margin: 2rem 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border: none;
            border-radius: 50px 0 0 50px;
            background: #2a3b5c;
            color: white;
            font-size: 1rem;
            outline: none;
        }
        .search-button {
            padding: 0.9rem 1.8rem;
            border: none;
            border-radius: 0 50px 50px 0;
            background: linear-gradient(to right, #ff9800, #ff5722);
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .search-button:hover {
            background: linear-gradient(to right, #ff5722, #ff9800);
            transform: translateY(-2px);
        }
        .content-main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-main {
                grid-template-columns: 1fr;
            }
        }
        .article-area {
            background: rgba(30, 40, 70, 0.8);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        .sidebar {
            background: rgba(25, 35, 60, 0.8);
            padding: 1.8rem;
            border-radius: 15px;
            align-self: start;
        }
        .sidebar h3 {
            color: #ffcc00;
            border-bottom: 2px solid #ffcc00;
            padding-bottom: 0.5rem;
            margin-bottom: 1.2rem;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 0.8rem;
            padding-left: 1.2rem;
            position: relative;
        }
        .sidebar li::before {
            content: '🎰';
            position: absolute;
            left: 0;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffcc00;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(255, 204, 0, 0.3);
        }
        h2 {
            font-size: 2rem;
            color: #4fc3f7;
            margin: 2.5rem 0 1.2rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #4fc3f7;
        }
        h3 {
            font-size: 1.6rem;
            color: #a5d6a7;
            margin: 2rem 0 1rem 0;
        }
        h4 {
            font-size: 1.3rem;
            color: #ffab91;
            margin: 1.5rem 0 0.8rem 0;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #bbdefb;
            font-weight: 300;
            margin-bottom: 2rem;
            padding: 1.2rem;
            background: rgba(33, 150, 243, 0.1);
            border-left: 5px solid #2196f3;
            border-radius: 0 10px 10px 0;
        }
        .highlight {
            background: rgba(255, 235, 59, 0.2);
            padding: 0.2rem 0.5rem;
            border-radius: 5px;
            font-weight: bold;
        }
        .tip-box {
            background: rgba(76, 175, 80, 0.15);
            border-left: 5px solid #4caf50;
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 10px 10px 0;
        }
        .tip-box::before {
            content: '💡 Pro Tip: ';
            font-weight: bold;
            color: #4caf50;
        }
        .content-links {
            display: inline-flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .content-links a {
            background: rgba(63, 81, 181, 0.2);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            border: 1px solid #3f51b5;
            font-size: 0.9rem;
        }
        .content-links a:hover {
            background: rgba(63, 81, 181, 0.5);
            transform: translateY(-3px);
        }
        .featured-image {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .featured-image img {
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s;
        }
        .featured-image img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .rating-section, .comment-section {
            background: rgba(40, 50, 80, 0.8);
            padding: 2rem;
            border-radius: 15px;
            margin: 3rem 0;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffcc00;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: bold;
            color: #bbdefb;
        }
        .form-group input,
        .form-group textarea {
            padding: 0.9rem;
            border-radius: 10px;
            border: 1px solid #4fc3f7;
            background: #2a3b5c;
            color: white;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #ffcc00;
        }
        .submit-button {
            align-self: flex-start;
            padding: 0.9rem 2rem;
            background: linear-gradient(to right, #00c853, #64dd17);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-button:hover {
            background: linear-gradient(to right, #64dd17, #00c853);
            transform: translateY(-3px) scale(1.05);
        }
        .site-footer {
            background: rgba(0, 10, 25, 0.95);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-links a {
            color: #80d8ff;
            font-size: 1.1rem;
        }
        friend-link {
            display: block;
            text-align: center;
            margin: 1.5rem 0;
            font-size: 1.2rem;
        }
        friend-link a {
            color: #ffcc00;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
        }
        .last-updated {
            text-align: right;
            color: #ffab91;
            font-size: 0.9rem;
            margin-bottom: 2rem;
            font-style: italic;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(0, 20, 40, 0.98);
                padding: 1rem;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
                z-index: 999;
            }
            .main-nav.active ul {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .article-area {
                padding: 1.5rem;
            }
            .content-links {
                justify-content: center;
            }
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .article-area, .sidebar, .rating-section, .comment-section {
            animation: fadeInUp 0.8s ease-out;
        }
