        * {
            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.6;
            color: #f0f0f0;
            background-color: #0f1923;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #ff4655;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #fff;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul {
            list-style: none;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section {
            padding: 60px 0;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #ff4655, #ce3a46);
            color: white;
            padding: 12px 28px;
            border-radius: 4px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .btn:hover {
            background: linear-gradient(135deg, #ce3a46, #a02e37);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(255, 70, 85, 0.3);
        }
        .main-header {
            background-color: #1a242f;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 900;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(to right, #ff4655, #0f1923);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .logo a:hover {
            background: linear-gradient(to right, #fff, #ff4655);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .main-nav ul {
            display: flex;
            gap: 25px;
        }
        .main-nav a {
            color: #ccc;
            font-weight: 600;
            font-size: 0.95rem;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ff4655;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after,
        .main-nav a.active::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #fff;
        }
        .breadcrumb {
            background-color: #15202b;
            padding: 12px 20px;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 8px;
            color: #666;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ff4655;
        }
        .hero {
            background: linear-gradient(rgba(15, 25, 35, 0.9), rgba(15, 25, 35, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
            padding: 100px 0;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, #ff4655, #00e5ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ccc;
        }
        .search-box {
            background-color: #1a242f;
            padding: 30px 0;
            text-align: center;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .search-input {
            flex: 1;
            padding: 15px 25px;
            border: none;
            background-color: #0f1923;
            color: #fff;
            font-size: 1rem;
        }
        .search-btn {
            padding: 15px 30px;
            background-color: #ff4655;
            color: white;
            border: none;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .search-btn:hover {
            background-color: #ce3a46;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: #15202b;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .article-content h2 {
            font-size: 2.2rem;
            margin-top: 40px;
            margin-bottom: 20px;
            color: #00e5ff;
            padding-bottom: 10px;
            border-bottom: 2px solid #ff4655;
        }
        .article-content h3 {
            font-size: 1.6rem;
            margin-top: 30px;
            margin-bottom: 15px;
            color: #ffcc00;
        }
        .article-content p {
            margin-bottom: 20px;
            color: #ddd;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .article-content emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .article-content strong {
            color: #ffcc00;
            font-weight: 700;
        }
        .article-content blockquote {
            border-left: 4px solid #ff4655;
            padding-left: 20px;
            margin: 30px 0;
            font-style: italic;
            color: #aaa;
        }
        .article-image {
            margin: 30px 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.6);
        }
        .article-image figcaption {
            text-align: center;
            font-size: 0.9rem;
            color: #888;
            padding: 10px;
            background-color: #1a242f;
        }
        .link-list {
            background-color: #1a242f;
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
        }
        .link-list h3 {
            color: #ff4655;
        }
        .link-list ul {
            padding-left: 20px;
            list-style: disc;
        }
        .link-list li {
            margin-bottom: 10px;
            color: #ddd;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: #15202b;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.4);
        }
        .sidebar-widget h3 {
            color: #00e5ff;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #333;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            font-size: 1.8rem;
            color: #444;
            margin-bottom: 10px;
        }
        .stars input {
            display: none;
        }
        .stars label {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: #ffcc00;
        }
        .comment-widget textarea {
            width: 100%;
            height: 150px;
            padding: 15px;
            background-color: #0f1923;
            border: 1px solid #333;
            border-radius: 8px;
            color: #fff;
            font-family: inherit;
            resize: vertical;
            margin-bottom: 15px;
        }
        .internal-links {
            background-color: #1a242f;
            padding: 50px 0;
        }
        .internal-links .container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        @media (max-width: 768px) {
            .internal-links .container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background-color: #15202b;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 70, 85, 0.2);
        }
        .web-link a {
            color: #ddd;
            font-weight: 600;
        }
        .web-link a:hover {
            color: #ff4655;
        }
        .main-footer {
            background-color: #0c141c;
            padding-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            padding-bottom: 40px;
        }
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        .footer-widget h4 {
            color: #ff4655;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-widget ul li {
            margin-bottom: 12px;
        }
        .footer-widget a {
            color: #aaa;
        }
        .footer-widget a:hover {
            color: #fff;
        }
        .copyright {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid #1a242f;
            color: #777;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 70px);
                background-color: #1a242f;
                transition: left 0.3s ease;
                flex-direction: column;
                padding-top: 30px;
                box-shadow: 5px 0 15px rgba(0,0,0,0.5);
            }
            .main-nav.active {
                left: 0;
            }
            .main-nav ul {
                flex-direction: column;
                padding-left: 30px;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .article-content {
                padding: 25px;
            }
        }
