        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
            color: #f0f0f0;
            line-height: 1.7;
            overflow-x: hidden;
            max-width: 100vw;
        }
        a {
            color: #ff4655;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ff7b85;
            text-shadow: 0 0 8px rgba(255, 70, 85, 0.6);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 40px 0;
        }
        .site-header {
            background: rgba(20, 20, 20, 0.95);
            border-bottom: 3px solid #ff4655;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            color: #ff4655;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }
        .my-logo:hover {
            color: #fff;
        }
        .breadcrumb {
            background: #252525;
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #777;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
        }
        .main-nav li {
            margin-left: 30px;
        }
        .main-nav a {
            color: #eee;
            font-weight: 600;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover, .main-nav a.active {
            border-bottom-color: #ff4655;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ff4655;
            cursor: pointer;
        }
        .hero {
            text-align: center;
            padding: 60px 0;
            background: radial-gradient(ellipse at center, #2a0a0a 0%, #0c0c0c 70%);
            border-bottom: 1px solid #333;
        }
        .hero h1 {
            font-size: 3.5rem;
            color: #fff;
            margin-bottom: 20px;
            text-shadow: 0 0 15px rgba(255, 70, 85, 0.7);
        }
        .hero p {
            font-size: 1.2rem;
            color: #ccc;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .highlight-box {
            background: linear-gradient(90deg, #2a1a1a, #1a1a2a);
            border-left: 5px solid #ff4655;
            padding: 25px;
            margin: 40px 0;
            border-radius: 0 8px 8px 0;
        }
        .content-section {
            margin-bottom: 50px;
        }
        h2 {
            font-size: 2.5rem;
            color: #ffcc00;
            border-bottom: 2px solid #444;
            padding-bottom: 15px;
            margin-bottom: 30px;
            position: relative;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100px;
            height: 2px;
            background: #ff4655;
        }
        h3 {
            font-size: 1.8rem;
            color: #4fc3f7;
            margin: 25px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #a5d6a7;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 1.5em;
            color: #ddd;
            text-align: justify;
        }
        .content-img {
            float: right;
            margin: 15px 0 20px 30px;
            max-width: 500px;
            border: 3px solid #444;
            border-radius: 8px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .float-clear {
            clear: both;
        }
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            background: #222;
        }
        .info-table th, .info-table td {
            border: 1px solid #444;
            padding: 12px 15px;
            text-align: left;
        }
        .info-table th {
            background: #333;
            color: #ffcc00;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: #252525;
            padding: 20px;
            border-radius: 8px;
            border-top: 4px solid #ff4655;
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .search-box, .comment-section, .rating-section {
            background: #1e1e1e;
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
            border: 1px solid #333;
        }
        .search-box h3, .comment-section h3, .rating-section h3 {
            color: #ffcc00;
            margin-top: 0;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }
        .search-form input, .comment-form input, .comment-form textarea, .rating-form select {
            padding: 12px 15px;
            border: 1px solid #555;
            background: #2a2a2a;
            color: #fff;
            border-radius: 5px;
            flex: 1;
            min-width: 200px;
        }
        .comment-form textarea {
            min-height: 150px;
            width: 100%;
        }
        button, .btn {
            background: linear-gradient(to right, #ff4655, #ff6b7a);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #ff6b7a, #ff4655);
            box-shadow: 0 5px 15px rgba(255, 70, 85, 0.4);
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #555;
            margin: 15px 0;
        }
        .star-rating label {
            cursor: pointer;
        }
        .star-rating input {
            display: none;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffcc00;
        }
        .related-links {
            background: #252525;
            padding: 25px;
            border-radius: 8px;
            margin: 40px 0;
        }
        .related-links h3 {
            color: #ffcc00;
            margin-bottom: 20px;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        .links-grid a {
            display: block;
            padding: 12px;
            background: #333;
            border-radius: 5px;
            border-left: 4px solid #4fc3f7;
            transition: all 0.3s ease;
        }
        .links-grid a:hover {
            background: #3a3a3a;
            transform: translateX(5px);
        }
        .site-footer {
            background: #151515;
            border-top: 3px solid #ff4655;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .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 h4 {
            color: #ffcc00;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .friend-links {
            background: #222;
            padding: 15px;
            border-radius: 8px;
        }
        friend-link {
            display: inline-block;
            margin: 5px 10px 5px 0;
            padding: 5px 10px;
            background: #333;
            border-radius: 4px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #aaa;
            font-size: 0.9rem;
        }
        .last-updated {
            text-align: center;
            color: #777;
            font-style: italic;
            margin-top: 10px;
        }
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            .content-img { float: none; margin: 20px auto; max-width: 90%; }
        }
        @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(20,20,20,0.98);
                padding: 20px;
                border-top: 1px solid #333;
            }
            .main-nav.active ul {
                display: flex;
            }
            .main-nav li {
                margin: 10px 0;
            }
            .hero h1 { font-size: 2.2rem; }
            h2 { font-size: 1.9rem; }
            .search-form, .comment-form, .rating-form {
                flex-direction: column;
            }
            .search-form input, .comment-form input, .comment-form textarea, .rating-form select {
                width: 100%;
            }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 1.8rem; }
            .hero p { font-size: 1rem; }
            .my-logo { font-size: 1.6rem; }
            .highlight-box { padding: 15px; }
        }
