        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f0f0f;
            color: #e0e0e0;
            line-height: 1.8;
            font-size: 1.1rem;
            padding: 0;
            margin: 0;
        }
        a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d1b0e 100%);
            padding: 20px 0;
            border-bottom: 3px solid #d4af37;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: #d4af37;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Cinzel', serif;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo:hover {
            color: #ffd700;
        }
        .breadcrumb {
            margin: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #d4af37;
        }
        .nav-container {
            display: flex;
            align-items: center;
        }
        .main-nav {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav li a {
            padding: 10px 15px;
            font-weight: 600;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .main-nav li a:hover {
            background: rgba(212, 175, 55, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #d4af37;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .main-nav {
                flex-direction: column;
                position: fixed;
                top: 100px;
                left: 0;
                width: 100%;
                background: #1a1a1a;
                padding: 20px;
                display: none;
                z-index: 999;
            }
            .main-nav.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
        }
        main {
            padding: 40px 0;
            background: #141414;
        }
        .content-section {
            margin-bottom: 50px;
        }
        h1 {
            font-size: 3.5rem;
            color: #d4af37;
            margin-bottom: 30px;
            text-align: center;
            font-family: 'Cinzel', serif;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.5rem;
            color: #c19a4f;
            margin: 40px 0 20px;
            border-left: 5px solid #d4af37;
            padding-left: 15px;
        }
        h3 {
            font-size: 2rem;
            color: #e0c060;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.5rem;
            color: #f0d890;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
            padding: 0 10px;
        }
        .highlight {
            background: rgba(212, 175, 55, 0.1);
            padding: 20px;
            border-left: 4px solid #d4af37;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .feature-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .box {
            background: #1e1e1e;
            padding: 25px;
            border-radius: 10px;
            border: 1px solid #333;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .box:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
        }
        form {
            background: #1a1a1a;
            padding: 30px;
            border-radius: 10px;
            margin: 30px 0;
            border: 1px solid #444;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #d4af37;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            background: #2d2d2d;
            border: 1px solid #555;
            border-radius: 5px;
            color: #e0e0e0;
            font-size: 1rem;
        }
        button {
            background: linear-gradient(to right, #d4af37, #c19a4f);
            color: #000;
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s;
        }
        button:hover {
            background: linear-gradient(to right, #ffd700, #d4af37);
        }
        footer {
            background: #0a0a0a;
            padding: 40px 0;
            border-top: 3px solid #d4af37;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        friend-link {
            display: block;
            margin: 10px 0;
            padding: 10px;
            background: #1a1a1a;
            border-radius: 5px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: #2d1b0e;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #aaa;
            font-size: 0.9rem;
        }
        .text-center {
            text-align: center;
        }
        .bold {
            font-weight: bold;
            color: #ffd700;
        }
        .last-updated {
            font-style: italic;
            color: #aaa;
            margin-bottom: 30px;
            text-align: right;
        }
