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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #505050 0%, #787878 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    color: #2d2d2d;
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}

.profile-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 48px 32px;
    margin-top: 60px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05),
                0 10px 40px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.profile-header {
    margin-bottom: 24px;
}

.profile-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    margin-top: -100px;
    border-radius: 50%;
    overflow: hidden;
    background: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.profile-name {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: #2d2d2d;
}

.profile-headline {
    font-size: 15px;
    font-weight: 500;
    color: #6b6b6b;
    letter-spacing: 0.5px;
    padding-bottom: 16px;
    margin-bottom: 0;
    border-bottom: 1px solid #f0f0f0;
}

.profile-bio {
    text-align: left;
    line-height: 1.7;
    margin-bottom: 32px;
    font-size: 15px;
    color: #2d2d2d;
}

.profile-bio p {
    margin-bottom: 1em;
}

.profile-bio p:last-child {
    margin-bottom: 0;
}

.profile-bio a {
    color: #0872b4;
    text-decoration: none;
    border-bottom: 1px solid rgba(8, 114, 180, 0.3);
    transition: border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-bio a:hover {
    border-bottom-color: #0872b4;
}

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

.social-button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f8f8f8;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b6b6b;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.social-button:hover {
    background: #0872b4;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(8, 114, 180, 0.2);
}

.social-button.linkedin:hover {
    background: #0077b5;
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.2);
}

.social-button.email:hover {
    background: #0872b4;
    box-shadow: 0 5px 15px rgba(8, 114, 180, 0.2);
}

/* ===========================================
   EASTER EGG - Konami Code Aurora Effect
   =========================================== */

/* Aurora overlay - animated northern lights */
.aurora-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.aurora-overlay.active {
    opacity: 1;
}

.aurora-overlay::before,
.aurora-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.aurora-overlay::before {
    background: linear-gradient(
        125deg,
        rgba(138, 43, 226, 0.4) 0%,
        rgba(0, 191, 255, 0.3) 25%,
        rgba(0, 255, 127, 0.3) 50%,
        rgba(255, 105, 180, 0.3) 75%,
        rgba(138, 43, 226, 0.4) 100%
    );
    background-size: 400% 400%;
    animation: auroraWave 8s ease-in-out infinite;
}

.aurora-overlay::after {
    background: linear-gradient(
        -45deg,
        rgba(0, 255, 255, 0.2) 0%,
        rgba(148, 0, 211, 0.25) 33%,
        rgba(75, 0, 130, 0.2) 66%,
        rgba(0, 255, 127, 0.25) 100%
    );
    background-size: 300% 300%;
    animation: auroraShimmer 6s ease-in-out infinite reverse;
}

@keyframes auroraWave {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 25%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 0% 75%;
    }
}

@keyframes auroraShimmer {
    0%, 100% {
        background-position: 0% 0%;
        opacity: 0.5;
    }
    50% {
        background-position: 100% 100%;
        opacity: 1;
    }
}

/* Particle canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

#particle-canvas.active {
    opacity: 1;
}

/* Card glow effect when easter egg is active */
.profile-card.aurora-glow {
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 10px 40px rgba(0, 0, 0, 0.12),
        0 0 60px rgba(138, 43, 226, 0.3),
        0 0 100px rgba(0, 191, 255, 0.2);
    animation: cardPulse 4s ease-in-out infinite;
}

@keyframes cardPulse {
    0%, 100% {
        box-shadow:
            0 4px 6px rgba(0, 0, 0, 0.05),
            0 10px 40px rgba(0, 0, 0, 0.12),
            0 0 60px rgba(138, 43, 226, 0.3),
            0 0 100px rgba(0, 191, 255, 0.2);
    }
    50% {
        box-shadow:
            0 4px 6px rgba(0, 0, 0, 0.05),
            0 10px 40px rgba(0, 0, 0, 0.12),
            0 0 80px rgba(0, 255, 127, 0.35),
            0 0 120px rgba(255, 105, 180, 0.25);
    }
}

/* Easter egg hint message */
.easter-egg-hint {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 1px;
    z-index: 1000;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 43, 226, 0.5);
}

.easter-egg-hint.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.easter-egg-hint .sparkle {
    display: inline-block;
    animation: sparkle 1.5s ease-in-out infinite;
}

.easter-egg-hint .sparkle:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Profile image special effect */
.profile-image.secret-found {
    animation: imageGlow 3s ease-in-out infinite;
}

@keyframes imageGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
    }
    33% {
        box-shadow: 0 0 30px rgba(0, 191, 255, 0.6);
    }
    66% {
        box-shadow: 0 0 25px rgba(0, 255, 127, 0.5);
    }
}

/* Responsive Design */
@media (max-width: 480px) {
    .profile-card {
        padding: 40px 24px;
        margin-top: 60px;
    }

    .profile-name {
        font-size: 20px;
    }

    .profile-bio {
        font-size: 14px;
    }
}
