/* Welcome Popup Styles */
.welcome-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.welcome-popup-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.welcome-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #333;
    z-index: 10;
}

.welcome-close-btn:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.welcome-header {
    background: linear-gradient(135deg, #ff9933 0%, #138808 50%, #ffffff 100%);
    padding: 40px 30px;
    text-align: center;
    color: white;
    border-radius: 20px 20px 0 0;
}

.welcome-emblem {
    margin-bottom: 20px;
}

.welcome-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 10px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.welcome-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 10px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.welcome-location {
    font-size: 1.1rem;
    margin: 5px 0 0 0;
    opacity: 0.95;
}

.welcome-body {
    padding: 30px;
}

.welcome-message {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.welcome-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s;
}

.stat-item:hover {
    background: #e9ecef;
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff9933;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.welcome-features {
    background: linear-gradient(135deg, #fff5e6 0%, #e6f7ff 100%);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.welcome-features h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.welcome-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.welcome-features li {
    padding: 8px 0;
    color: #555;
    font-size: 1rem;
}

.welcome-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.btn-explore {
    background: linear-gradient(135deg, #ff9933, #ff6b35);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.4);
}

.btn-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .welcome-popup-content {
        width: 95%;
        max-height: 95vh;
    }

    .welcome-title {
        font-size: 1.5rem;
    }

    .welcome-subtitle {
        font-size: 1.2rem;
    }

    .welcome-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .welcome-header {
        padding: 30px 20px;
    }

    .welcome-body {
        padding: 20px;
    }
}