@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700&display=swap');

:root {
    --bg-color: #f8f9fa;
    --text-primary: #121317;
    --text-secondary: #5f6368;
    --accent-blue: #4285f4;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glow-blue: rgba(66, 133, 244, 0.15);
    --max-width: 900px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background Nebula Effect */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--glow-blue) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
    animation: flow 20s infinite alternate;
}

@keyframes flow {
    from { transform: translate(-10%, -10%); }
    to { transform: translate(10%, 10%); }
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-container {
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--accent-blue);
}

/* Main Content */
main {
    max-width: var(--max-width);
    margin: 4rem auto;
    padding: 0 2rem;
}

.content-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.last-updated {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    font-weight: 600;
}

h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

ul {
    margin-bottom: 1.25rem;
    list-style-position: inside;
}

li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 3rem 0;
}

/* Table Design */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    border: 1px solid #eee;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

th, td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

th {
    background-color: #fbfbfb;
    font-weight: 600;
}

/* Footer */
footer {
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.footer-title {
    font-size: 8rem;
    font-weight: 700;
    color: rgba(18, 19, 23, 0.05);
    user-select: none;
    line-height: 1;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-blue);
}

/* Contact Link */
.contact-email {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    .content-card { padding: 2rem; }
    .footer-title { font-size: 4rem; }
}
