* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
    padding-bottom: 100px;
}

/* Bootstrap Icons Styling */
.bi {
    vertical-align: middle;
    margin-right: 5px;
}

.bi-circle-fill {
    font-size: 8px;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Header Section */
header {
    text-align: center;
    margin-bottom: 30px;
}

.header-banner {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex; /* left (brand) / right (actions) */
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    margin: 0 auto 20px;
    max-width: 1200px;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    padding: 5px;
}

/* Ensure external logo image fits the .logo container */
.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

/* Brand link (logo + title) */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.header-banner h1 {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.header-banner h1 {
    color: white;
    font-size: 24px;
    font-weight: 600;
}

.btn-whatsapp-group {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
    transition: transform 0.2s;
}

.btn-whatsapp-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.5);
}

.btn-play-now {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
    padding: 15px 50px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s;
}

.btn-play-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.5);
}

.play-icon {
    font-size: 20px;
}

/* Country Navigation */
.country-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.country-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.country-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.5s;
}

.country-btn:hover::before {
    left: 100%;
}

.country-btn:hover {
    transform: translateY(-2px) scale(1.05);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid #10b981;
}

/* Flag emoji styling */
.country-btn::first-letter {
    font-size: 20px;
    margin-right: 5px;
    animation: flagWave 2s ease-in-out infinite;
}

