:root {
    --primary-color: #2D3748;
    --accent-color: #4FD1C5;
    --text-main: #E2E8F0;
    --text-muted: #A0AEC0;
    --bg-color: #1A202C;
    --glass-bg: rgba(26, 32, 44, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

@media (prefers-color-scheme: light) {
    :root {
        --primary-color: #1A202C;
        --accent-color: #319795;
        --text-main: #2D3748;
        --text-muted: #718096;
        --bg-color: #F7FAFC;
        --glass-bg: rgba(255, 255, 255, 0.65);
        --glass-border: rgba(255, 255, 255, 0.4);
        --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    }
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

/* Dynamic Background */
.background-animation {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(79, 209, 197, 0.15), rgba(45, 55, 72, 0) 50%),
                radial-gradient(circle at 80% 20%, rgba(107, 70, 193, 0.15), rgba(45, 55, 72, 0) 40%);
    z-index: -1;
    animation: backgroundMove 30s ease-in-out infinite alternate;
}

@keyframes backgroundMove {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-5%, -5%) rotate(5deg); }
}

/* Glassmorphism Container */
.glass-container {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 24px;
    padding: 3rem;
    max-width: 800px;
    width: 90%;
    margin: 2rem;
    position: relative;
    z-index: 1;
}

/* Typography */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 30%;
    bottom: 10%;
    left: 0;
    background-color: var(--accent-color);
    opacity: 0.2;
    z-index: -1;
    border-radius: 4px;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.divider {
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    margin: 2rem 0;
    border-radius: 2px;
}

.intro {
    margin-bottom: 2.5rem;
}

.tagline {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.status-msg {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(79, 209, 197, 0.1);
    border-radius: 12px;
}

.description {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.icon-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-main);
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.icon-link:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -10px var(--accent-color);
}

.icon-link:hover svg {
    transform: scale(1.1);
}

@media (prefers-color-scheme: light) {
    .icon-link { background: rgba(0, 0, 0, 0.03); }
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

/* Responsive */
@media (max-width: 600px) {
    .glass-container {
        padding: 2rem;
        margin: 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .icon-link span {
        display: none;
    }
    
    .icon-link {
        padding: 0.75rem;
    }
}
