:root {
    /* Colorful Theme Variables */
    --dia-canvas: #f0fdfa; /* Light teal tint for fresh wellness feel */
    --dia-sheet: #ffffff;
    --dia-night: #0f172a;
    
    --dia-pop-bg: #ec4899; /* Vibrant Pink */
    --dia-pop-hover: #be185d;
    
    --dia-vibe-grad: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    
    --dia-ink-dark: #1e293b;
    --dia-ink-muted: #64748b;
    --dia-ink-light: #ffffff;
    
    --dia-star: #f59e0b;
    
    /* Randomization Settings */
    --font-display: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --dia-pill: 999px;
    --dia-shadow-deep: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
    --dia-wrap-w: 1200px;
}

/* Core setup */
html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

/* Structural Classes avoiding footprint names */
.dia-limit-w {
    width: 100%;
    max-width: var(--dia-wrap-w);
    margin-left: auto;
    margin-right: auto;
}

.dia-head-txt {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-weight: 800;
}

.dia-rad-pill {
    border-radius: var(--dia-pill);
}

/* Interactive elements */
.dia-act-link {
    transition: all 0.3s ease;
}

.dia-act-link:hover, .dia-act-link:focus {
    transform: translateY(-2px) scale(1.02);
    outline: none;
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.3), 0 15px 15px -5px rgba(0, 0, 0, 0.1);
}

/* Base Fixes */
img, picture, svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}