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

body {
    font-family: 'DM Sans', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100vh;
    overflow-x: hidden;
    cursor: crosshair;
    padding-top: 80px;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(108, 33, 100, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #248218, #6c2164, #912a85, #248218);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease infinite;
    text-decoration: none;
    cursor: pointer;
}

.navbar-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-link {
    padding: 12px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #a8b2d1;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-link:hover {
    background: rgba(36, 130, 24, 0.15);
    color: #248218;
    border-color: rgba(36, 130, 24, 0.3);
    transform: translateY(-2px);
}

.nav-link.active {
    background: rgba(108, 33, 100, 0.2);
    color: #912a85;
    border-color: rgba(108, 33, 100, 0.4);
}

.nav-link i {
    margin-right: 6px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

.header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.header h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(45deg, #248218, #6c2164, #912a85);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease infinite;
    text-shadow: 0 0 40px rgba(108, 33, 100, 0.3);
    margin-bottom: 10px;
}

.header p {
    color: #a8b2d1;
    font-size: 1.1rem;
    font-weight: 500;
}

@keyframes gradient-shift {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}

.carousel-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 30px;
    position: relative;
    z-index: 2;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card {
    min-width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.card-image {
    width: 100%;
    height: 420px;
    background: white;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.card:nth-child(1) .card-image {
    background: linear-gradient(to bottom, rgba(108, 33, 100, 0.15) 0%, white 60%);
}

.card:nth-child(2) .card-image {
    background: linear-gradient(to bottom, rgba(36, 130, 24, 0.15) 0%, white 60%);
}

.card:nth-child(3) .card-image {
    background: linear-gradient(to bottom, rgba(145, 42, 133, 0.15) 0%, white 60%);
}

.card:nth-child(4) .card-image {
    background: linear-gradient(to bottom, rgba(46, 160, 67, 0.15) 0%, white 60%);
}

.card:nth-child(5) .card-image {
    background: linear-gradient(to bottom, rgba(108, 33, 100, 0.15) 0%, white 60%);
}

.card:nth-child(6) .card-image {
    background: linear-gradient(to bottom, rgba(36, 130, 24, 0.15) 0%, white 60%);
}

.profile-pic {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.profile-pic img {
    max-width: 90%;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom center;
}

.card-content {
    padding: 45px 40px 50px;
    text-align: center;
}

.card-content h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 8px;
    font-weight: 700;
}

.card-content .role {
    color: #6c2164;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(108, 33, 100, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c2164;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.social-link:hover {
    background: #6c2164;
    color: white;
    transform: translateY(-4px);
}

.social-link i {
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
}

.card-content p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1a1a2e;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active {
    background: #248218;
    width: 32px;
    border-radius: 6px;
}

/* Splash container */
#splash-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.splash {
    position: absolute;
    pointer-events: none;
    animation: splash-appear 0.3s ease-out forwards;
}

@keyframes splash-appear {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.ink-drop {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

@keyframes drop-fall {
    0% {
        transform: translateY(-20px) scale(0.5);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .navbar {
        height: 70px;
        padding: 0 20px;
    }

    .navbar-brand {
        font-size: 1.4rem;
    }

    .navbar-links {
        gap: 6px;
    }

    .nav-link {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .nav-link i {
        margin-right: 4px;
    }

    .header h1 {
        font-size: 2.5rem;
    }
    
    .carousel-container {
        padding: 0 40px;
        max-width: 400px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .card-image {
        height: 340px;
    }
    
    .card-content {
        padding: 35px 24px 40px;
    }
    
    .card-content h2 {
        font-size: 1.6rem;
    }
    
    .card-content p {
        font-size: 0.95rem;
    }
}

.logo {
    height: 80px;
    width: auto;
}

.big-logo {
    height: 200px;
    width: auto;
}