:root {
    --primary: #ffffff;
    --secondary: #f1f5f9;
    --accent: #2563eb;
    --text-main: #0f172a;
    --text-muted: #475569;
    --card-bg: rgba(255, 255, 255, 0.85);
    --card-border: rgba(255, 255, 255, 1);
    --shadow-color: rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    padding: 2rem 1rem;
}

/* Subtle glowing orb in the background for light mode */
.background-animation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vh;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    pointer-events: none;
    animation: pulse 8s infinite alternate;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 3rem 1.5rem;
    box-shadow: 0 20px 40px -10px var(--shadow-color), 0 0 10px rgba(0,0,0,0.02);
    text-align: center;
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

.logo-container {
    background: transparent;
    padding: 0 1.5rem;
    display: inline-block;
    margin-bottom: 3rem;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: translateY(-5px);
}

.main-logo {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.language-section {
    position: relative;
    padding: 1rem;
}

.lang-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    letter-spacing: 1px;
}

h1 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
    background: linear-gradient(to right, #0f172a, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #cbd5e1, transparent);
    width: 60%;
    margin: 0 auto;
}

.linkedin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #0a66c2;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 3.5rem;
    box-shadow: 0 4px 14px 0 rgba(10, 102, 194, 0.2);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.linkedin-btn:hover {
    background: #004182;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 102, 194, 0.35);
}

.contact-info {
    border-top: 1px solid #e2e8f0;
    padding-top: 2.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-info strong {
    color: var(--text-main);
    font-size: 1.15rem;
    display: block;
    margin-bottom: 0.35rem;
}

.contact-info .subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.contact-details {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    border-radius: 12px;
}

.contact-details a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-details a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.contact-details p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.members-section {
    text-align: center;
    animation: slideUp 0.8s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.members-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.members-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px -10px var(--shadow-color), 0 0 10px rgba(0,0,0,0.02);
    border: 1px solid var(--card-border);
    transition: transform 0.3s ease;
}

.members-card:hover {
    transform: translateY(-5px);
}

.members-logo {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.events-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: white;
    min-width: 65px;
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.event-details {
    flex: 1;
}

.event-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.event-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.event-meta:last-child {
    margin-bottom: 0;
}

.event-meta svg {
    color: var(--accent);
    opacity: 0.8;
}

@media (max-width: 480px) {
    .event-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .event-date {
        flex-direction: row;
        min-width: auto;
        padding: 0.5rem 1rem;
        gap: 0.5rem;
        align-items: baseline;
    }
    
    .event-date .month {
        margin-top: 0;
    }
}

@media (min-width: 768px) {
    .glass-card {
        padding: 4rem;
    }

    h1 {
        font-size: 1.75rem;
    }
}
