body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #fceabb, #f8b500, #ff6f61);
    color: #333333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    position: relative;
}

/* ===== Headers ===== */
h1, h2, h3, h4 {
    font-family: 'Georgia', serif;
    font-weight: bold;
    color: #ff3d7f;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
    margin-top: 1.5em;
}

/* ===== Links ===== */
a {
    color: #ff9500;
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover {
    color: #00d4ff;
    text-shadow: 0 0 8px #ffed00;
}

/* ===== Buttons ===== */
button, .btn {
    background: linear-gradient(45deg, #ff6f61, #fceabb);
    color: #333;
    border: none;
    padding: 0.7em 1.4em;
    font-size: 1em;
    font-weight: bold;
    border-radius: 12px;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
button:hover, .btn:hover {
    transform: scale(1.05);
    box-shadow: 5px 5px 12px rgba(0,0,0,0.3);
}

/* ===== Containers / Sections ===== */
section {
    padding: 3em 2em;
    margin: 1em auto;
    background: rgba(255,255,255,0.85);
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    max-width: 1000px;
}

/* ===== Images ===== */
img {
    border-radius: 15px;
    border: 5px solid #ffed00;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    max-width: 100%;
    height: auto;
}

/* ===== Funky accents ===== */
.decorative {
    font-family: 'Courier New', monospace;
    color: #ff3d7f;
    background: rgba(255, 255, 255, 0.4);
    padding: 0.2em 0.5em;
    border-radius: 6px;
    display: inline-block;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.15);
}

/* ===== Footer ===== */
footer {
    text-align: center;
    padding: 2em;
    background: #f8b500;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
}

/* ===== Maximalist touches ===== */
body::before {
    content: '';
    position: fixed;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center, #ff3d7f, transparent 70%);
    opacity: 0.3;
    z-index: 0;
}
body::after {
    content: '';
    position: fixed;
    bottom: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, #00d4ff, transparent 70%);
    opacity: 0.25;
    z-index: 0;
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.mt-2 { margin-top: 2em; }
.mb-2 { margin-bottom: 2em; }
.p-2 { padding: 2em; }