* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, #8B6914 0%, #D4AF37 50%, #FFD700 100%);
    min-height: 100vh;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Language Selector */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.lang-btn {
    background: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.lang-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.globe-icon {
    font-size: 18px;
}

.arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.lang-btn.active .arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    display: none;
    overflow: hidden;
}

.lang-dropdown.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-dropdown a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.lang-dropdown a:last-child {
    border-bottom: none;
}

.lang-dropdown a:hover {
    background: #f8f8f8;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 50px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.golden-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.3) 0%, 
        rgba(255, 215, 0, 0.25) 50%, 
        rgba(184, 134, 11, 0.3) 100%);
    z-index: 2;
}

.money-falling {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 3;
}

.coin {
    position: absolute;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.6);
    animation: fall linear infinite;
    font-weight: bold;
}

.coin-1 { left: 10%; animation-duration: 8s; animation-delay: 0s; }
.coin-2 { left: 30%; animation-duration: 10s; animation-delay: 2s; }
.coin-3 { left: 50%; animation-duration: 9s; animation-delay: 1s; }
.coin-4 { left: 70%; animation-duration: 11s; animation-delay: 3s; }
.coin-5 { left: 90%; animation-duration: 7s; animation-delay: 1.5s; }

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 0 10px;
}

.hero-text {
    color: white;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.main-heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.highlight {
    font-size: 4rem;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    display: block;
    margin-top: 10px;
}

.hero-image-area {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.invite-banner {
    background: rgba(139, 105, 20, 0.95);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.character-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.peacock-feather {
    position: absolute;
    left: -30px;
    top: 20px;
    font-size: 60px;
    transform: rotate(-20deg);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    z-index: 3;
}

.character {
    position: relative;
    width: 200px;
    height: 300px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.character::before {
    content: '👩';
    font-size: 200px;
    position: absolute;
    bottom: 0;
    z-index: 2;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.3));
}

.pot {
    position: relative;
    width: 120px;
    height: 100px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    border-radius: 0 0 60px 60px;
    margin-bottom: 50px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.pot::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 20px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    border-radius: 10px;
}

.pot-text {
    color: #FFD700;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.rupee-symbol {
    font-size: 2.5rem;
    color: #FFD700;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.coins-overflow {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.coin-small {
    font-size: 20px;
    color: #FFD700;
    animation: bounce 2s ease-in-out infinite;
}

.coin-small:nth-child(2) {
    animation-delay: 0.2s;
}

.coin-small:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Features Section */
.features-section {
    padding: 60px 20px;
    background: #8B4513;
    display: flex;
    justify-content: center;
}

.features-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 1000px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B4513;
    text-align: center;
    margin-bottom: 50px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 10px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFACD 100%);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
}

.icon-clipboard, .icon-money, .icon-wallet, .icon-lightning, .icon-support {
    font-size: 40px;
}

.icon-24-7 {
    font-size: 18px;
    font-weight: 700;
    color: #8B4513;
    background: #FFD700;
    padding: 5px 10px;
    border-radius: 5px;
    position: absolute;
    top: -5px;
    right: -10px;
}

.feature-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Footer */
.footer {
    background: #8B4513;
    padding: 40px 20px;
    text-align: center;
}

.footer-text {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 10px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.download-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B4513;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 15px;
    }
    
    .main-heading {
        font-size: 2.5rem;
    }
    
    .highlight {
        font-size: 3rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        padding: 80px 15px 40px;
    }
}

@media (max-width: 600px) {
    .hero-section {
        padding: 70px 10px 30px;
        min-height: 60vh;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .main-heading {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .highlight {
        font-size: 2.2rem;
        display: inline;
        margin-top: 0;
    }
    
    .invite-banner {
        font-size: 0.95rem;
        padding: 12px 20px;
        margin-bottom: 15px;
        max-width: calc(100% - 20px);
    }
    
    .features-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .features-card {
        padding: 30px 20px;
    }
    
    .feature-text {
        font-size: 1rem;
    }
    
    .footer-text {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .download-btn {
        font-size: 1rem;
        padding: 12px 30px;
        max-width: 90%;
    }
    
    .language-selector {
        top: 10px;
        right: 10px;
    }
    
    .lang-btn {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .lang-dropdown {
        min-width: 180px;
        right: 0;
    }
}

@media (max-width: 400px) {
    .main-heading {
        font-size: 1.5rem;
    }
    
    .highlight {
        font-size: 1.8rem;
    }
    
    .invite-banner {
        font-size: 0.85rem;
        padding: 10px 15px;
    }
    
    .features-title {
        font-size: 1.5rem;
    }
    
    .footer-text {
        font-size: 1rem;
    }
}

