/* Explain: Added subtle gold/yellow gradient overlay and animated sparkle effect to the dark background for a richer, fluid look while keeping the overall black theme. */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text-color);
    background-color: #050505;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 40%);
    background-attachment: fixed;
    font-family: var(--font-body);
}

img {
    max-width: 100%;
    display: block;
}

::selection {
    background: var(--accent-color);
    color: #000000;
}

h1,
h2,
h3,
.luxury-heading {
    font-family: var(--font-heading);
    letter-spacing: -0.035em;
}

p {
    line-height: 1.75;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

button,
a {
    transition: all 220ms ease;
}

:focus-visible {
    outline: 3px solid rgba(249, 115, 74, 0.65);
    outline-offset: 4px;
}

/* Google AdSense Protections - Affichage discret et intégré */
ins.adsbygoogle, .google-auto-placed {
    max-width: 100% !important;
    overflow: hidden !important;
    margin-block: 2rem !important;
    display: block;
    text-align: center;
    border-radius: 16px;
}
