

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #ff096c 0%, #d299c2 35%, #fef9d7 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}


/* Flower Animations */
.flower-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.flower {
    position: absolute;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), transparent);
    box-shadow: 
        0 0 20px rgba(255, 9, 108, 0.3),
        inset 0 0 10px rgba(255,255,255,0.5);
    animation: bloom 8s infinite ease-in-out;
}

.flower::before,
.flower::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: inherit;
    transform: rotate(120deg);
}

.flower::after {
    transform: rotate(240deg);
}

.flower-1 { width: 60px; height: 40px; top: 20%; left: 10%; animation-delay: 0s; }
.flower-2 { width: 80px; height: 50px; top: 60%; right: 15%; animation-delay: -2s; }
.flower-3 { width: 50px; height: 35px; top: 80%; left: 20%; animation-delay: -4s; }
.flower-4 { width: 70px; height: 45px; top: 10%; right: 25%; animation-delay: -1s; }
.flower-5 { width: 90px; height: 55px; top: 40%; left: 70%; animation-delay: -3s; }
.flower-6 { width: 40px; height: 30px; top: 5%; left: 60%; animation-delay: -5s; }
.flower-7 { width: 65px; height: 42px; bottom: 20%; right: 35%; animation-delay: -6s; }
.flower-8 { width: 55px; height: 38px; top: 70%; left: 5%; animation-delay: -7s; }

@keyframes bloom {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.7;
    }
    50% { 
        transform: scale(1.2) rotate(180deg); 
        opacity: 1;
    }
}

/* Main Content */
.container {
    position: relative;
    z-index: 10;
    width: 100%;
    margin: 120px auto 2rem;
    padding: 2rem;
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
}

.board{
    background-color: #ffffff3a;
    border-radius: 18%;
    max-width: 65%;
}

#about p {
    text-align: left;
    margin-left: 5%;
    margin-right: 5%;
    font-size: 20px;
}

h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    background: linear-gradient(45deg, #ff096c, #1a1919);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(255, 9, 108, 0.3);
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: clamp(1.3rem, 4vw, 2.2rem);
    color: rgba(10, 10, 10, 0.95);
    font-weight: 300;
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    line-height: 1.4;
}

.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px){
    
    .container {
        margin-top: 100px;
        padding: 1rem;
    }
    
    .flower {
        display: none;
    }
}

