        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #ff4655; 
            --secondary: #0f1923; 
            --accent: #00ffd5; 
            --light: #f8f9fa;
            --dark: #1a1a1a;
            --gray: #6c757d;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --border-radius: 8px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f0f14;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
            background-image: radial-gradient(circle at 20% 30%, rgba(255, 70, 85, 0.05) 0%, transparent 20%),
                              radial-gradient(circle at 80% 70%, rgba(0, 255, 213, 0.05) 0%, transparent 20%);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 800; color: var(--accent); }
        .highlight { background: linear-gradient(90deg, transparent 50%, rgba(255,70,85,0.2) 50%); }
        .section-padding { padding: 60px 0; }
        .flex { display: flex; }
        .grid { display: grid; }
        .site-header {
            background-color: rgba(15, 25, 35, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary);
            box-shadow: 0 5px 20px rgba(0,0,0,0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            text-decoration: none;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            color: var(--light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            padding: 8px 5px;
            position: relative;
            transition: var(--transition);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover {
            color: var(--accent);
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: transparent;
            border: none;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger { display: flex; }
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            border-radius: 2px;
            transition: var(--transition);
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: var(--secondary);
            flex-direction: column;
            align-items: center;
            padding: 20px 0;
            gap: 20px;
            transform: translateY(-150%);
            opacity: 0;
            transition: transform 0.4s ease, opacity 0.3s ease;
            display: flex;
            z-index: 999;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        .nav-mobile.active {
            transform: translateY(0);
            opacity: 1;
        }
        .nav-mobile a {
            color: var(--light);
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 600;
            padding: 10px 20px;
            width: 80%;
            text-align: center;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .nav-mobile a:hover {
            background-color: rgba(255, 70, 85, 0.2);
            color: var(--accent);
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: rgba(26, 26, 26, 0.7);
            font-size: 0.9rem;
            border-bottom: 1px solid #333;
        }
        .breadcrumb a {
            color: var(--accent);
            text-decoration: none;
        }
        .breadcrumb span {
            color: var(--gray);
            margin: 0 8px;
        }
        .hero {
            padding: 80px 20px;
            text-align: center;
            background: linear-gradient(rgba(15, 25, 35, 0.9), rgba(15, 25, 35, 0.95)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
            border-bottom: 3px solid var(--primary);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, #ff4655, #00ffd5);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ccc;
        }
        .search-container {
            max-width: 600px;
            margin: 40px auto;
            padding: 0 20px;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-form input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            color: white;
            font-size: 1rem;
        }
        .search-form input::placeholder {
            color: #aaa;
        }
        .search-form button {
            background: linear-gradient(90deg, var(--primary), #ff2e4a);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #ff2e4a, var(--primary));
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-content {
            background: rgba(26, 26, 26, 0.7);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow);
            border: 1px solid #333;
        }
        .article-content h2 {
            color: var(--accent);
            font-size: 2.2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary);
        }
        .article-content h3 {
            color: #ff9aa3;
            font-size: 1.6rem;
            margin: 30px 0 15px;
        }
        .article-content p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            margin: 30px auto;
            display: block;
            border: 3px solid #333;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: -20px;
            margin-bottom: 30px;
        }
        .article-content ul, .article-content ol {
            margin-left: 25px;
            margin-bottom: 25px;
        }
        .article-content li {
            margin-bottom: 10px;
        }
        .inline-link {
            color: var(--accent);
            text-decoration: none;
            border-bottom: 1px dotted var(--accent);
            transition: var(--transition);
        }
        .inline-link:hover {
            color: #ff4655;
            border-bottom-style: solid;
        }
        .stat-box {
            background: linear-gradient(135deg, rgba(0,255,213,0.1), rgba(255,70,85,0.1));
            border-left: 5px solid var(--accent);
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .quote {
            font-size: 1.3rem;
            font-style: italic;
            border-left: 5px solid var(--primary);
            padding-left: 25px;
            margin: 35px 0;
            color: #ccc;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: rgba(26, 26, 26, 0.7);
            border-radius: var(--border-radius);
            padding: 25px;
            border: 1px solid #333;
        }
        .sidebar-widget h3 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar-widget h3 i { color: var(--primary); }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .comment-form input,
        .comment-form textarea,
        .rating-form input,
        .rating-form select {
            padding: 15px;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid #444;
            border-radius: var(--border-radius);
            color: white;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .form-button {
            background: linear-gradient(90deg, var(--primary), #ff2e4a);
            color: white;
            border: none;
            padding: 15px;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .form-button:hover {
            background: linear-gradient(90deg, #ff2e4a, var(--primary));
            transform: translateY(-3px);
        }
        .star-rating {
            display: flex;
            justify-content: space-between;
            margin: 10px 0;
            font-size: 1.8rem;
            color: #444;
        }
        .star-rating label {
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating input { display: none; }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: gold;
        }
        .internal-links {
            background: rgba(15, 25, 35, 0.8);
            padding: 50px 20px;
            border-top: 2px solid var(--primary);
            border-bottom: 2px solid var(--primary);
        }
        .internal-links h2 {
            text-align: center;
            color: var(--accent);
            margin-bottom: 40px;
            font-size: 2rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius);
            padding: 20px;
            transition: var(--transition);
            border: 1px solid #333;
        }
        .web-link:hover {
            background: rgba(255, 70, 85, 0.1);
            border-color: var(--primary);
            transform: translateY(-5px);
        }
        .web-link a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        .site-footer {
            background-color: var(--secondary);
            color: #aaa;
            padding: 60px 20px 30px;
            border-top: 3px solid var(--primary);
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: var(--accent);
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: var(--transition);
        }
        .footer-section a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        .social-icons {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }
        .social-icons a {
            color: white;
            background: #333;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .social-icons a:hover {
            background: var(--primary);
            transform: scale(1.1);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #777;
        }
