:root {
    --cielo-navy: #1B263B;
    --cielo-lighter-navy: #415A77;
    --cielo-beige: #F2E9E4;
    --cielo-gold: #C9A227;
    --font-heading: 'Sacramento', cursive;
    --font-body: 'Comfortaa', display;
}

body {
    background-color: var(--cielo-navy);
    color: var(--cielo-beige);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
}

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

h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    color: var(--cielo-beige);
    text-shadow: 0 0 10px rgba(242, 233, 228, 0.5);
    margin-bottom: 0;
}

h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--cielo-gold);
}

.h3-custom {
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--cielo-gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Components */
.cielo-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cielo-card::before {
    content: '★';
    position: absolute;
    top: 10px;
    right: 15px;
    color: var(--cielo-gold);
    font-size: 1.5rem;
    opacity: 0.7;
}

.btn-cielo {
    background-color: var(--cielo-gold);
    color: var(--cielo-navy);
    font-family: var(--font-body);
    font-weight: 700;
    padding: 12px 35px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.4);
}

.btn-cielo:hover {
    background-color: #F2E9E4;
    transform: scale(1.05);
    color: var(--cielo-navy);
    text-decoration: none;
    box-shadow: 0 0 25px rgba(242, 233, 228, 0.6);
}

/* Hero Section */
.hero-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

#starCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
}

.hero-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--cielo-gold);
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.3);
    margin: 20px auto;
}

.moon-shape {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: transparent;
    border-radius: 50%;
    box-shadow: -20px 20px 0 0 var(--cielo-beige);
    opacity: 0.1;
    transform: rotate(45deg);
    pointer-events: none;
}

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

.btn-music-cielo {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid var(--cielo-gold);
    border-radius: 50%;
    color: var(--cielo-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.3);
    transition: all 0.3s;
}

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

.count-circle {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--cielo-gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--cielo-beige);
}

.count-circle span {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.count-circle small {
    font-size: 0.6rem;
    text-transform: uppercase;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.5);
}