* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #121212;
    color: #e0e0e0;
    min-height: 100vh;
    margin: 0;
    padding-top: 80px;
    transition: background-color 0.5s ease, color 0.5s ease;
    display: flex;
    justify-content: center;
}

main {
    background-image: url("/static/homepage/images/roleta.JPG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    max-width: 900px;
    padding: 30px 40px;
    box-sizing: border-box;
    background-color: rgba(18, 18, 18, 0.85);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.7);
}

section {
    margin-bottom: 2.5rem;
}

h2 {
    font-size: 1.8rem;
    color: #007bff;
    margin-bottom: 15px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #dcdcdc;
    margin-bottom: 15px;
}

ul {
    list-style-type: disc;
    padding-left: 1.8rem;
    color: #dcdcdc;
    margin-bottom: 15px;
}

ul li {
    margin-bottom: 8px;
}

strong {
    color: #66b2ff;
}

.btn-primary {
    display: inline-block;
    background-color: #007BFF;      
    color: #fff;                    
    font-weight: 600;               
    padding: 12px 28px;             
    border-radius: 6px;            
    text-decoration: none;          
    font-size: 1.1rem;              
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
    cursor: pointer;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #0056b3;     
    box-shadow: 0 6px 12px rgba(0, 86, 179, 0.5);
    outline: none;
    text-decoration: none;
}

.btn-primary:active {
    background-color: #004494;     
    box-shadow: none;
}

@media (max-width: 600px) {
    main {
        padding: 20px;
        border-radius: 8px;
    }

    h2 {
        font-size: 1.5rem;
    }
}
