.limw-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.limw-message-box {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.limw-message {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.limw-message.animate-pop {
    animation: pop 0.5s ease;
}

@keyframes pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.limw-btn {
    background-color: #046A38; /* Pakistan green */
    color: white;
    border: none;
    padding: 12px 20px;
    margin: 10px 5px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.limw-btn:hover {
    background-color: #01411C;
    transform: translateY(-2px);
}

.limw-share-btn {
    background-color: #1E4B8B; /* Dark blue */
}

.limw-share-btn:hover {
    background-color: #0D2C5E;
}

/* Flag animation */
.limw-flag-animation {
    display: flex;
    flex-direction: column;
    width: 100px;
    height: 60px;
    margin: 0 auto 20px;
    position: relative;
    transform-origin: bottom center;
}

.limw-flag-strip {
    height: 33.33%;
    width: 100%;
}

.limw-flag-strip.green {
    background-color: #046A38;
}

.limw-flag-strip.white {
    background-color: white;
    position: relative;
}

.limw-flag-crescent {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #046A38;
    border-radius: 50%;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.limw-flag-crescent:after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: white;
    border-radius: 50%;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.limw-flag-star {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #046A38;
    left: 30px;
    top: 50%;
    transform: translateY(-50%) rotate(18deg);
}

.limw-flag-star:before, .limw-flag-star:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #046A38;
    left: -8px;
    top: 0;
}

.limw-flag-star:before {
    transform: rotate(72deg);
}

.limw-flag-star:after {
    transform: rotate(-72deg);
}

.limw-flag-animation.wave {
    animation: wave 1s ease-in-out;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

/* Responsive design */
@media (max-width: 600px) {
    .limw-message {
        font-size: 1.2rem;
    }
    
    .limw-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}