body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #111;
    color: #fff;
}

header {
    background-color: #333;
    padding: 10px;
}

nav {
    display: flex;
    justify-content: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
}

.nav-link:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
    text-align: center;
}

.profile-card {
    background: linear-gradient(135deg, #f8fafc 60%, #e0e7ff 100%);
    max-width: 500px;
    margin: 40px auto;
    padding: 30px 20px;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(60, 60, 120, 0.12);
    text-align: center;
    position: relative;
}

.profile-card.dark-theme {
    background: linear-gradient(135deg, #111 60%, #ff69b4 100%);
    color: #fff;
    box-shadow: 0 6px 24px rgba(255, 105, 180, 0.18);
}

.profile-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px;
    border: 4px solid #6366f1;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.15);
}

.highlight {
    color: #6366f1;
    font-weight: bold;
}

.highlight-pink {
    color: #ff69b4;
    font-weight: bold;
}

.intro {
    font-size: 1.15em;
    margin-bottom: 12px;
}

.cta-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 10px 28px;
    background: #6366f1;
    color: #fff;
    border-radius: 24px;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.12);
    transition: background 0.2s;
}

.cta-btn:hover {
    background: #4338ca;
}

.cta-btn-pink {
    display: inline-block;
    margin-top: 18px;
    padding: 10px 28px;
    background: #ff69b4;
    color: #fff;
    border-radius: 24px;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(255, 105, 180, 0.18);
    transition: background 0.2s;
}

.cta-btn-pink:hover {
    background: #c2185b;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.home-fullscreen {
    min-height: 100vh;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #111 70%, #ff69b4 100%);
    color: #fff;
    box-sizing: border-box;
    padding: 0 20px;
    position: relative;
}

.portfolio-header {
    font-size: 2.8em;
    margin-bottom: 32px;
    text-align: center;
    font-weight: bold;
    letter-spacing: 2px;
}

.roles-container {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.role-text {
    font-size: 2em;
    font-weight: bold;
    letter-spacing: 1px;
    border-right: 2px solid #ff69b4;
    padding-right: 8px;
    min-width: 280px;
    text-align: center;
    animation: blink-caret 0.8s step-end infinite;
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #ff69b4; }
}

.showcase-text {
    font-size: 1.15em;
    margin-bottom: 60px;
    text-align: center;
    max-width: 480px;
    line-height: 1.5;
}

.discover-btn {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
}

body.home-active header {
    display: none;
}
