:root {
    --primary-color: #f0f0f0;
    --secondary-color: #333;
    --accent-color: #ff7f50;
    --background-color: #1a1a1a;
    --font-family: 'Arial', sans-serif;
    --container-bg: rgba(0, 0, 0, 0.2);
}

body {
    background-color: var(--background-color);
    color: var(--primary-color);
    font-family: var(--font-family);
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    /* Subtle noise texture */
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%231a1a1a" width="100" height="100"/><g fill-opacity="0.1"><rect fill="%23f0f0f0" width="1" height="1" x="10" y="10"/><rect fill="%23f0f0f0" width="1" height="1" x="30" y="70"/><rect fill="%23f0f0f0" width="1" height="1" x="50" y="30"/><rect fill="%23f0f0f0" width="1" height="1" x="70" y="90"/><rect fill="%23f0f0f0" width="1" height="1" x="90" y="10"/></g></svg>');
}

header, main, footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    text-align: center;
    background: var(--container-bg);
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    width: 90%;
    max-width: 700px;
    margin-bottom: 30px;
}

header h1 {
    font-size: 2.8rem;
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    text-shadow: 0 0 15px var(--accent-color);
}

header p {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0;
}

section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    display: inline-block;
}

.lotto-numbers {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.lotto-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
}

#generate-btn {
    padding: 1rem 2rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    background-color: var(--accent-color);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 0 20px var(--accent-color);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

#generate-btn:hover {
    background-color: #ff6347;
    box-shadow: 0 0 30px #ff6347;
    transform: translateY(-2px);
}

#generate-btn:active {
    transform: translateY(1px);
}

#about p, #how-to-use p, #disclaimer p {
    text-align: left;
    font-size: 1.1rem;
}

.partnership-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.partnership-form label {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: -10px;
}

.partnership-form input[type="text"],
.partnership-form input[type="email"],
.partnership-form textarea {
    padding: 12px;
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--primary-color);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.partnership-form input[type="text"]:focus,
.partnership-form input[type="email"]:focus,
.partnership-form textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 8px rgba(255, 127, 80, 0.5);
    outline: none;
}

.partnership-form textarea {
    resize: vertical;
    min-height: 120px;
}

.partnership-form button[type="submit"] {
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    color: var(--primary-color);
    background-color: var(--accent-color);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 0 15px var(--accent-color);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    align-self: center;
    width: 50%;
    margin-top: 15px;
}

.partnership-form button[type="submit"]:hover {
    background-color: #ff6347;
    box-shadow: 0 0 25px #ff6347;
    transform: translateY(-2px);
}

#disqus_thread {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 20px;
}

footer {
    border-top: 1px solid var(--secondary-color);
    padding-top: 20px;
    margin-top: 20px;
}

footer.container {
    background: none;
    box-shadow: none;
}

footer p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #aaa;
}

footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ff6347;
    text-decoration: underline;
}