/*============================================================================
 * Theme Name: Midnight Crimson (Luxury Dark Theme)
 * Description: Premium Diamond Edition - Eid-ul-Adha Special Card
 * Colors: Primary Silk Gold (#E6C687), Accent Neon Spark (#FF4D4D)
 * Background: linear-gradient(135deg, #1C0A0C 0%, #341115 100%)
 * Vibe: Deep Royal Crimson & Dark Luxury Gold Combo
 ============================================================================*/

/* ১. গ্লোবাল রিসেট এবং সিকিউরিটি প্রোটেকশন */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Plus Jakarta Sans', 'Hind Siliguri', sans-serif;
    background: linear-gradient(135deg, #1C0A0C 0%, #341115 100%);
    color: #E6C687;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-x: hidden;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
}

/* ২. ব্যাকগ্রাউন্ড অ্যানিমেটেড নিয়ন এবং গোল্ডেন ডাস্ট */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: rgba(255, 77, 77, 0.04);
    backdrop-filter: blur(1px);
    animation: floatUp-Crimson linear infinite;
    border-radius: 4px;
}

.shape.circle { border-radius: 50%; }
.shape.triangle {
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 20px solid rgba(230, 198, 135, 0.06);
}

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

/* ৩. মেইন লেআউট র‍্যাপার */
.page-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.capture-area {
    width: 100%;
    flex-grow: 1;
}

/* ৪. এক্সপোর্ট জোন (ডাউনলোড কালার লক করার প্রধান সিকিউরিটি মেকানিজম) */
/* html2canvas ফিক্স: !important দিয়ে ব্যাকগ্রাউন্ড লক করা হয়েছে যাতে ডাউনলোডের সময় কোনোভাবেই সাদা না হয়ে রয়্যাল ডার্ক ক্রিমসন থাকে */
#exportZone {
    width: 100% !important;
    background: linear-gradient(135deg, #1C0A0C 0%, #341115 100%) !important;
    border: 2px solid rgba(230, 198, 135, 0.18) !important;
    border-radius: 28px !important;
    padding: 35px 24px !important;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.85), inset 0 0 40px rgba(255, 77, 77, 0.05) !important;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* কার্ডের টপ বর্ডারে লাক্সারি ব্রাইট সিল্ক গোল্ডেন স্ট্রিপ */
#exportZone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #FF4D4D, #E6C687, #FF4D4D);
}

/* ৫. ব্র্যান্ড ও প্রোফাইল সেকশন */
.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.logo-box {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    padding: 4px;
    background: #1C0A0C;
    box-shadow: 0 0 25px rgba(230, 198, 135, 0.2);
    border: 2px solid #E6C687;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.logo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.biz-name {
    font-size: 24px;
    font-weight: 700;
    color: #E6C687;
    text-shadow: 0 2px 12px rgba(230, 198, 135, 0.35);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.biz-desc {
    font-size: 13px;
    color: #FF4D4D;
    font-weight: 500;
    padding: 0 20px;
    line-height: 1.45;
    letter-spacing: 0.2px;
}

/* ৬. রাজকীয় মিডনাইট ক্রিমসন গ্রিটিং কার্ড */
.greeting-card {
    background: rgba(28, 10, 12, 0.85);
    border: 1px solid rgba(230, 198, 135, 0.15);
    border-radius: 22px;
    padding: 30px 22px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 24px;
    position: relative;
    backdrop-filter: blur(10px);
}

.islamic-art-top {
    font-size: 32px;
    color: #E6C687;
    margin-bottom: 14px;
    filter: drop-shadow(0 0 10px rgba(255, 77, 77, 0.6));
    animation: crimsonGlow 2.5s infinite ease-in-out;
}

@keyframes crimsonGlow {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 6px rgba(230, 198, 135, 0.4)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 16px rgba(255, 77, 77, 0.8)); }
}

.greeting-card h1 {
    font-size: 25px;
    font-weight: 700;
    color: #E6C687;
    margin-bottom: 14px;
    line-height: 1.35;
    text-shadow: 0 2px 10px rgba(230, 198, 135, 0.25);
}

.wish-text {
    font-size: 14px;
    color: #E6C687;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 400;
}

/* ৭. কাস্টম ইউজার টেক্সট মেসেজ বক্স */
.user-custom-msg {
    background: rgba(255, 77, 77, 0.04);
    border-left: 4px solid #FF4D4D;
    padding: 16px;
    border-radius: 0 16px 16px 0;
    margin-bottom: 24px;
    text-align: left;
    border-top: 1px solid rgba(230, 198, 135, 0.06);
    border-bottom: 1px solid rgba(230, 198, 135, 0.06);
}

