        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0a2e0a 0%, #0d1a0d 100%);
            color: #f0f0f0;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #ffd700;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffffff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }
        header {
            background: rgba(10, 46, 10, 0.95);
            padding: 1.5rem 2rem;
            border-bottom: 3px solid #ffd700;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo a.my-logo {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(to right, #ffd700, #ffed4e);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
            letter-spacing: 1.5px;
        }
        .logo a.my-logo:hover {
            text-shadow: 3px 3px 8px rgba(255, 215, 0, 0.7);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links li a {
            font-size: 1.2rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            background: rgba(255, 215, 0, 0.1);
        }
        .nav-links li a:hover {
            background: rgba(255, 215, 0, 0.3);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffd700;
        }
        .breadcrumb {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #ccc;
        }
        .breadcrumb a {
            color: #ffd700;
        }
        main {
            flex: 1;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            background: rgba(20, 30, 20, 0.9);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
            overflow: hidden;
        }
        .content-section {
            padding: 2rem;
        }
        h1 {
            font-size: 3.5rem;
            color: #ffd700;
            text-align: center;
            margin-bottom: 2rem;
            text-shadow: 3px 3px 6px #000;
            border-bottom: 2px solid #ffd700;
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2.5rem;
            color: #4CAF50;
            margin: 2.5rem 0 1.5rem;
            border-left: 5px solid #ffd700;
            padding-left: 1rem;
        }
        h3 {
            font-size: 2rem;
            color: #8BC34A;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.5rem;
            color: #CDDC39;
            margin: 1.5rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            text-align: justify;
            padding: 0 0.5rem;
        }
        .highlight {
            background: rgba(255, 215, 0, 0.15);
            padding: 1.5rem;
            border-left: 4px solid #ffd700;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 0.5rem;
        }
        .form-container {
            background: rgba(30, 40, 30, 0.8);
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .form-container h3 {
            color: #ffd700;
        }
        form {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        input, textarea, select {
            padding: 1rem;
            border: 1px solid #4CAF50;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #ffd700;
            box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
        }
        button {
            padding: 1rem 2rem;
            background: linear-gradient(to right, #4CAF50, #2E7D32);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(to right, #ffd700, #FFC107);
            transform: scale(1.05);
        }
        .featured-image {
            text-align: center;
            margin: 3rem 0;
        }
        .featured-image img {
            max-height: 500px;
            border: 5px solid #ffd700;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);
        }
        footer {
            background: #0a1f0a;
            padding: 3rem 2rem;
            margin-top: 3rem;
            border-top: 3px solid #ffd700;
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .friend-links {
            grid-column: 1 / -1;
        }
        friend-link {
            display: block;
            padding: 0.8rem;
            background: rgba(255, 215, 0, 0.1);
            margin: 0.5rem 0;
            border-radius: 5px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: rgba(255, 215, 0, 0.3);
        }
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            .header-container { flex-direction: column; align-items: flex-start; }
            nav { width: 100%; justify-content: space-between; margin-top: 1rem; }
            .nav-links { gap: 1rem; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 46, 10, 0.98);
                padding: 1rem;
                border-top: 2px solid #ffd700;
            }
            .nav-links.active { display: flex; }
            .nav-links li { width: 100%; text-align: center; }
            .nav-links li a { display: block; }
            main { padding: 0 1rem; }
            .content-section { padding: 1.5rem; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .logo a.my-logo { font-size: 2.2rem; }
        }
