@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@900&family=Inter:wght@300;500;700&display=swap');

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    display: flex;
    height: 100vh;
    background: #fdfdfd;
    overflow: hidden;
}

.sidebar {
    width: 320px;
    background: #1a1a1a;
    color: white;
    display: flex;
    flex-direction: column;
    padding: 50px 30px;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #d4af37 0%, #f7e08a 50%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu a {
    text-decoration: none;
    color: #999;
    padding: 12px 20px;
    display: block;
    transition: 0.3s;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #d4af37;
    background: rgba(255, 255, 255, 0.05);
}

.main-view { flex: 1; }
iframe { width: 100%; height: 100%; border: none; }