        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0e17;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #ff6b9d;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ff3d7f;
            text-shadow: 0 0 8px rgba(255, 59, 127, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight { background: linear-gradient(90deg, transparent, rgba(255,107,157,0.15), transparent); padding: 2px 5px; border-radius: 3px; }
        .section-padding { padding: 60px 0; }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(135deg, #ff6b9d, #c2185b);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255,107,157,0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255,107,157,0.5);
        }
        .site-header {
            background: rgba(10, 14, 23, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #1a2236;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #ff6b9d, #6a11cb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
        }
        .my-logo a { 
            background: none; 
            -webkit-text-fill-color: unset; 
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: #b0b7c3;
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .main-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff6b9d;
            transition: width 0.3s ease;
        }
        .main-nav a:hover {
            color: white;
        }
        .main-nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            padding: 10px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #ff6b9d;
            border-radius: 2px;
            transition: 0.3s;
        }
        .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); }
        .breadcrumb {
            padding: 20px 0;
            font-size: 0.9rem;
            color: #8a94a6;
        }
        .breadcrumb a { color: #8a94a6; }
        .breadcrumb a:hover { color: #ff6b9d; }
        .breadcrumb span { margin: 0 8px; }
        .hero {
            background: radial-gradient(circle at top right, #1a2236, transparent 50%),
                        radial-gradient(circle at bottom left, #2d1b36, transparent 50%);
            padding: 80px 0;
            border-bottom: 1px solid #1f2a3e;
        }
        .hero h1 {
            font-size: 3.5rem;
            background: linear-gradient(45deg, #fff, #ff6b9d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            color: #b0b7c3;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .content-section {
            margin-bottom: 60px;
            background: rgba(20, 25, 40, 0.6);
            padding: 40px;
            border-radius: 15px;
            border-left: 5px solid #ff6b9d;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .content-section h2 {
            font-size: 2.5rem;
            color: #ffcc00;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px dashed #2d3746;
        }
        .content-section h3 {
            font-size: 1.8rem;
            color: #6aabff;
            margin: 35px 0 15px;
        }
        .content-section h4 {
            font-size: 1.4rem;
            color: #b0b7c3;
            margin: 25px 0 10px;
            font-style: italic;
        }
        .content-section p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .content-section ul, .content-section ol {
            margin-left: 30px;
            margin-bottom: 20px;
        }
        .content-section li {
            margin-bottom: 10px;
        }
        .featured-image {
            margin: 30px auto;
            max-width: 800px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.5);
            border: 3px solid #2d3746;
        }
        .interactive-box {
            background: #1a2236;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid #2d3746;
        }
        .interactive-box h3 { color: #ffcc00; margin-top: 0; }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #b0b7c3;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            background: #0f141f;
            border: 1px solid #2d3746;
            border-radius: 8px;
            color: white;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #444;
            margin: 10px 0;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input { display: none; }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #ffcc00;
        }
        .site-footer {
            background: #070a12;
            padding: 50px 0 20px;
            border-top: 1px solid #1a2236;
            margin-top: 60px;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            margin-bottom: 40px;
        }
        friend-link {
            background: #1a2236;
            padding: 12px 25px;
            border-radius: 50px;
            border: 1px solid #2d3746;
            transition: all 0.3s ease;
        }
        friend-link:hover {
            background: #252f46;
            border-color: #ff6b9d;
            transform: translateY(-5px);
        }
        .copyright {
            text-align: center;
            color: #8a94a6;
            font-size: 0.9rem;
            padding-top: 20px;
            border-top: 1px solid #1a2236;
        }
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.8rem; }
            .content-section h2 { font-size: 2.2rem; }
            .content-section h3 { font-size: 1.6rem; }
        }
        @media (max-width: 768px) {
            .hamburger { display: flex; }
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background: rgba(10, 14, 23, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 40px 30px;
                transition: left 0.5s ease;
                border-right: 1px solid #1a2236;
            }
            .main-nav.active { left: 0; }
            .main-nav ul {
                flex-direction: column;
                gap: 20px;
            }
            .hero h1 { font-size: 2.3rem; }
            .hero p { font-size: 1.1rem; }
            .content-section { padding: 25px; }
            .content-section h2 { font-size: 1.8rem; }
            .header-container { padding: 0 20px; }
            .container { padding: 0 15px; }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 1.9rem; }
            .content-section h2 { font-size: 1.6rem; }
            .content-section h3 { font-size: 1.3rem; }
            .btn { padding: 10px 22px; }
            .friend-links { gap: 15px; }
            friend-link { padding: 10px 20px; font-size: 0.9rem; }
        }
