:root {
    --bg-color: #1a1a1a;
    --text-color: #ffffff;
    --accent-color: #ffd700;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    padding: 2rem 1rem;
}

/* Noise Texture Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

lottery-generator {
    margin-bottom: 4rem;
    width: 100%;
    max-width: 500px;
}

.content-section {
    max-width: 800px;
    width: 100%;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.content-section h2 {
    font-family: 'Jua', sans-serif;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.content-section h3 {
    font-family: 'Jua', sans-serif;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.content-section p {
    margin-bottom: 1rem;
    color: #cccccc;
}

.content-section ul {
    list-style-position: inside;
    margin-bottom: 1rem;
    color: #cccccc;
}

.content-section li {
    margin-bottom: 0.5rem;
}

footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

footer a {
    color: #888;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--accent-color);
}