.auny-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 15;
}

.auny-header {
    text-align: center;
    padding: 30px 0;
    position: relative;
    z-index: 20;
}

.auny-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.auny-logo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1a237e, #4a148c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    margin-right: 15px;
    border: 4px solid #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.auny-header h1 {
    font-size: 2.8rem;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    animation: auny-glow 2s infinite alternate;
    margin-bottom: 10px;
}

.auny-message {
    font-style: italic;
    font-weight: 500;
    color: #5e35b1;
    text-align: center;
    margin: 20px 0;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.auny-main-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 15;
}

.auny-info-card {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

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

.auny-info-card h2 {
    color: #2e7d32;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffeb3b;
}

.auny-info-card p {
    margin-bottom: 15px;
}

.auny-new-year-card {
    text-align: center;
    background: linear-gradient(45deg, #ff9a9e, #fad0c4);
}

.auny-new-year-card h2 {
    color: #d32f2f;
    border-bottom: 2px solid #fff;
}

.auny-footer {
    text-align: center;
    padding: 20px;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    margin-top: 30px;
    position: relative;
    z-index: 15;
}

/* Animation for glowing text */
@keyframes auny-glow {
    0% {
        text-shadow: 0 0 10px #ff9a9e, 0 0 20px #fad0c4, 0 0 30px #ff9a9e;
    }
    100% {
        text-shadow: 0 0 20px #fad0c4, 0 0 30px #ff9a9e, 0 0 40px #fad0c4;
    }
}

/* Grass styling */
.auny-grass {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #2e8b57, #3cb371, #2e8b57);
    z-index: 2;
    pointer-events: none;
}

.auny-grass::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 40px;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 10px,
            #3cb371 10px,
            #3cb371 12px
        ),
        repeating-linear-gradient(
            -90deg,
            transparent,
            transparent 15px,
            #2e8b57 15px,
            #2e8b57 17px
        );
    clip-path: polygon(0% 100%, 5% 80%, 10% 100%, 15% 70%, 20% 100%, 25% 80%, 30% 100%, 35% 75%, 40% 100%, 45% 85%, 50% 100%, 55% 70%, 60% 100%, 65% 90%, 70% 100%, 75% 60%, 80% 100%, 85% 85%, 90% 100%, 95% 75%, 100% 100%);
}

/* Flower styling */
.auny-flower {
    position: fixed;
    z-index: 3;
    animation: auny-float 8s infinite ease-in-out;
    pointer-events: none;
}

.auny-petals {
    position: relative;
    width: 30px;
    height: 30px;
    animation: auny-rotate 10s infinite linear;
}

.auny-petal {
    position: absolute;
    width: 15px;
    height: 15px;
    background: #ffeb3b;
    border-radius: 50% 50% 50% 0;
}

.auny-petal:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%) rotate(0deg); }
.auny-petal:nth-child(2) { top: 50%; right: 0; transform: translateY(-50%) rotate(90deg); }
.auny-petal:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%) rotate(180deg); }
.auny-petal:nth-child(4) { top: 50%; left: 0; transform: translateY(-50%) rotate(270deg); }

.auny-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #ff9800;
    border-radius: 50%;
}

.auny-stem {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #4caf50, #388e3c);
}

/* Sunshine */
.auny-sun {
    position: fixed;
    top: 50px;
    right: 50px;
    width: 80px;
    height: 80px;
    background: #FFD700;
    border-radius: 50%;
    box-shadow: 0 0 60px #FF8C00, 0 0 100px #FFA500;
    animation: auny-pulse 4s infinite alternate;
    z-index: 1;
    pointer-events: none;
}

.auny-sun-ray {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 5px;
    background: #FFD700;
    transform-origin: left center;
    border-radius: 5px;
}

/* Animations */
@keyframes auny-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(2deg);
    }
    50% {
        transform: translateY(-20px) rotate(-2deg);
    }
    75% {
        transform: translateY(-10px) rotate(2deg);
    }
}

@keyframes auny-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes auny-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 60px #FF8C00, 0 0 100px #FFA500;
    }
    100% {
        transform: scale(1.1);
        box-shadow: 0 0 80px #FF8C00, 0 0 120px #FFA500;
    }
}

/* Fireworks */
.auny-firework {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    animation: auny-explode 1.5s ease-out forwards;
    z-index: 5;
    pointer-events: none;
}

@keyframes auny-explode {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Background */
.auny-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #6bbd5c 30%, #87ceeb 100%);
    z-index: -1;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .auny-header h1 {
        font-size: 2rem;
    }
    
    .auny-logo {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
    
    .auny-info-card {
        min-width: 100%;
    }
    
    .auny-sun {
        width: 50px;
        height: 50px;
        top: 30px;
        right: 30px;
    }
}