#age-verification-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
  	backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#age-verification-box {
    background: #fff;
    border-radius: 8px;
    padding: 30px 40px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

#age-verification-box h2 {
    color: #8b0000; /* Dark red */
    margin-bottom: 10px;
    font-size: 22px;
}

#age-verification-box p {
    color: #000;
    margin-bottom: 20px;
    font-size: 14px;
}

#age-verification-logo h2{
	font-size: 12px; 
	color: #000;
}

#age-verification-logo img{
	width: 35%;
}

.age-buttons {
    display: flex;
    justify-content: center;
	gap: 20px;

}

#enter-btn, #exit-btn {
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: opacity 0.2s;
	
	width: 100px;
}

#enter-btn {
    background: #246428; /* Dark green */
	color: #fff; 
}

#exit-btn {
	background: #fff;
    border: 2px solid #8b0000; /* Dark red */
	color: #8b0000;
}

#enter-btn:hover, #exit-btn:hover {
    opacity: 0.85;
}
