:root {
    --bg-color: #0d0f14;
    --primary-color: #6c63ff;
    --accent-color: #ff6584;
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1a6;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --font-family: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Animated Blobs */
.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #1a1c24 0%, #0d0f14 100%);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: -1;
    transition: all 0.5s ease;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -100px;
    right: -100px;
    animation: move1 20s infinite alternate;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: var(--accent-color);
    bottom: -100px;
    left: -100px;
    animation: move2 25s infinite alternate;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #00d2ff;
    top: 50%;
    right: 50%;
    animation: move3 18s infinite alternate;
}

@keyframes move1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-100px, 100px) scale(1.2); }
}

@keyframes move2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(150px, -150px) scale(1.1); }
}

@keyframes move3 {
    0% { transform: translate(0, 0) scale(1.1); }
    100% { transform: translate(-150px, 150px) scale(1); }
}

/* Header */
header {
    width: 100%;
    padding: 2rem 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(13, 15, 20, 0.7);
    border-bottom: 1px solid var(--glass-border);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary-color);
}

.back-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    background: var(--glass-bg);
    transition: all 0.3s ease;
}

.back-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.4);
}

/* Main Content */
main {
    flex: 1;
    padding: 4rem 5%;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--card-shadow);
}

h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, white 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.last-updated {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 3rem;
}

.content-section {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 2rem;
}

.content-section:last-child {
    border-bottom: none;
}

h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

strong {
    color: var(--text-primary);
}

ul {
    list-style: none;
    margin-bottom: 1.2rem;
}

ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.contact-card p {
    margin-bottom: 0.5rem;
}

/* Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards ease-out;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
footer {
    width: 100%;
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

footer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    main {
        padding: 2rem 5%;
    }

    .glass-card {
        padding: 2rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.3rem;
    }
}
