:root {
    --oveja-white: #FFFFFF;
    --oveja-gray: #F5F7FA;
    --oveja-text: #5D6D7E;
    --oveja-accent: #F9E79F;
    /* Pastel Yellow */
    --oveja-secondary: #AED6F1;
    /* Soft Blue */
    --font-heading: 'Sacramento', cursive;
    --font-body: 'Quicksand', sans-serif;
}

body {
    background-color: var(--oveja-gray);
    color: var(--oveja-text);
    font-family: var(--font-body);
    overflow-x: hidden;
    background-image: radial-gradient(#EBF5FB 2px, transparent 2px);
    background-size: 30px 30px;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;700&family=Sacramento&display=swap');

h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--oveja-text);
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.8);
}

h2,
h3 {
    font-family: var(--font-body);
    font-weight: 700;
    color: #85929E;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--oveja-text);
}

/* Components */
.oveja-card {
    background: var(--oveja-white);
    border-radius: 30px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(174, 214, 241, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    /* Fluffy border effect placeholder */
}

.btn-oveja {
    background: var(--oveja-secondary);
    color: white;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(174, 214, 241, 0.4);
}

.btn-oveja:hover {
    background: #85C1E9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(174, 214, 241, 0.6);
    color: white;
    text-decoration: none;
}

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

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
}

.hero-image {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    margin: 20px auto;
    border: 8px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Cloud Animation Canvas */
#cloudCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

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

.count-bubble {
    background: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    /* Perfect circle */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.count-bubble span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--oveja-text);
    line-height: 1;
}

.count-bubble small {
    font-size: 0.6rem;
    color: #ABB2B9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Icons */
.icon-circle {
    width: 60px;
    height: 60px;
    background: #EBF5FB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--oveja-text);
    margin: 0 auto 1rem;
}

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

.btn-music-oveja {
    width: 50px;
    height: 50px;
    background: white;
    color: var(--oveja-text);
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-music-oveja:hover {
    transform: rotate(360deg);
}