@keyframes flagWave {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

/* World Map Section */
.world-map-section {
    margin: 30px auto;
    max-width: 1200px;
    padding: 20px;
}

.map-title {
    text-align: center;
    color: white;
    font-size: 28px;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.map-title .bi {
    margin-right: 10px;
    animation: rotate-globe 3s linear infinite;
}

@keyframes rotate-globe {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.world-map {
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

/* Map Markers */
.map-marker {
    position: absolute;
    cursor: pointer;
    transform: translate(-50%, -100%);
    transition: all 0.3s ease;
    z-index: 10;
}

.map-marker:hover {
    transform: translate(-50%, -100%) scale(1.2);
    z-index: 20;
}

.marker-pin {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    animation: bounce 2s ease-in-out infinite;
    position: relative;
}

.marker-pin::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes bounce {
    0%, 100% {
        transform: rotate(-45deg) translateY(0);
    }
    50% {
        transform: rotate(-45deg) translateY(-10px);
    }
}

.marker-label {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.map-marker:hover .marker-label {
    opacity: 1;
    top: -50px;
}

.map-marker:active .marker-pin {
    animation: pulse-marker 0.5s ease;
}

@keyframes pulse-marker {
    0%, 100% {
        transform: rotate(-45deg) scale(1);
    }
    50% {
        transform: rotate(-45deg) scale(1.3);
    }
}

/* Map decorative elements */
.world-map::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Continents (decorative shapes) */
.world-map::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 150px;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 50% 30% 40% 60%;
    top: 30%;
    left: 45%;
    pointer-events: none;
    filter: blur(20px);
}

/* Main Content */
main {
    max-width: 1400px;
    margin: 0 auto;
}

/* Action Buttons Section */
.action-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.action-btn {
    background: linear-gradient(90deg, #ec4899 0%, #db2777 100%);
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    min-width: 350px;
    justify-content: center;
    animation: fadeInUp 0.6s ease-out, pulse-glow 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.action-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;
}

.action-btn:hover::before {
    width: 300px;
    height: 300px;
}

.action-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    animation: zoomPulse 0.5s ease-in-out, pulse-glow 1s ease-in-out infinite;
}

.action-btn:active {
    transform: scale(0.95);
    animation: none;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse Glow Animation */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 5px 25px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 255, 255, 0.2);
    }
}

/* Zoom Pulse Animation */
@keyframes zoomPulse {
    0%, 100% {
        transform: translateY(-3px) scale(1.05);
    }
    50% {
        transform: translateY(-3px) scale(1.08);
    }
}

.btn-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
}

.rotating-image {
    transition: opacity 0.3s ease-in-out;
    animation: rotate-fade 0.5s ease-in-out;
}

@keyframes rotate-fade {
    0% {
        opacity: 0.7;
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.action-btn .bi {
    font-size: 18px;
    margin-right: 8px;
    animation: iconBlink 2s ease-in-out infinite;
}

/* Icon Blink Animation */
@keyframes iconBlink {
    0%, 50%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    25% {
        opacity: 0.7;
        transform: scale(1.1);
    }
    75% {
        opacity: 0.8;
        transform: scale(0.95);
    }
}

.btn-red {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
}

.btn-green {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.btn-pink {
    background: linear-gradient(90deg, #ec4899 0%, #db2777 100%);
}

.btn-red-2 {
    background: linear-gradient(90deg, #f97316 0%, #ea580c 100%);
}

.btn-red-3 {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
}

.btn-pink-2 {
    background: linear-gradient(90deg, #ec4899 0%, #db2777 100%);
}

.btn-purple {
    background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 100%);
}

.btn-pink-3 {
    background: linear-gradient(90deg, #ec4899 0%, #db2777 100%);
}

.btn-red-play {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
}

.btn-red-live {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
    animation: fadeInUp 0.9s ease-out, pulse-glow 1s ease-in-out infinite, shimmer 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.btn-red-live::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    animation: shimmerMove 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

@keyframes shimmerMove {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.live-icon {
    font-size: 20px;
    animation: pulse 1.5s infinite, blink 1s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

@keyframes blink {
    0%, 49%, 100% {
        opacity: 1;
    }
    50%, 99% {
        opacity: 0.3;
    }
}

/* Staggered animation delays for buttons */
.action-btn:nth-child(1) {
    animation-delay: 0s, 0s;
}

.action-btn:nth-child(2) {
    animation-delay: 0.1s, 0.2s;
}

.action-btn:nth-child(3) {
    animation-delay: 0.2s, 0.4s;
}

.action-btn:nth-child(4) {
    animation-delay: 0.3s, 0.6s;
}

.action-btn:nth-child(5) {
    animation-delay: 0.4s, 0.8s;
}

.action-btn:nth-child(6) {
    animation-delay: 0.5s, 1s;
}

.action-btn:nth-child(7) {
    animation-delay: 0.6s, 1.2s;
}

.action-btn:nth-child(8) {
    animation-delay: 0.7s, 1.4s;
}

.action-btn:nth-child(9) {
    animation-delay: 0.8s, 1.6s;
}

.action-btn:nth-child(10) {
    animation-delay: 0.9s, 1.8s;
}

/* Profile Cards Section */
.profile-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.profile-card {
    background: rgba(30, 41, 59, 0.95);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.card-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.online-badge {
    background: #10b981;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.profile-img {
    width: 100%;
    /* height: 250px; */
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

.profile-info {
    text-align: center;
    margin-bottom: 15px;
}

.profile-info h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 5px;
}

.profile-info p {
    color: #94a3b8;
    font-size: 14px;
}

.card-actions {
    display: flex;
    gap: 10px;
}

.btn-call {
    flex: 1;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.btn-video-call {
    flex: 1;
    background: linear-gradient(90deg, #ec4899 0%, #db2777 100%);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-video-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.4);
}

/* Video Gallery Section */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.video-card {
    background: rgba(30, 41, 59, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s;
    position: relative;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.video-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.video-thumbnail {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.video-actions {
    display: flex;
    gap: 10px;
    padding: 15px;
}

.btn-whatsapp-sm {
    flex: 1;
    background: linear-gradient(90deg, #f97316 0%, #ea580c 100%);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-whatsapp-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.btn-video-call-sm {
    flex: 1;
    background: linear-gradient(90deg, #ec4899 0%, #db2777 100%);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-video-call-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.4);
}

/* Floating Buttons */
.floating-join {
    position: fixed;
    bottom: 100px;
    left: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s;
    z-index: 1000;
}

.floating-join:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
}

.join-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 5px;
}

.floating-join .bi {
    font-size: 20px;
    margin-right: 5px;
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s;
    z-index: 1000;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 5px;
}

.floating-whatsapp .bi {
    font-size: 24px;
    margin-right: 5px;
}

/* Responsive Design */

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        padding: 10px;
        padding-bottom: 80px;
    }

    .header-banner h1 {
        font-size: 18px;
    }

    .action-btn {
        min-width: 280px;
        padding: 15px 30px;
        font-size: 16px;
    }

    .profile-cards {
        grid-template-columns: 1fr;
    }

    .video-gallery {
        grid-template-columns: 1fr;
    }

    .country-nav {
        gap: 5px;
    }

    .country-btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .floating-join,
    .floating-whatsapp {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Map responsive */
    .world-map {
        height: 350px;
    }

    .map-title {
        font-size: 22px;
    }

    .marker-pin {
        width: 25px;
        height: 25px;
    }

    .marker-label {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .header-banner {
        padding: 10px 20px;
    }

    .header-banner h1 {
        font-size: 16px;
    }

    .action-btn {
        min-width: 100%;
        font-size: 14px;
    }

    .floating-join {
        left: 10px;
        bottom: 80px;
    }

    .floating-whatsapp {
        right: 10px;
        bottom: 20px;
    }
}
