@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary-gradient: linear-gradient(135deg, #6b21a8 0%, #3b82f6 100%);
    --bg-dark: #0f172a;
    --text-white: #f8fafc;
    --text-muted: #94a3b8;
    --accent-glow: rgba(147, 51, 234, 0.5);
    --card-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% -20%, #4c1d95 0%, transparent 60%),
                radial-gradient(circle at -10% 50%, #1e3a8a 0%, transparent 40%);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

/* Header & Logo */
header {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeInDown 1s ease-out;
}

.logo-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    position: relative;
    border-radius: 20%;
    overflow: hidden;
    box-shadow: 0 0 40px var(--accent-glow);
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container img {
    width: 90%;
    height: auto;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.effective-date {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 1rem;
}

/* Content Sections */
.terms-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.introduction {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
    font-weight: 300;
}

section {
    margin-bottom: 3rem;
}

h2 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

h2::before {
    content: '';
    display: block;
    width: 4px;
    height: 24px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

p, ul {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

ul {
    list-style: none;
}

li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

h3 {
    color: #e2e8f0;
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 640px) {
    .container {
        padding: 2rem 1rem;
    }
    
    .terms-card {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
}
