.wpitcom-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wpitcom-popup-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.wpitcom-popup-content h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
}

.wpitcom-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.wpitcom-logo-container {
    margin: 30px 0;
}

.wpitcom-logo {
    max-width: 150px;
    height: auto;
}

.wpitcom-logo-large {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.wpitcom-url {
    margin-top: 10px;
    font-weight: bold;
    color: #0073aa;
}

.wpitcom-question {
    font-size: 18px;
    margin: 20px 0;
    color: #333;
}

.wpitcom-age-text {
    text-align: center;
    line-height: 1.6;
    margin: 20px 0;
    color: #333;
}

.wpitcom-age-inputs {
    display: flex;
    gap: 20px;
	justify-content: center;
	align-items: center;
}

.wpitcom-select {
    margin: 0 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    display: inline-block;
}

.fancy-select {
	position: relative;
	display: inline-block;
	margin-right: 0.5rem;
	width: 110px;
	padding: 5px 20px 10px 16px;
	border-radius: 50px;
	background: linear-gradient(145deg, #ffffff, #e6e6e6);
	box-shadow: 5px 5px 15px #c5c5c5, -5px -5px 15px #ffffff;
	appearance: none;
	border: none;
	font-size: 16px;
	cursor: pointer;
	outline: none;
	transition: 0.3s ease all;
}

.fancy-select:focus,
.fancy-select:hover {
	box-shadow: 0 0 0 4px rgba(100, 149, 237, 0.2);
}

.fancy-select-wrapper {
	position: relative;
}

.fancy-select-wrapper::after {
	content: "▼";
	position: absolute;
	top: 50%;
	right: 16px;
	transform: translateY(-50%);
	pointer-events: none;
	color: #555;
	font-size: 14px;
}

.wpitcom-buttons {
    margin-top: 30px;
}

.wpitcom-btn {
    padding: 12px 24px;
    margin: 0 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.wpitcom-btn-primary {
    background-color: #0073aa;
    color: white;
}

.wpitcom-btn-primary:hover {
    background-color: #005a87;
}

.wpitcom-btn-secondary {
    background-color: #f0f0f0;
    color: #333;
}

.wpitcom-btn-secondary:hover {
    background-color: #e0e0e0;
}

.wpitcom-minor-notice {
    font-size: 12px;
    color: #666;
    margin-top: 20px;
    line-height: 1.4;
}

@media (max-width: 600px) {
    .wpitcom-popup-content {
        padding: 20px;
        margin: 20px;
    }
    
    .wpitcom-btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .wpitcom-select {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}