* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #1b1b1b;
    color: #fff;
}

h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    color: #ffc107;
}

a {
    color: #ffc107;
    text-decoration: none;
}

#main {
    background: url('../images/casino-banner.jpg') no-repeat center center/cover;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#main h1 {
    font-size: 48px;
    text-shadow: 2px 2px 5px #000;
}

#main p {
    font-size: 24px;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #e83e8c;
    border-color: #e83e8c;
    color: #fff;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    box-shadow: 0px 0px 20px 0px rgba(255, 255, 255, 0.6);
}

.btn-primary:hover {
    background-color: #d63384;
    box-shadow: 0px 0px 40px 0px rgba(255, 255, 255, 0.9);
}

section {
    padding: 60px 0;
}

#advantages, #games, #faq, #testimonials {
    background-color: #222;
    border-radius: 10px;
    margin-bottom: 40px;
    padding: 40px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

#advantages h3, #games h4 {
    color: #ffc107;
    text-shadow: 1px 1px 3px #000;
}

#testimonials .carousel-inner {
    background: #333;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.7);
}

#banner {
    background-color: #e83e8c;
    color: white;
    padding: 60px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.5);
}

#banner h2 {
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 2px 2px 5px #000;
}

input, textarea, select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 50px;
    border: none;
    background-color: #333;
    color: #fff;
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.7);
}

footer {
    background-color: #111;
    padding: 30px 0;
    text-align: center;
    color: #fff;
}

footer p {
    margin: 10px 0;
    color: #ffc107;
}
img {
    width: 100%;
    display: block;
}
/* Анимации */
.animate__animated {
    visibility: hidden;
}

.animate__animated.animate__fadeIn {
    visibility: visible;
    animation-duration: 1.5s;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px #ffc107, 0 0 10px #ffc107, 0 0 15px #ffc107, 0 0 20px #ffc107;
    }
    100% {
        box-shadow: 0 0 20px #ffc107, 0 0 30px #ffc107, 0 0 40px #ffc107, 0 0 50px #ffc107;
    }
}
form input {
    width: 300px!important;
}
#advantages h3, #games h4 {
    animation: glow 1.5s infinite alternate;
}
.game-card {
    background-color: #f8f9fa; 
    border: 1px solid #ddd; 
    border-radius: 10px; 
    padding: 20px; 
    margin-bottom: 20px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); в
    transition: transform 0.3s ease; 
}

.game-card:hover {
    transform: scale(1.05); 
}

.game-image {
    width: 100%; 
    height: 200px; 
    object-fit: cover; 
    border-radius: 10px; 
}

.game-card .btn {
    width: 100%; 
}
.navbar-nav .nav-link {
    font-size: 18px; 
}

.navbar-brand {
    font-size: 24px; 
}

.dropdown-menu .dropdown-item {
    font-size: 18px; 
}
#testimonials img {
    width: 80px;  
    height: 80px;
    object-fit: cover; 
    border: 2px solid #ddd;
    padding: 5px; 
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; 
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    color: #333;
}

.popup-image {
    width: 80px;
    margin-bottom: 20px;
}

.popup h2 {
    margin-bottom: 15px;
}

.popup p {
    margin-bottom: 20px;
}

.btn {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.btn-success {
    background-color: #28a745;
    color: #fff;
}

.btn-danger {
    background-color: #dc3545;
    color: #fff;
}