:root {
    --virg-pink: #FF4081;
    --virg-yellow: #FFD740;
    --virg-blue: #40C4FF;
    --virg-purple: #E040FB;
    --virg-white: #FFFFFF;
    --virg-text: #4A148C;
    --font-heading: 'Fredoka One', cursive;
    --font-body: 'Indie Flower', cursive;
    /* or Varela Round for better readability */
    --font-read: 'Varela Round', sans-serif;
}

body {
    background-color: #FFF3E0;
    color: var(--virg-text);
    font-family: var(--font-read);
    overflow-x: hidden;
    background-image: radial-gradient(var(--virg-yellow) 15%, transparent 16%),
        radial-gradient(var(--virg-pink) 15%, transparent 16%);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Indie+Flower&family=Varela+Round&display=swap');

h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--virg-pink);
    text-shadow: 3px 3px 0px var(--virg-yellow);
    letter-spacing: 2px;
}

h2,
h3 {
    font-family: var(--font-heading);
    color: var(--virg-blue);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--virg-purple);
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.section-title::before,
.section-title::after {
    content: '★';
    color: var(--virg-yellow);
    font-size: 1.5rem;
    vertical-align: middle;
    margin: 0 10px;
}

/* Components */
.virg-card {
    background: var(--virg-white);
    border-radius: 25px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 0px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--virg-blue);
    position: relative;
    transition: transform 0.3s;
}

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

.btn-virg {
    background: var(--virg-pink);
    color: white;
    font-family: var(--font-heading);
    padding: 12px 30px;
    border-radius: 15px;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 5px 0px #C2185B;
    font-size: 1.2rem;
}

.btn-virg:hover {
    background: var(--virg-purple);
    transform: translateY(-2px);
    box-shadow: 0 7px 0px #AA00FF;
    color: white;
    text-decoration: none;
}

.btn-virg:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0px #C2185B;
}

/* Hero Section */
.hero-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 243, 224, 0.9) 100%);
}

.hero-halo {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--virg-yellow) 0%, rgba(255, 215, 64, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulseHalo 3s infinite ease-in-out;
}

@keyframes pulseHalo {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    border: 4px dashed var(--virg-pink);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 90%;
}

.hero-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin: 20px auto;
    border: 5px solid var(--virg-blue);
}

/* Countdown */
.virg-countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.count-cloud {
    background: var(--virg-blue);
    color: white;
    width: 75px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 4px 0 #0288D1;
}

.count-cloud::before,
.count-cloud::after {
    content: '';
    position: absolute;
    background: var(--virg-blue);
    border-radius: 50%;
}

.count-cloud::before {
    width: 30px;
    height: 30px;
    top: -10px;
    left: 10px;
}

.count-cloud::after {
    width: 40px;
    height: 40px;
    top: -15px;
    right: 10px;
}

.count-cloud span {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
    line-height: 1;
}

.count-cloud small {
    font-size: 0.6rem;
    position: relative;
    z-index: 2;
    font-family: var(--font-read);
}

/* Music Control */
.music-control {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.btn-music-virg {
    width: 55px;
    height: 55px;
    background: var(--virg-yellow);
    color: var(--virg-text);
    border: 3px solid var(--virg-pink);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 4px 0 var(--virg-pink);
    transition: all 0.2s;
}

.btn-music-virg:hover {
    transform: scale(1.1);
}

/* Icons */
.icon-box {
    font-size: 2rem;
    color: var(--virg-pink);
    margin-bottom: 1rem;
    background: #FFF;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 3px solid var(--virg-yellow);
}