@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #1A365D; /* Deep Navy */
    --accent: #D4AF37; /* Gold */
    --accent-soft: rgba(212, 175, 55, 0.1);
    --bg-light: #FDFCF8; /* Soft Paper Cream */
    --bg-dark: #0A1128; /* Deep Midnight */
    --text-main: #1F2937;
    --text-muted: #6B7280;
    --card-bg: rgba(255, 255, 255, 0.8);
    --border: rgba(26, 54, 93, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.8;
    overflow-x: hidden;
}

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(26, 54, 93, 0.03) 0%, transparent 50%);
    z-index: -1;
}

.container {
    max-width: 800px;
    margin: 100px auto;
    padding: 80px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 2px; /* Brutalist/Minimalist sharp edges for premium paper feel */
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.05);
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

header {
    text-align: center;
    margin-bottom: 80px;
}

.logo-container {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    background: white;
}

.logo-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent);
    top: 5px;
    left: 5px;
    z-index: -1;
}

.app-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-top: 15px;
    font-weight: 700;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 20px;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 60px 0 25px;
    color: var(--primary);
    border-bottom: 1px solid var(--accent);
    padding-bottom: 10px;
    display: inline-block;
}

p {
    margin-bottom: 30px;
    color: var(--text-main);
}

ul {
    margin-bottom: 30px;
    list-style: none;
}

li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border: 1px solid var(--primary);
}

.btn:hover {
    background: white;
    color: var(--primary);
    box-shadow: 10px 10px 0 var(--accent);
}

footer {
    text-align: center;
    margin-top: 100px;
    padding-bottom: 100px;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.last-updated {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 15px;
    display: block;
}

@media (max-width: 768px) {
    .container {
        margin: 0;
        padding: 60px 30px;
    }
    h1 {
        font-size: 2.2rem;
    }
}
