/* Welcome Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    max-width: 700px;
    width: 90%;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-container {
    transform: scale(1);
}

.popup-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.popup-close {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: #dc2626;
    border: 2px solid white;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10001;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.popup-close:hover {
    background: #b91c1c;
    transform: rotate(90deg) scale(1.1);
}

.popup-logo {
    margin-bottom: 2rem;
}

.popup-logo img {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.5));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.popup-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.popup-subtitle {
    font-size: 1.5rem;
    color: #dc2626;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.popup-text {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-family: Arial, sans-serif;
}

.popup-highlight {
    background-color: #dc2626;
    color: white;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.popup-cta {
    background-color: #dc2626;
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.popup-cta:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .popup-container {
        padding: 2rem 1.5rem;
    }
    
    .popup-title {
        font-size: 1.8rem;
    }
    
    .popup-subtitle {
        font-size: 1.2rem;
    }
    
    .popup-text {
        font-size: 1rem;
    }
    
    .popup-highlight {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }
    
    .popup-logo img {
        width: 80px;
        height: 80px;
    }
}
