:root {
            --primary: #FF6B6B;
            --secondary: #4ECDC4;
            --dark: #1A1A2E;
            --light: #F7F7F7;
            --accent: #FFD166;
            --gray: #6C757D;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            background-attachment: fixed;
            min-height: 100vh;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 3px solid var(--primary);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            flex: 1;
            min-width: 250px;
        }
        .logo a {
            color: var(--accent);
            font-size: 2.2rem;
            font-weight: 900;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(255, 209, 102, 0.5);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--primary);
        }
        .nav-container {
            flex: 2;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }
        .main-nav {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .main-nav a:hover, .main-nav a.active {
            background: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: white;
            cursor: pointer;
            background: transparent;
            border: none;
            padding: 5px;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 8px;
            margin: 1rem 0;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li {
            color: var(--light);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.3s;
        }
        .breadcrumb a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        .search-bar {
            margin: 1.5rem 0;
            position: relative;
        }
        .search-bar form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-bar input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid var(--secondary);
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            background: white;
            transition: all 0.3s;
        }
        .search-bar input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 15px rgba(78, 205, 196, 0.5);
        }
        .search-bar button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0 2rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        .search-bar button:hover {
            background: var(--primary);
            transform: scale(1.05);
        }
        main {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            margin: 2rem auto;
            padding: 2.5rem;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }
        main::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, transparent 20%, rgba(255, 107, 107, 0.1) 50%, transparent 70%);
            animation: pulse 15s infinite linear;
            z-index: 0;
        }
        @keyframes pulse {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .content-wrapper {
            position: relative;
            z-index: 1;
        }
        h1 {
            color: var(--dark);
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            border-bottom: 5px solid var(--accent);
            padding-bottom: 1rem;
            line-height: 1.2;
        }
        h2 {
            color: var(--primary);
            font-size: 2.2rem;
            margin: 2.5rem 0 1.5rem;
            padding-left: 1rem;
            border-left: 6px solid var(--secondary);
            line-height: 1.3;
        }
        h3 {
            color: var(--secondary);
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 3px;
            background: var(--accent);
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255, 107, 107, 0.2) 0%, rgba(78, 205, 196, 0.2) 100%);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--primary);
            margin: 2rem 0;
            font-weight: 600;
        }
        .exclusive-data {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .data-card {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            text-align: center;
            border-top: 5px solid var(--secondary);
            transition: transform 0.3s;
        }
        .data-card:hover {
            transform: translateY(-10px);
        }
        .data-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .data-card h4 {
            color: var(--dark);
            margin-bottom: 0.5rem;
            font-size: 1.4rem;
        }
        .data-card p {
            color: var(--gray);
            font-size: 1rem;
            margin-bottom: 0;
        }
        .featured-image {
            text-align: center;
            margin: 3rem 0;
            position: relative;
        }
        .featured-image img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
            border: 5px solid white;
            transition: transform 0.5s;
        }
        .featured-image img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            margin-top: 1rem;
            font-style: italic;
            color: var(--gray);
            font-size: 0.95rem;
        }
        .internal-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
        }
        .web-link {
            background: linear-gradient(135deg, #1A1A2E, #16213E);
            padding: 1.2rem;
            border-radius: 8px;
            border: 2px solid transparent;
            transition: all 0.3s;
        }
        .web-link:hover {
            border-color: var(--accent);
            transform: translateX(10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .web-link a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            display: block;
            font-size: 1.1rem;
        }
        .web-link a::before {
            content: '▶';
            color: var(--accent);
            margin-right: 10px;
            transition: transform 0.3s;
        }
        .web-link:hover a::before {
            transform: translateX(5px);
        }
        .interaction-section {
            background: rgba(26, 26, 46, 0.05);
            border-radius: 15px;
            padding: 2.5rem;
            margin: 3rem 0;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .comment-box, .rating-box {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .comment-box h3, .rating-box h3 {
            color: var(--dark);
            margin-bottom: 1.5rem;
        }
        .comment-form input, .comment-form textarea,
        .rating-form input, .rating-form select {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .comment-form input:focus, .comment-form textarea:focus,
        .rating-form input:focus, .rating-form select:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 10px rgba(78, 205, 196, 0.3);
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(135deg, var(--primary), #FF8E8E);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.4);
        }
        .star-rating {
            display: flex;
            gap: 10px;
            margin: 1rem 0;
            justify-content: center;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star-rating label:hover,
        .star-rating input:checked ~ label {
            color: var(--accent);
        }
        footer {
            background: rgba(26, 26, 46, 0.98);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 5px solid var(--primary);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--accent);
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--secondary);
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 0.8rem;
        }
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer-section a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2rem; }
            .main-nav { gap: 1rem; }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
            }
            .logo { text-align: center; }
            .nav-container {
                width: 100%;
                justify-content: space-between;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--dark);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-radius: 0 0 15px 15px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            }
            .main-nav.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .internal-links-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            main { padding: 1.5rem; }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        .emoji { font-size: 1.2em; }
        .bold { font-weight: 900; color: var(--primary); }
        .italic { font-style: italic; }
        .text-center { text-align: center; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-3 { margin-top: 3rem; }
        .p-3 { padding: 3rem; }
