/* =========================================
   PRINXO ZEXINE - THE ULTIMATE FINAL CSS
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;700;800&display=swap');

:root {
    --bg-dark: #08080c;
    --accent-blue: #00f2fe;
    --accent-purple: #7028ff;
    --text-main: #ffffff;
    --nav-text: #888888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.2;
}


.blob-bg {
    position: fixed;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(112, 40, 255, 0.12) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    animation: moveBlob 15s infinite alternate;
}

@keyframes moveBlob {
    from { transform: translate(0, 0); }
    to { transform: translate(-100px, 100px); }
}


.advanced-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo-profile-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    color: white;
    letter-spacing: 1px;
}

.brand-name span { color: var(--accent-blue); }

.mini-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.mini-profile img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--accent-blue);
    object-fit: cover;
}

.mini-profile span {
    font-size: 10px;
    color: var(--nav-text);
    margin-top: 2px;
    text-transform: uppercase;
    font-weight: 700;
}


.main-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.litch-text {
    font-size: clamp(2.5rem, 8vw, 6.5rem);
    font-weight: 800;
}

.text-swap-container {
    display: inline-block;
    position: relative;
    overflow: hidden;
    vertical-align: middle;
    min-width: 4.8em;
    height: 1.1em;
}

.original-text, .hover-text {
    display: block;
    width: 100%;
    text-align: left;
    transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}

.hover-text { position: absolute; top: 100%; left: 0; color: var(--accent-blue); }

.reveal-title:hover .original-text { transform: translateY(-100%); }
.reveal-title:hover .hover-text { transform: translateY(-100%); }

.pfp-capsule-wrapper {
    display: inline-block;
    position: relative;
    width: 2.3em;
    height: 1.2em;
    vertical-align: middle;
    margin-left: 10px;
    overflow: hidden;
    border-radius: 100px;
    background: #111;
}

.pfp-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: ajayDissolve 9s infinite;
}

@keyframes ajayDissolve {
    0%, 33.33% { opacity: 1; z-index: 2; }
    36.33%, 100% { opacity: 0; z-index: 1; }
}

.dissolve-1 { animation-delay: 0s; }
.dissolve-2 { animation-delay: 3s; }
.dissolve-3 { animation-delay: 6s; }

.hero-desc {
    margin-top: 50px;
    font-size: 1.1rem;
    color: #888;
    max-width: 750px;
    margin: 50px auto 0;
    line-height: 1.6;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* सबसे ऊपर */
    backdrop-filter: blur(15px);
}

.overlay.active {
    display: flex;
    animation: wavyPop 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}

@keyframes wavyPop {
    0% { transform: scale(0.5); opacity: 0; clip-path: circle(0%); }
    100% { transform: scale(1); opacity: 1; clip-path: circle(100%); }
}

.profile-card-popup {
    background: #ffffff;
    width: 90%;
    max-width: 440px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    color: #1a1a1a;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

.card-header-bg {
    height: 130px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
}

.card-content { padding: 0 30px 40px 30px; text-align: left; }

.card-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 6px solid #fff;
    margin-top: -55px;
    object-fit: cover;
    margin-bottom: 15px;
    display: block; 
}

