        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #1a1a2e;
            --primary-deep: #16213e;
            --accent-gold: #d4af37;
            --accent-light: #e6d5b8;
            --text-primary: #f0f0f0;
            --text-secondary: #b8b8b8;
            --card-bg: rgba(255, 255, 255, 0.05);
            --border-color: rgba(212, 175, 55, 0.3);
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-deep) 100%);
            color: var(--text-primary);
            line-height: 1.7;
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-light);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        .site-header {
            background-color: rgba(22, 33, 62, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--accent-gold), #ffd700);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
            text-decoration: none;
        }
        .logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-gold);
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: var(--primary-deep);
            border-top: 1px solid var(--border-color);
            padding: 20px;
            flex-direction: column;
            gap: 15px;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            font-size: 1.2rem;
            padding: 10px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            padding: 20px 0 10px;
            font-size: 0.95rem;
            color: var(--text-secondary);
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .hero {
            text-align: center;
            padding: 80px 0 40px;
            border-bottom: 1px solid var(--border-color);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
            background: linear-gradient(90deg, var(--accent-gold), #fff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: var(--text-secondary);
        }
        .last-updated {
            font-style: italic;
            color: #888;
            margin-top: 20px;
            font-size: 0.95rem;
        }
        .content-section {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow);
        }
        h2 {
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: var(--accent-light);
            border-left: 5px solid var(--accent-gold);
            padding-left: 15px;
        }
        h3 {
            font-size: 2rem;
            margin: 35px 0 15px;
            color: #e6d5b8;
        }
        h4 {
            font-size: 1.5rem;
            margin: 25px 0 10px;
            color: #d4c4a8;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(212, 175, 55, 0.15);
            border-left: 4px solid var(--accent-gold);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 40px auto;
            text-align: center;
            max-width: 900px;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            border: 1px solid var(--border-color);
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        .inline-link {
            font-weight: 600;
            padding: 2px 5px;
            border-radius: 3px;
        }
        .inline-link:hover {
            background: rgba(212, 175, 55, 0.2);
            text-decoration: none;
        }
        .interactive-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }
        .feature-card {
            background: rgba(30, 30, 50, 0.7);
            border-radius: 12px;
            padding: 30px;
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }
        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-gold);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }
        .feature-card h3 {
            color: var(--accent-gold);
            font-size: 1.8rem;
            margin-top: 0;
        }
        .feature-card form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .feature-card input,
        .feature-card textarea,
        .feature-card select {
            padding: 12px 15px;
            background: rgba(255,255,255,0.1);
            border: 1px solid #555;
            border-radius: 8px;
            color: white;
            font-size: 1rem;
        }
        .feature-card button {
            background: linear-gradient(to right, var(--accent-gold), #b8941f);
            color: var(--primary-dark);
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .feature-card button:hover {
            background: linear-gradient(to right, #e6c158, var(--accent-gold));
            transform: scale(1.03);
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 15px 0;
            font-size: 2rem;
            color: #555;
        }
        .rating-stars .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: gold;
            transform: scale(1.2);
        }
        .site-footer {
            background-color: #0f0f1a;
            padding: 60px 0 30px;
            border-top: 1px solid var(--border-color);
            margin-top: 80px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }
        .footer-links h4 {
            color: var(--accent-light);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        friend-link {
            display: block;
            padding: 10px 15px;
            background: rgba(255,255,255,0.05);
            border-radius: 6px;
            margin-bottom: 10px;
            border-left: 3px solid transparent;
            transition: var(--transition);
        }
        friend-link:hover {
            border-left-color: var(--accent-gold);
            background: rgba(212, 175, 55, 0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            .content-section { padding: 30px; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .hero h1 { font-size: 2.3rem; }
            h2 { font-size: 1.9rem; }
            .hero p { font-size: 1.1rem; }
            .interactive-box { grid-template-columns: 1fr; }
            .feature-card { padding: 25px; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            .hero { padding: 50px 0 30px; }
            .hero h1 { font-size: 1.9rem; }
            h2 { font-size: 1.6rem; }
            .content-section { padding: 25px 20px; }
            .footer-content { grid-template-columns: 1fr; }
        }
