:root {
    --bg-main: #292a2d;
    --bg-card: #232427;
    --text-main: #f2f2ee;
    --accent: #67e92d;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.placeholder-section {
    background: #212225;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.placeholder-section h2 {
    margin: 0 0 0.75rem;
    font-weight: 600;
}

.placeholder-section p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}
