/* Updated color scheme for autumn theme */
body {
    background: #2C1810;
    color: #E8C0A8;
}

.navbar {
    background: linear-gradient(to bottom, #1A0F0A 0%, rgba(26,15,10,0.95) 100%);
    border-bottom: 1px solid #925D3C;
}

.navbar a {
    color: #E8C0A8;
}

.navbar a:hover {
    color: #D4946B;
    opacity: 1;
}

/* Casino wrapper autumn styling */
.casino-wrapper {
    background: linear-gradient(145deg, #3C1F14 0%, #2C1810 100%);
    border: 1px solid #925D3C;
    position: relative;
    overflow: hidden;
}

.casino-item {
    background: rgba(28, 28, 28, 0.7);
    border: 1px solid #925D3C;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.casino-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(146, 93, 60, 0.2);
}

/* Button styles */
.btn-red {
    background: #BF4D28;
    border: 2px solid #D4946B;
    transition: all 0.3s ease;
}

.btn-red:hover {
    background: #D4946B;
    transform: scale(1.05);
}

.btn-white {
    background: #E8C0A8;
    color: #2C1810;
    border: 2px solid #925D3C;
}

.btn-white:hover {
    background: #D4946B;
    color: #1A0F0A;
}

/* Footer styling */
footer {
    border: 1px solid #925D3C;
    background: linear-gradient(to bottom, rgba(28,28,28,0.7) 0%, rgba(44,24,16,0.9) 100%);
}

.footer-age {
    background: #1A0F0A;
    border: 1px solid #925D3C;
}

/* Falling leaves animation */
@keyframes falling {
    0% {
        transform: translateY(-100%) rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes sway {
    0%, 100% {
        transform: translateX(-15px);
    }
    50% {
        transform: translateX(15px);
    }
}


.bg::before,
.bg::after {
    content: '🍁';
    position: fixed;
    font-size: 24px;
    color: #BF4D28;
    animation: falling 15s linear infinite, sway 3s ease-in-out infinite;
    z-index: -1;
}

.bg::before {
    left: 20%;
    animation-delay: -2s;
}

.bg::after {
    left: 60%;
    animation-delay: -7s;
}

/* Text and heading styles */
h1, h2, h3, h4 {
    color: #D4946B;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

h1 {
    background: linear-gradient(45deg, #BF4D28, #D4946B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Modal styling */
.modal {
    background: #3C1F14;
    color: #E8C0A8;
    border: 2px solid #925D3C;
}

.modal .age-circle {
    background: #BF4D28;
    border: 2px solid #D4946B;
}

.modal button {
    background: #D4946B;
    color: #1A0F0A;
    border: 2px solid #925D3C;
    transition: all 0.3s ease;
}

.modal button:hover {
    background: #BF4D28;
    color: #E8C0A8;
}

/* Hover effects and transitions */
.menu-items li a {
    position: relative;
}

.menu-items li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #BF4D28;
    transition: width 0.3s ease;
}

.menu-items li a:hover::after {
    width: 100%;
}








/* Updated color scheme for autumn theme */
body {
    background: #2C1810;
    color: #E8C0A8;
}

.navbar {
    background: linear-gradient(to bottom, #1A0F0A 0%, rgba(26,15,10,0.95) 100%);
    border-bottom: 1px solid #925D3C;
}

.navbar a {
    color: #E8C0A8;
}

.navbar a:hover {
    color: #D4946B;
    opacity: 1;
}

/* Text block styling */
.bg {
    background: linear-gradient(145deg, rgba(60,31,20,0.7) 0%, rgba(44,24,16,0.9) 100%);
    border: 1px solid #925D3C;
    border-radius: 8px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.bg p {
    color: #E8C0A8;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Casino wrapper autumn styling */
.casino-wrapper {
    background: linear-gradient(145deg, #3C1F14 0%, #2C1810 100%);
    border: 1px solid #925D3C;
    position: relative;
    overflow: hidden;
}

.casino-item {
    background: rgba(28, 28, 28, 0.7);
    border: 1px solid #925D3C;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.casino-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(146, 93, 60, 0.2);
}

/* Button styles */
.btn-red {
    background: #BF4D28;
    border: 2px solid #D4946B;
    transition: all 0.3s ease;
}

.btn-red:hover {
    background: #D4946B;
    transform: scale(1.05);
}

.btn-white {
    background: #E8C0A8;
    color: #2C1810;
    border: 2px solid #925D3C;
}

.btn-white:hover {
    background: #D4946B;
    color: #1A0F0A;
}

/* Footer styling */
footer {
    border: 1px solid #925D3C;
    background: linear-gradient(to bottom, rgba(28,28,28,0.7) 0%, rgba(44,24,16,0.9) 100%);
}

.footer-age {
    background: #1A0F0A;
    border: 1px solid #925D3C;
}

/* Text and heading styles */
h1, h2, h3, h4 {
    color: #D4946B;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

h1 {
    background: linear-gradient(45deg, #BF4D28, #D4946B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Modal styling */
.modal {
    background: #3C1F14;
    color: #E8C0A8;
    border: 2px solid #925D3C;
}

.modal .age-circle {
    background: #BF4D28;
    border: 2px solid #D4946B;
}

.modal button {
    background: #D4946B;
    color: #1A0F0A;
    border: 2px solid #925D3C;
    transition: all 0.3s ease;
}

.modal button:hover {
    background: #BF4D28;
    color: #E8C0A8;
}

/* Hover effects and transitions */
.menu-items li a {
    position: relative;
}

.menu-items li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #BF4D28;
    transition: width 0.3s ease;
}

.menu-items li a:hover::after {
    width: 100%;
}

/* Additional text styling */
.info h2 {
    color: #D4946B;
    border-bottom: 2px solid #925D3C;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.request p {
    background: rgba(60,31,20,0.5);
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #925D3C;
    margin: 15px 0;
}

/* Enhanced link styles */
.footer-links a {
    color: #D4946B;
    transition: color 0.3s ease;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 4px;
}

.footer-links a:hover {
    color: #E8C0A8;
    background: rgba(146, 93, 60, 0.2);
}

/* Additional responsive adjustments */
@media screen and (max-width: 830px) {
    .bg {
        padding: 20px;
    }

    h1 {
        font-size: 72px;
    }
}

@media screen and (max-width: 540px) {
    .bg {
        padding: 15px;
    }

    h1 {
        font-size: 48px;
    }
}