/* Warning Section Styles */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #fff3f0;
    --secondary: #6b3e26;
    --accent: #f8a5c2;
    --text-dark: #4a3728;
    --text-light: #8b6f5c;
    --white: #ffffff;
    --gradient-warm: linear-gradient(135deg, #fff3f0 0%, #ffe4dc 100%);
    --shadow-soft: 0 4px 20px rgba(107, 62, 38, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--primary);
    color: var(--text-dark);
    line-height: 1.7;
}

/* Warning Section */
.warning-section {
    padding: 80px 24px;
    background: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative Geometric Shapes */
.warning-section::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 8%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(248, 165, 194, 0.2) 0%, rgba(248, 165, 194, 0.06) 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    filter: blur(2px);
    z-index: 0;
}

.warning-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(107, 62, 38, 0.1) 0%, rgba(248, 165, 194, 0.05) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(2px);
    z-index: 0;
}

/* Floating Cat Stickers */
.warning-floating-stickers {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.warning-sticker {
    position: absolute;
    width: 80px;
    height: auto;
    opacity: 0.07;
    filter: grayscale(30%) sepia(20%) blur(1px);
}

.warning-sticker-1 {
    top: 15%;
    left: 10%;
    width: 70px;
}

.warning-sticker-2 {
    bottom: 15%;
    right: 12%;
    width: 75px;
    transform: scaleX(-1);
}

.warning-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: var(--gradient-warm);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 1;
}

.warning-title {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 16px;
}

.warning-text {
    font-size: 1.1rem;
    color: var(--text-light);
}

.highlight {
    color: var(--secondary);
    font-weight: 700;
}

/* Fade Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .warning-section {
        padding: 60px 20px;
    }

    .warning-section::before {
        width: 140px;
        height: 140px;
        top: 5%;
        left: -30px;
    }

    .warning-section::after {
        width: 120px;
        height: 120px;
        bottom: 5%;
        right: -20px;
    }

    .warning-box {
        padding: 32px 24px;
    }

    .warning-title {
        font-size: 1.3rem;
    }

    .warning-text {
        font-size: 1rem;
    }
}