        * {
            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.7;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: #f39c12;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ffdd59;
            text-shadow: 0 0 8px rgba(243, 156, 18, 0.7);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .site-header {
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #f39c12;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.8rem;
            font-weight: bold;
            background: linear-gradient(90deg, #f39c12, #e74c3c);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: #ccc;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: rgba(243, 156, 18, 0.2);
            color: #f39c12;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f39c12;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(20, 20, 30, 0.8);
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: #f39c12;
        }
        .hero {
            text-align: center;
            padding: 80px 0;
            background: radial-gradient(circle at center, rgba(26, 26, 46, 0.9) 0%, rgba(10, 10, 15, 1) 100%);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 0 0 15px rgba(243, 156, 18, 0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #aaa;
        }
        .search-bar {
            max-width: 600px;
            margin: 30px auto;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid #444;
            border-radius: 50px 0 0 50px;
            background: #222;
            color: #fff;
            font-size: 1rem;
        }
        .search-form button {
            background: linear-gradient(90deg, #f39c12, #e74c3c);
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #e74c3c, #f39c12);
            transform: translateX(5px);
        }
        .content-area {
            background: rgba(15, 15, 25, 0.85);
            border-radius: 15px;
            padding: 40px;
            margin: 30px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
        }
        h1, h2, h3, h4 {
            color: #f39c12;
            margin-top: 1.5em;
            margin-bottom: 0.7em;
            line-height: 1.3;
        }
        h1 { font-size: 3rem; }
        h2 { font-size: 2.5rem; border-left: 5px solid #e74c3c; padding-left: 15px; }
        h3 { font-size: 2rem; color: #ffdd59; }
        h4 { font-size: 1.5rem; color: #aaa; }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.4rem;
            color: #ccc;
            font-weight: 300;
            background: rgba(243, 156, 18, 0.05);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #f39c12;
        }
        .highlight {
            background: rgba(243, 156, 18, 0.15);
            padding: 2px 6px;
            border-radius: 3px;
            font-weight: bold;
            color: #ffdd59;
        }
        blockquote {
            border-left: 4px solid #e74c3c;
            padding-left: 25px;
            margin: 30px 0;
            font-style: italic;
            color: #bbb;
            background: rgba(40, 40, 50, 0.5);
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 1.5em;
        }
        li {
            margin-bottom: 0.7em;
        }
        .img-container {
            margin: 40px auto;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s;
        }
        .img-container:hover {
            transform: scale(1.01);
        }
        .img-caption {
            font-size: 0.9rem;
            color: #888;
            margin-top: 10px;
            font-style: italic;
        }
        .interactive-box {
            background: linear-gradient(145deg, #1e1e2e, #2d2d44);
            border: 1px solid #444;
            border-radius: 10px;
            padding: 25px;
            margin: 40px 0;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
            transition: all 0.4s;
        }
        .interactive-box:hover {
            border-color: #f39c12;
            box-shadow: 0 12px 24px rgba(243, 156, 18, 0.2);
        }
        .rating-widget, .comment-widget {
            margin-top: 40px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            color: #555;
            font-size: 2rem;
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .star:hover,
        .star.active {
            color: #f1c40f;
            transform: scale(1.2);
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 15px;
            margin: 10px 0;
            background: #222;
            border: 1px solid #444;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(90deg, #3498db, #2980b9);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn:hover {
            background: linear-gradient(90deg, #2980b9, #3498db);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(52, 152, 219, 0.3);
        }
        .btn-submit {
            background: linear-gradient(90deg, #27ae60, #2ecc71);
        }
        .btn-submit:hover {
            background: linear-gradient(90deg, #2ecc71, #27ae60);
            box-shadow: 0 7px 14px rgba(46, 204, 113, 0.3);
        }
        .related-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 50px 0;
        }
        .link-card {
            background: rgba(30, 30, 46, 0.8);
            border-radius: 10px;
            padding: 20px;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
        .link-card:hover {
            border-color: #f39c12;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(243, 156, 18, 0.2);
        }
        .link-card h4 {
            margin-top: 0;
            color: #ffdd59;
        }
        .site-footer {
            background: #0a0a0f;
            padding: 50px 0 20px;
            margin-top: 60px;
            border-top: 2px solid #f39c12;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            color: #f39c12;
            margin-bottom: 20px;
        }
        friend-link {
            display: block;
            margin: 10px 0;
            color: #3498db;
        }
        friend-link:hover {
            color: #ffdd59;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #777;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            .main-nav ul { gap: 15px; }
        }
        @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(10, 10, 15, 0.98);
                padding: 20px;
                border-top: 1px solid #444;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hero h1 { font-size: 2.3rem; }
            h2 { font-size: 1.9rem; }
            .content-area { padding: 25px; }
            .related-links { grid-template-columns: 1fr; }
            .header-container { flex-wrap: wrap; }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 1.9rem; }
            h2 { font-size: 1.6rem; }
            .my-logo { font-size: 2rem; }
            .btn { padding: 10px 20px; }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeInUp 0.8s ease-out forwards;
        }
