/* === CSS RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}
a{
    text-decoration: none !important;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

nav a {
    margin-left: 15px;
    text-decoration: none;
    color: #00cc1b;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}
section {
    margin: 40px 0;
}
.casina{
    display: flex;
}
.hero {
    margin: 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: url(img/bg.jpg);
    background-size: cover;
    background-position-y: center;
}

.btn-main {
    background-color: #00cc1b;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-main:hover {
    color: #006e10;
    background-color: #ffffff;
}

#casina {
    margin-top: 60px;
}

#casina h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.casino-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    margin: 10px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.casino-card:hover {
    transform: translateY(-3px);
}

.casino-card img {
    width: 100px;
    margin-bottom: 15px;
}

.casino-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.casino-card p {
    margin-bottom: 10px;
}

.casino-card a.btn-visit {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.casino-card a.btn-visit:hover {
    background-color: #218838;
}

ul {
    list-style: none;
    margin-top: 30px;
}

ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    position: relative;
    padding-left: 24px;
}

ul li::before {
    content: "✅";
    position: absolute;
    left: 0;
}

#onama h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

#onama div {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

#onama ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

#onama ul li {
    margin-bottom: 8px;
}

footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

footer nav a {
    margin: 0 10px;
    color: #666;
    text-decoration: none;
}

footer nav a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    nav a {
        margin: 5px 0;
    }

    .casino-card {
        padding: 15px;
    }
}