        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #e6e6e6;
            line-height: 1.8;
            font-size: 18px;
            padding-top: 80px;
        }
        a {
            color: #4cc9f0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #f72585;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(22, 33, 62, 0.95);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #f72585;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
            display: flex;
            align-items: center;
        }
        .my-logo i {
            margin-right: 10px;
            color: #4cc9f0;
        }
        .main-nav {
            display: flex;
            gap: 30px;
        }
        .main-nav a {
            font-size: 1.2rem;
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 8px;
            transition: background 0.3s ease;
        }
        .main-nav a:hover {
            background: rgba(76, 201, 240, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: #4cc9f0;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(22, 33, 62, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 15px;
            border-bottom: 1px solid #2d3748;
            font-size: 1.2rem;
        }
        .breadcrumb {
            padding: 20px 0;
            font-size: 1rem;
            color: #a0aec0;
        }
        .breadcrumb a {
            color: #a0aec0;
        }
        .breadcrumb a:hover {
            color: #4cc9f0;
        }
        main {
            padding: 40px 0;
            background: rgba(26, 32, 44, 0.8);
            border-radius: 20px;
            margin-bottom: 40px;
            box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
        }
        article {
            padding: 0 20px;
        }
        h1 {
            font-size: 3.5rem;
            color: #f72585;
            text-align: center;
            margin-bottom: 30px;
            text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
            line-height: 1.2;
        }
        h2 {
            font-size: 2.8rem;
            color: #4cc9f0;
            margin: 40px 0 20px;
            border-bottom: 3px solid #f72585;
            padding-bottom: 10px;
        }
        h3 {
            font-size: 2.2rem;
            color: #9d4edd;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.8rem;
            color: #ff9e00;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
            padding: 0 10px;
        }
        .emphasis {
            font-weight: bold;
            color: #ff9e00;
            font-size: 1.2em;
        }
        .emoji {
            font-size: 1.5em;
            margin-right: 5px;
        }
        .section-divider {
            height: 4px;
            background: linear-gradient(90deg, #f72585, #4cc9f0);
            margin: 40px 0;
            border-radius: 2px;
        }
        .form-section {
            background: rgba(30, 41, 59, 0.9);
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            box-shadow: 0 6px 15px rgba(0,0,0,0.4);
        }
        .form-title {
            color: #4cc9f0;
            font-size: 2rem;
            margin-bottom: 20px;
        }
        form {
            display: grid;
            gap: 20px;
        }
        input, textarea, select {
            width: 100%;
            padding: 15px;
            border: 2px solid #4cc9f0;
            border-radius: 10px;
            background: #1a202c;
            color: #e6e6e6;
            font-size: 1.1rem;
            transition: border-color 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #f72585;
            outline: none;
        }
        button {
            padding: 15px 30px;
            background: linear-gradient(90deg, #f72585, #9d4edd);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.3rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(247, 37, 133, 0.4);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .rating input {
            width: auto;
        }
        .featured-image {
            text-align: center;
            margin: 40px 0;
        }
        .featured-image img {
            max-width: 800px;
            border: 5px solid #4cc9f0;
        }
        .image-caption {
            font-style: italic;
            color: #a0aec0;
            margin-top: 10px;
            font-size: 1rem;
        }
        footer {
            background: #0f172a;
            padding: 50px 0 20px;
            border-top: 5px solid #f72585;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #4cc9f0;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        friend-link {
            display: block;
            margin: 10px 0;
            font-size: 1.1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2d3748;
            color: #a0aec0;
            font-size: 1rem;
        }
        @media (max-width: 1024px) {
            h1 { font-size: 3rem; }
            h2 { font-size: 2.5rem; }
            h3 { font-size: 2rem; }
            h4 { font-size: 1.6rem; }
        }
        @media (max-width: 768px) {
            body { font-size: 16px; padding-top: 70px; }
            .header-container { flex-wrap: wrap; }
            .main-nav { display: none; }
            .hamburger { display: block; }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.7rem; }
            h4 { font-size: 1.4rem; }
            .my-logo { font-size: 2rem; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            .form-section { padding: 20px; }
            button { padding: 12px 20px; }
        }
        .text-center { text-align: center; }
        .mb-20 { margin-bottom: 20px; }
        .mt-20 { margin-top: 20px; }
        .last-updated {
            font-size: 1rem;
            color: #a0aec0;
            text-align: right;
            padding: 10px;
            font-style: italic;
        }