.user-custom-msg p {
    font-size: 13.5px;
    color: #E6C687;
    line-height: 1.6;
    font-weight: 500;
}

/* ৮. রয়্যাল ডায়মন্ড থ্যাঙ্কস ব্যাজ */
.thanks-container {
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

.thanks-badge {
    background: linear-gradient(135deg, #FF4D4D 0%, #E6C687 100%);
    color: #1C0A0C;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 6px 20px rgba(255, 77, 77, 0.3);
}

.animate-heart {
    color: #1C0A0C;
    animation: crimsonHeart 1.4s infinite;
}

@keyframes crimsonHeart {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.22); }
}

/* ৯. সোশ্যাল মিডিয়া গ্রিড (২ লাইনে প্রতি লাইনে ৫টি করে - স্ক্রিনের একদম মাঝ বরাবর) */
.social-grid-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 365px;
    justify-items: center;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #341115;
    border: 1.5px solid rgba(230, 198, 135, 0.25);
    color: #E6C687; /* সম্পূর্ণ থিম কালার কাস্টমাইজড আইকন */
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    text-decoration: none !important; /* আন্ডারলাইন সম্পূর্ণ ব্লক */
    outline: none;
}

/* আইকনের নিচে আন্ডারলাইন বা বটম বর্ডার আসার সমস্ত সম্ভাবনা বন্ধ করার সিকিউরিটি মেকানিজম */
.social-btn *, .social-btn:hover, .social-btn:focus, .social-btn:active {
    text-decoration: none !important;
    border-bottom: none !important;
    outline: none !important;
}

/* সোশ্যাল বাটন লাক্সারি হোভার এফেক্ট */
.social-btn:hover {
    background: linear-gradient(135deg, #E6C687 0%, #FF4D4D 100%);
    color: #1C0A0C;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 77, 77, 0.45);
    border-color: #E6C687;
}

/* ১০. ইন্টারেক্টিভ কন্ট্রোলস (ডাউনলোড বাটন ও ল্যাঙ্গুয়েজ সুইচার) */
.interactive-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    width: 100%;
    margin-top: 10px;
}

.download-trigger {
    width: 100%;
    background: linear-gradient(135deg, #FF4D4D 0%, #E6C687 100%);
    color: #1C0A0C;
    border: none;
    border-radius: 16px;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(230, 198, 135, 0.25);
    transition: all 0.3s ease;
}

.download-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(255, 77, 77, 0.5);
    filter: brightness(1.15);
}

.download-trigger i {
    font-size: 18px;
}

/* ল্যাঙ্গুয়েজ সুইচার */
.lang-switcher {
    background: rgba(230, 198, 135, 0.05);
    padding: 6px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(230, 198, 135, 0.12);
}

.lang-switcher a {
    font-size: 13px;
    font-weight: 600;
    color: #E6C687;
    text-decoration: none;
    opacity: 0.75;
    transition: all 0.2s;
}

.lang-switcher a.active {
    color: #E6C687;
    opacity: 1;
    font-weight: 700;
    text-shadow: 0 0 6px rgba(230, 198, 135, 0.5);
}

.lang-switcher .divider {
    color: #E6C687;
    opacity: 0.3;
    font-size: 12px;
}

/* ১১. সাইট ফুটার */
.site-global-footer {
    text-align: center;
    margin-top: 45px;
    padding-top: 20px;
    border-top: 1px solid rgba(230, 198, 135, 0.08);
    width: 100%;
}

.copyright-text {
    font-size: 12px;
    color: #E6C687;
    opacity: 0.8;
    margin-bottom: 6px;
}

.copyright-text b {
    color: #E6C687;
}

.credits-text {
    font-size: 11px;
    color: #E6C687;
    opacity: 0.6;
}

.credits-text a {
    color: #E6C687;
    text-decoration: none;
}

.credits-text a b {
    color: #E6C687;
}

/* ১২. ফ্লোটিং হোয়াটসঅ্যাপ বাটন */
.whatsapp-floating {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    z-index: 999;
    text-decoration: none !important;
}

.ping-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.35;
    z-index: -1;
    animation: waveEffect 1.6s infinite ease-out;
}

@keyframes waveEffect {
    0% { transform: scale(1); opacity: 0.35; }
    100% { transform: scale(1.45); opacity: 0; }
}

/* ১৩. রেসপনসিভ মোবাইল স্ক্রিন অপ্টিমাইজেশন */
@media (max-width: 380px) {
    .social-grid {
        gap: 8px;
        max-width: 315px;
    }
    .social-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
        border-radius: 11px;
    }
    .biz-name { font-size: 21px; }
    .greeting-card h1 { font-size: 22px; }
    #exportZone { padding: 30px 15px !important; }
}