/* ---------- Gradient Pink Background ---------- */

body {
    background: linear-gradient(
        135deg,
        #ffd6e7 0%,
        #ffc2d1 35%,
        #ffb6e6 70%,
        #ffe6f5 100%
    );
    font-family: "Trebuchet MS", "Verdana", sans-serif;
    font-size: 16px;
    color: #4a2a3a;
    margin: 0;
}

/* ---------- Main Container ---------- */

.container {
    max-width: 900px;
    margin: 40px auto;
    background: #ffffff;
    border: 3px solid #ffb6c1;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

/* ---------- Headings ---------- */

h1 {
    text-align: center;
    color: #d63384;
    font-size: 2.2em;
}

/* Sparkle Divider under section headings */

h2 {
    color: #c2185b;
    position: relative;
    margin-top: 45px;
    padding-bottom: 14px;
}

/* Sparkle Accent Line */

h2::after {
    content: "✦ ✧ ✦ ✧ ✦";
    display: block;
    text-align: center;
    color: #ff69b4;
    font-size: 18px;
    margin-top: 6px;
    letter-spacing: 6px;
    animation: sparkle 3s ease-in-out infinite alternate;
}

/* Sparkle Animation */

@keyframes sparkle {
    from {
        opacity: 0.5;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* ---------- Resource Cards ---------- */

.resource {
    background: #fff0f6;
    border: 2px solid #ffc2d1;
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.resource:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(255, 105, 180, 0.3);
}

.link-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-left: 6px;
    vertical-align: middle;
}