.profile-card-popup h2 { font-size: 1.8rem; font-weight: 800; }
.handle { color: #666; font-size: 0.95rem; margin-bottom: 20px; }

.card-about h3, .card-experience h3 {
    font-size: 1rem;
    text-transform: uppercase;
    color: #999;
    margin: 20px 0 10px;
}

.skill-icons { display: flex; flex-wrap: wrap; gap: 8px; }
.icon {
    background: #f0f0f0;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}


.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.close-btn:hover { background: rgba(255,255,255,0.5); }

.link-item {
    color: #888888; 
    text-decoration: none; 
    font-size: 0.95rem;
    font-weight: 500;
    transition: 0.3s ease;
}

.link-item:hover {
    color: #ffffff;
}


.talk-btn {
    background: #ffffff;
    color: #000000 !important;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: 0.3s;
}

.talk-btn:hover {
    background: #00f2fe; 
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
}
.explore-btn {
    color: #00f2fe; 
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.explore-btn:hover {
    border-bottom: 2px solid #00f2fe; 
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 0 40px;
}

.nav-links {
    display: flex;       
    gap: 30px;          
    list-style: none;    
    position: relative;  
}

.logo-profile-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 800px) {
    /* 1. कंटेनर को सीधा करें */
    .nav-container {
        display: flex;
        flex-direction: row; 
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        width: 100%;
    }

    .nav-links {
        display: flex !important; 
        gap: 8px;                 
        list-style: none;
    }

    .link-item {
        font-size: 0.65rem;      
        text-decoration: none;
    }

   
    .brand-name {
        font-size: 0.8rem;        
    }

    .mini-profile img {
        width: 25px;             
        height: 25px;
    }


    .talk-btn {
        display: inline-block !important;
        padding: 5px 8px;
        font-size: 0.65rem;
        border-radius: 50px;
    }
}

.available-status {
    display: inline-flex; 
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15); 
    border-radius: 100px; /* कैप्सूल शेप */
    background: rgba(255, 255, 255, 0.03); 
    color: #888888;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 15px;
    transition: 0.3s;
}

/* होवर करने पर ग्लो इफेक्ट */
.available-status:hover {
    border-color: #00f2fe;
    background: rgba(0, 242, 254, 0.05);
    color: #ffffff;
}

/* ब्लिंकिंग ग्रीन डॉट */
.dot {
    width: 8px;
    height: 8px;
    background: #00ff88; 
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: blink 1.5s infinite ease-in-out;
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}
/* =========================================
   SECTION 2: FINAL FIX (NO GAYAB TEXT)
   ========================================= */

.hand-god {
    position: absolute;
    top: 5%;
    left: -100px;
    width: 450px; 
    opacity: 0.15;
    filter: brightness(0.8) grayscale(100%);
    pointer-events: none;
    z-index: 1;
}

.hand-adam {
    position: absolute;
    bottom: 5%;
    right: -100px;
    width: 450px;
    opacity: 0.15;
    transform: scaleX(-1); 
    filter: brightness(0.8) grayscale(100%);
    pointer-events: none;
    z-index: 1;
}

.story-section {
    padding: 100px 20px;
    background: #000;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.story-container {
    max-width: 900px;
    width: 100%;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.story-pfp-wrapper {
    margin-bottom: 50px;
    animation: revealImage 1.5s ease-out forwards;
}

.story-pfp {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15); 
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

@keyframes revealImage {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.animate-para {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    line-height: 1.6;
    color: #888; /* हल्का ग्रे */
    margin-bottom: 30px;
    text-align: left;
    width: 100%;
    animation: revealText 1s ease-out both;
}


.animate-para:nth-child(2) { animation-delay: 0.4s; }
.animate-para:nth-child(3) { animation-delay: 0.7s; }

@keyframes revealText {
    0% { opacity: 0; transform: translateX(-20px); }
    100% { opacity: 1; transform: translateX(0); }
}

.bold-text, .loc-tag {
    color: #ffffff !important;
    font-weight: 700;
}


.story-status {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 25px;
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
    align-self: flex-start;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #00f2fe;
    border-radius: 50%;
    box-shadow: 0 0 10px #00f2fe;
}

/* SECTION 3: ACHIEVEMENTS */
.achievements-section { padding: 100px 40px; }
.ach-container { max-width: 1000px; margin: 0 auto; }
.section-tag { font-size: 0.8rem; color: #444; margin-bottom: 40px; letter-spacing: 3px; }

.ach-row { display: flex; gap: 50px; padding: 40px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.ach-year { color: #444; font-size: 1.2rem; }
.ach-title { font-size: 3rem; font-weight: 800; }
.outline-text { -webkit-text-stroke: 1px #fff; color: transparent; }


/* MOBILE RESPONSIVE (PREMIUM) */
@media (max-width: 768px) {
    .glitch-text { font-size: 2.8rem; }
    .nav-links { display: none; }
    .animate-para { font-size: 1.2rem; }
    .ach-title { font-size: 1.8rem; }
    .ach-row { flex-direction: column; gap: 10px; }
    .hand-god, .hand-adam { width: 200px; }
}
.mega-shop-section {
    width: 100%;
    min-height: 80vh;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientBG 10s ease infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: white;
    font-family: 'Arial Black', sans-serif;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* मुस्कुराता कार्टून */
.side-cartoon {
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 120px;
    animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) rotate(5deg); }
    50% { transform: translateY(-20px) rotate(-5deg); }
}


.glitch-text {
    font-size: 4rem;
    text-shadow: 3px 3px #000;
    letter-spacing: 5px;
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px #ce1efe, 0 0 20px #20fbfb; }
    to { text-shadow: 0 0 20px #ccff00, 0 0 30px #00d2ff; }
}


.shopping-display {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.pop-up-img {
    width: 180px;
    height: 180px;
    border: 5px solid white;
    border-radius: 20px;
    object-fit: cover;
    animation: popIn 0.5s cubic-bezier(0.26, 1.36, 0.4, 1.29) both;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes popIn {
    0% { opacity: 0; transform: scale(0.5); }
    100% { opacity: 1; transform: scale(1); }
}


.shiny-btn {
    padding: 20px 40px;
    font-size: 1.5rem;
    background: white;
    color: #030503;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: 0.3s;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px #fff; }
    100% { transform: scale(1); }
}
/* मोबाइल के लिए स्पेशल सेटिंग्स */
@media screen and (max-width: 768px) {
    .glitch-text {
        font-size: 2rem !important; 
        letter-spacing: 2px;
    }

    .shopping-display {
        flex-direction: column; 
        align-items: center;
    }

    .pop-up-img {
        width: 140px !important; 
        height: 140px !important;
    }

    .side-cartoon {
        width: 50px !important; 
        left: 10px;
        bottom: 10px;
    }

    .shiny-btn {
        padding: 15px 25px !important;
        font-size: 1.1rem !important;
        width: 80%; 
        text-align: center;
    }

    .mega-shop-section {
        min-height: auto; 
        padding: 40px 10px;
    }
}
Design */

/* Loading Overlay */
#earthquake-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: black; z-index: 1000000;
    display: flex; justify-content: center; align-items: center;
}

#earthquake-overlay.hidden { display: none !important; }

.glitch { color: #00ffff; font-family: sans-serif; font-size: 2rem; letter-spacing: 5px; }
.about-page { background: #111; color: #fff; overflow-x: hidden; }
.about-container { max-width: 1000px; margin: auto; padding: 40px 20px; }

.about-section { 
    display: flex; 
    align-items: center; 
    margin-bottom: 80px;
    gap: 30px;
    /* शुरुआत में छिपाने के लिए JS का इस्तेमाल करेंगे, CSS का नहीं */
}

.about-section.reverse { flex-direction: row-reverse; }

.content h2 { 
    font-size: 2.5rem; 
    color: #ff6600; 
    margin-bottom: 20px; 
}

.content p { font-size: 1.1rem; line-height: 1.6; color: #ccc; }

.photo-box { flex: 1; }
.photo-box img { 
    width: 100%; 
    border-radius: 10px; 
    border: 2px solid #333; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .about-section, .about-section.reverse { flex-direction: column; text-align: center; }
}
.about-page { 
    background: #111; 
    color: #fff; 
    font-family: 'Poppins', sans-serif; 
}

.about-section { 
    display: flex; 
    align-items: center; 
    padding: 50px;
    gap: 40px;
    /* opacity यहाँ से हटा दी गई है ताकि कंटेंट दिखे */
}

.photo-box img { 
    width: 300px; /* फोटो का साइज सेट करें */
    border-radius: 15px; 
    box-shadow: 0 0 20px rgba(255,102,0,0.3);
}

.about-section.reverse { flex-direction: row-reverse; }
/* डेस्कटॉप के लिए (बड़ी स्क्रीन) */
.about-section { 
    display: flex; 
    align-items: center; 
    padding: 50px 10%;
    gap: 40px;
    width: 100%;
}

.about-section.reverse { 
    flex-direction: row-reverse; 
}

.photo-box {
    flex: 1;
    display: flex;
    justify-content: center;
}

.photo-box img { 
    width: 100%;
    max-width: 400px; /* फोटो बहुत बड़ी न हो जाए */
    border-radius: 15px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.content {
    flex: 1;
}

/* मोबाइल के लिए (फोन लेआउट फिक्स) */
@media (max-width: 768px) {
    .about-section, 
    .about-section.reverse { 
        flex-direction: column !important; /* एक के नीचे एक लाने के लिए */
        padding: 30px 20px;
        text-align: center; /* मोबाइल पर सेंटर अच्छा लगता है */
    }

    .photo-box img {
        width: 100%; /* फोन की चौड़ाई के हिसाब से */
        max-width: 300px;
        margin-bottom: 20px; /* फोटो और टेक्स्ट के बीच गैप */
    }

    .content h2 {
        font-size: 1.8rem; /* मोबाइल पर हेडिंग थोड़ी छोटी */
    }
}
@media (max-width: 600px) {
  header {
    flex-wrap: wrap; /* इससे बटन नीचे वाली लाइन में आ जाएंगे */
  }
  .nav-links {
    display: flex !important; /* अगर गलती से कहीं hidden है तो दिखने लगेगा */
  }
}