:root {
    --primary-color: #6d597a;
    --secondary-color: #b56576;
    --bg-color: #eaac8b;
    --card-bg: #ffffff;
    --text-color: #355070;
    --accent-color: #e56b6f;
    --highlight: #f3f4f6;
}

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

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--bg-color);
    background-image: linear-gradient(135deg, #eaac8b 0%, #b56576 100%);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    padding: 20px 15px;
    min-height: 100vh;
}

.container {
    max-width: 450px;
    width: 100%;
    background: var(--card-bg);
    border-radius: 40px;
    padding: 30px 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    text-align: center;
}

header {
    margin-bottom: 25px;
}

.profile-pic-container {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 15px;
}

.profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    border: 5px solid var(--accent-color);
}

.emoji-float {
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 2rem;
    background: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

h1 {
    font-family: 'Fredoka One', cursive;
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.tagline {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1rem;
    letter-spacing: 0.5px;
}

section {
    margin-bottom: 30px;
    text-align: left;
    padding: 0 10px;
}

h2 {
    font-family: 'Fredoka One', cursive;
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

h2::after {
    content: "";
    flex: 1;
    height: 2px;
    background: var(--highlight);
}

.quick-stats .stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.quick-stats span {
    background: var(--highlight);
    padding: 10px 5px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

p {
    margin-bottom: 12px;
}

ul {
    list-style: none;
}

li {
    margin-bottom: 10px;
    padding-left: 5px;
}

li b {
    color: var(--secondary-color);
}

.sub-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.date-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.date-card {
    background: var(--highlight);
    padding: 15px;
    border-radius: 15px;
    font-size: 0.95rem;
    font-weight: 700;
    border-left: 5px solid var(--accent-color);
    transition: transform 0.2s;
}

.date-card:hover {
    transform: translateX(5px);
}

.contact {
    text-align: center;
    background: var(--highlight);
    padding: 25px 20px;
    border-radius: 25px;
    margin: 0 -5px 30px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.social-btn {
    display: inline-block;
    color: white;
    padding: 14px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-family: 'Fredoka One', cursive;
    transition: all 0.3s;
}

.social-btn.email {
    background-color: var(--secondary-color);
}

.social-btn.discord {
    background-color: #5865F2;
}

.social-btn:hover {
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

footer {
    font-size: 0.85rem;
    opacity: 0.7;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.profile-pic-container {
    animation: bounce 5s ease-in-out infinite;
}

@media (max-width: 400px) {
    .container {
        padding: 20px 10px;
    }
    h1 {
        font-size: 1.8rem;
    }
}
