        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1a2b;
            color: #e0e9ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            background: linear-gradient(135deg, #1a2b4c 0%, #0d1525 100%);
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, #ffcc00, #ff9900);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .logo a:hover {
            text-decoration: none;
            filter: brightness(1.1);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffcc00;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e0e9ff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #1a2b4c;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid #2a3b5c;
            font-weight: 600;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            background-color: #141f34;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #a0b9e0;
        }
        .breadcrumb span {
            color: #ffcc00;
        }
        .search-container {
            background: linear-gradient(to right, #1e3a5c, #2d4b78);
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            text-align: center;
        }
        .search-box {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-box input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 8px 0 0 8px;
            background: #0f1a2b;
            color: #e0e9ff;
            font-size: 1rem;
        }
        .search-box button {
            background: linear-gradient(to right, #ff9900, #ff6600);
            color: white;
            border: none;
            padding: 1rem 1.8rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        .search-box button:hover {
            background: linear-gradient(to right, #ffaa00, #ff7700);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(20, 31, 52, 0.8);
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border: 1px solid #2a3b5c;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffcc00;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2rem;
            color: #4fc3f7;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #2a3b5c;
        }
        h3 {
            font-size: 1.6rem;
            color: #a0b9e0;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #b3c9f0;
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.2rem;
            color: #b3c9f0;
            background: rgba(30, 58, 92, 0.3);
            padding: 1.5rem;
            border-left: 5px solid #ff9900;
            border-radius: 0 8px 8px 0;
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.1);
            border-left: 4px solid #ffcc00;
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .inline-link {
            font-weight: bold;
            color: #ffcc00;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .img-container {
            margin: 2rem auto;
            text-align: center;
        }
        .img-container img {
            max-height: 500px;
            object-fit: cover;
            box-shadow: 0 8px 20px rgba(0,0,0,0.6);
        }
        .caption {
            font-size: 0.9rem;
            color: #a0b9e0;
            margin-top: 0.5rem;
            font-style: italic;
        }
        ul, ol {
            padding-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        strong {
            color: #ffcc00;
            font-weight: 700;
        }
        .sidebar {
            background: rgba(20, 31, 52, 0.8);
            border-radius: 16px;
            padding: 1.5rem;
            border: 1px solid #2a3b5c;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: #ff9900;
            font-size: 1.5rem;
            margin-top: 0;
        }
        .sidebar ul {
            list-style: none;
            padding-left: 0;
        }
        .sidebar li {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #2a3b5c;
        }
        .sidebar li:last-child {
            border-bottom: none;
        }
        .sidebar a {
            display: block;
            padding: 0.5rem 0;
        }
        .interactive-section {
            background: linear-gradient(135deg, #1a2b4c 0%, #0d1525 100%);
            border-radius: 16px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid #2a3b5c;
        }
        .interactive-section h2 {
            color: #ffcc00;
            border-bottom: none;
            text-align: center;
        }
        .rating-container {
            text-align: center;
            margin: 2rem 0;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 2.5rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        .rating-form, .comment-form {
            display: grid;
            gap: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.9rem;
            border-radius: 8px;
            border: 1px solid #2a3b5c;
            background: #0f1a2b;
            color: #e0e9ff;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, #00b894, #00a085);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1.1rem;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #00d4aa, #00b894);
        }
        .site-footer {
            background: #0d1525;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid #1a2b4c;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: #ffcc00;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            background: #141f34;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            border-left: 5px solid #4fc3f7;
        }
        friend-link a {
            font-weight: bold;
            font-size: 1.1rem;
            color: #e0e9ff;
        }
        friend-link a:hover {
            color: #ffcc00;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2a3b5c;
            color: #a0b9e0;
            font-size: 0.9rem;
        }
