/* Welcome Popup Modal Styles */

/* Overlay */
.welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease;
    padding: 15px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Modal Container - Smaller Size */
.welcome-modal {
    position: relative;
    max-width: 450px;
    width: 90%;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.98) 0%, rgba(18, 18, 18, 0.98) 100%);
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid rgba(255, 243, 38, 0.3);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 0 0 50px rgba(255, 243, 38, 0.2);
    animation: modalSlideUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Close Button */
.welcome-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 1rem;
}

.welcome-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    transform: rotate(90deg);
}

/* Video Container - Smaller */
.welcome-video-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #000;
}

.welcome-video-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(18, 18, 18, 1) 0%, transparent 100%);
    pointer-events: none;
}

.welcome-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content - Compact Spacing */
.welcome-content {
    padding: 30px 25px;
    text-align: center;
    position: relative;
}

/* Logo - Smaller */
.welcome-logo {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    padding: 4px;
    background: rgba(255, 243, 38, 0.1);
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 243, 38, 0.4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(255, 243, 38, 0);
    }
}

.welcome-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Title - Smaller */
.welcome-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff 0%, var(--primary-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

/* Subtitle - Compact */
.welcome-subtitle {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* WhatsApp Button - Compact */
.welcome-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e6db22 100%);
    color: #000;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 25px rgba(255, 243, 38, 0.4);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.welcome-whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.welcome-whatsapp-btn:hover::before {
    width: 250px;
    height: 250px;
}

.welcome-whatsapp-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 35px rgba(255, 243, 38, 0.6);
}

.welcome-whatsapp-btn i {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.welcome-whatsapp-btn span {
    position: relative;
    z-index: 1;
}

/* Features List - Compact */
.welcome-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.welcome-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ccc;
    font-size: 0.8rem;
}

.welcome-feature i {
    color: var(--primary-color);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .welcome-modal {
        max-width: 95%;
        border-radius: 15px;
    }

    .welcome-video-wrapper {
        height: 180px;
    }

    .welcome-content {
        padding: 25px 20px;
    }

    .welcome-logo {
        width: 55px;
        height: 55px;
    }

    .welcome-title {
        font-size: 1.5rem;
    }

    .welcome-subtitle {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }

    .welcome-whatsapp-btn {
        padding: 12px 28px;
        font-size: 0.85rem;
    }

    .welcome-features {
        gap: 15px;
        margin-top: 15px;
    }

    .welcome-feature {
        font-size: 0.75rem;
    }
}