/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bnb-logo {
    position: absolute;
    animation: moveAround 15s infinite linear;
}

.floating-bnb-logo {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 20px #f3ba2f);
    animation: bnbGlow 4s infinite ease-in-out;
}

.floating-bnb-small {
    position: absolute;
    top: 30%;
    right: 20%;
    animation: float 6s infinite ease-in-out;
    animation-delay: 2s;
}

.bnb-logo-tiny {
    width: 25px;
    height: 25px;
    filter: drop-shadow(0 0 10px rgba(243, 186, 47, 0.8));
    opacity: 0.7;
}

.btn-bnb-logo {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.3));
}

@keyframes bnbGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px #f3ba2f);
        transform: scale(1) rotate(0deg);
    }
    50% { 
        filter: drop-shadow(0 0 30px #f3ba2f) brightness(1.2);
        transform: scale(1.1) rotate(180deg);
    }
}

.cat {
    position: absolute;
    font-size: 2.5rem;
    animation: followBNB 15s infinite linear;
    animation-delay: 2s;
    filter: drop-shadow(0 0 15px #ff6b6b);
}

.floating-coins {
    position: absolute;
    font-size: 2rem;
    animation: float 8s infinite ease-in-out;
    opacity: 0.7;
}

.floating-coins:nth-child(3) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-coins:nth-child(4) {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.floating-coins:nth-child(5) {
    bottom: 30%;
    left: 20%;
    animation-delay: 6s;
}

/* Animations */
@keyframes moveAround {
    0% { top: 20%; left: 10%; transform: rotate(0deg); }
    25% { top: 20%; left: 80%; transform: rotate(90deg); }
    50% { top: 70%; left: 80%; transform: rotate(180deg); }
    75% { top: 70%; left: 10%; transform: rotate(270deg); }
    100% { top: 20%; left: 10%; transform: rotate(360deg); }
}

@keyframes followBNB {
    0% { top: 15%; left: 5%; transform: rotate(0deg) scale(1); }
    25% { top: 15%; left: 85%; transform: rotate(90deg) scale(1.1); }
    50% { top: 75%; left: 85%; transform: rotate(180deg) scale(1); }
    75% { top: 75%; left: 5%; transform: rotate(270deg) scale(1.1); }
    100% { top: 15%; left: 5%; transform: rotate(360deg) scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Container */
.container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(243, 186, 47, 0.3);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Community Links */
.community-links {
    display: flex;
    gap: 15px;
    margin-right: 20px;
}

.community-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: communityPulse 3s infinite ease-in-out;
}

.telegram-btn {
    background: linear-gradient(45deg, #0088cc, #00a8ff, #40c4ff);
    color: white;
    border-color: rgba(0, 136, 204, 0.5);
}

.x-btn {
    background: linear-gradient(45deg, #1da1f2, #00acee, #40c4ff);
    color: white;
    border-color: rgba(29, 161, 242, 0.5);
}

.community-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.telegram-btn:hover {
    background: linear-gradient(45deg, #00a8ff, #0088cc, #40c4ff);
    box-shadow: 0 10px 25px rgba(0, 136, 204, 0.4);
}

.x-btn:hover {
    background: linear-gradient(45deg, #00acee, #1da1f2, #40c4ff);
    box-shadow: 0 10px 25px rgba(29, 161, 242, 0.4);
}

.community-icon {
    font-size: 1.2rem;
    animation: communityIconBounce 2s infinite ease-in-out;
}

.community-text {
    font-weight: 800;
    letter-spacing: 0.5px;
}

.community-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    border-radius: 23px;
    pointer-events: none;
}

.community-sparkle {
    position: absolute;
    font-size: 1rem;
    opacity: 0;
    animation: communitySparkle 3s infinite ease-in-out;
}

.telegram-btn .sparkle-1 {
    top: 5px;
    right: 8px;
    animation-delay: 0.5s;
}

.telegram-btn .sparkle-2 {
    bottom: 5px;
    left: 8px;
    animation-delay: 1.5s;
}

.x-btn .sparkle-1 {
    top: 5px;
    right: 8px;
    animation-delay: 1s;
}

.x-btn .sparkle-2 {
    bottom: 5px;
    left: 8px;
    animation-delay: 2s;
}

@keyframes communityPulse {
    0%, 100% { 
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        transform: scale(1.02);
    }
}

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

@keyframes communitySparkle {
    0%, 100% { 
        opacity: 0; 
        transform: scale(0.5) rotate(0deg); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2) rotate(180deg); 
    }
}

.language-switcher {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    border-radius: 25px;
    border: 1px solid rgba(243, 186, 47, 0.3);
}

.flag-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.flag-btn.active {
    background: linear-gradient(45deg, #f3ba2f, #ffa726);
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(243, 186, 47, 0.4);
}

.flag-btn:hover {
    opacity: 1;
    transform: scale(1.05);
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(45deg, #f3ba2f, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chain-badge {
    background: linear-gradient(45deg, #f3ba2f, #ffa726);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* BNB Logo Styles */
.bnb-logo-small {
    width: 32px;
    height: 32px;
    margin-right: 10px;
    filter: drop-shadow(0 0 8px rgba(243, 186, 47, 0.6));
    animation: logoGlow 3s infinite ease-in-out;
}

.bnb-logo-badge {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.3));
}

.bnb-logo-token {
    width: 28px;
    height: 28px;
    margin-right: 10px;
    filter: drop-shadow(0 0 6px rgba(243, 186, 47, 0.5));
    animation: logoPulse 2s infinite ease-in-out;
}

.token-title {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

@keyframes logoGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 8px rgba(243, 186, 47, 0.6));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 15px rgba(243, 186, 47, 0.9));
        transform: scale(1.05);
    }
}

@keyframes logoPulse {
    0%, 100% { 
        filter: drop-shadow(0 0 6px rgba(243, 186, 47, 0.5));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 12px rgba(243, 186, 47, 0.8));
        transform: scale(1.1);
    }
}

/* BNB Logo Fallback */
.bnb-logo-fallback {
    font-size: inherit;
    color: #f3ba2f;
    filter: drop-shadow(0 0 8px rgba(243, 186, 47, 0.6));
    animation: bnbGlow 3s infinite ease-in-out;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
    min-height: 80vh;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight {
    background: linear-gradient(45deg, #ff6b6b, #ffa726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bnb-highlight {
    background: linear-gradient(45deg, #f3ba2f, #ffeb3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Token Card */
.token-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(243, 186, 47, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.token-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.token-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.status-badge {
    background: linear-gradient(45deg, #4caf50, #8bc34a);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.detail-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}

.label {
    font-weight: 600;
    color: #f3ba2f;
    min-width: 80px;
}

.value {
    font-family: 'Courier New', monospace;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 12px;
    border-radius: 8px;
    flex: 1;
    font-size: 0.9rem;
}

.copy-btn {
    background: #f3ba2f;
    color: #000;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #ffa726;
    transform: scale(1.05);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, #f3ba2f, #ffa726);
    color: #000;
    box-shadow: 0 4px 15px rgba(243, 186, 47, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 186, 47, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(243, 186, 47, 0.5);
}

.btn-secondary:hover {
    background: rgba(243, 186, 47, 0.2);
    transform: translateY(-2px);
}

.btn-research {
    background: linear-gradient(45deg, #00b894, #00cec9);
    color: white;
    border: 2px solid rgba(0, 184, 148, 0.5);
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.4);
    animation: researchPulse 3s infinite ease-in-out;
}

.btn-research:hover {
    background: linear-gradient(45deg, #00cec9, #00b894);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 184, 148, 0.6);
}

@keyframes researchPulse {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(0, 184, 148, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 6px 20px rgba(0, 184, 148, 0.6);
        transform: scale(1.02);
    }
}

/* SHILL ON TWITTER Button */
.btn-shill {
    background: linear-gradient(45deg, #1da1f2, #00acee, #0084b4);
    border: 2px solid rgba(29, 161, 242, 0.8);
    color: #fff;
    padding: 15px 25px;
    border-radius: 20px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.3);
    animation: shillPulse 2s infinite ease-in-out;
}

@keyframes shillPulse {
    0%, 100% { 
        box-shadow: 0 8px 25px rgba(29, 161, 242, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 12px 35px rgba(29, 161, 242, 0.5);
        transform: scale(1.02);
    }
}

.btn-shill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-shill:hover::before {
    left: 100%;
}

.btn-shill:hover {
    background: linear-gradient(45deg, #00acee, #1da1f2, #0084b4);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(29, 161, 242, 0.4);
    border-color: #1da1f2;
}

.btn-shill:active {
    transform: translateY(-2px) scale(1.02);
}

.shill-icon {
    font-size: 1.5rem;
    animation: shillIconBounce 1.5s infinite ease-in-out;
}

@keyframes shillIconBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-3px) rotate(-5deg); }
    75% { transform: translateY(-3px) rotate(5deg); }
}

.shill-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.shill-main {
    font-size: 1.1rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.shill-subtitle {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 600;
}

.shill-effects {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    pointer-events: none;
}

.shill-sparkle {
    position: absolute;
    font-size: 1rem;
    animation: shillSparkle 2s infinite;
    opacity: 0;
}

.shill-sparkle.sparkle-1 {
    top: -15px;
    right: 0;
    animation-delay: 0s;
}

.shill-sparkle.sparkle-2 {
    top: 0;
    right: -10px;
    animation-delay: 0.5s;
}

.shill-sparkle.sparkle-3 {
    top: 15px;
    right: 5px;
    animation-delay: 1s;
}

@keyframes shillSparkle {
    0%, 100% { 
        opacity: 0; 
        transform: scale(0.5) rotate(0deg); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2) rotate(180deg); 
    }
}

/* $TST Comparison Shill Button */
.btn-shill-tst {
    background: linear-gradient(45deg, #ff6b6b, #ff8a80, #ffab91);
    border: 2px solid rgba(255, 107, 107, 0.8);
    color: #fff;
    padding: 15px 25px;
    border-radius: 20px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    animation: shillTSTPulse 2s infinite ease-in-out;
    margin-top: 20px;
}

@keyframes shillTSTPulse {
    0%, 100% { 
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
        transform: scale(1.02);
    }
}

.btn-shill-tst:hover {
    background: linear-gradient(45deg, #ff8a80, #ff6b6b, #ffab91);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

/* Calculator Shill Button */
.btn-shill-calculator {
    background: linear-gradient(45deg, #f3ba2f, #ffa726, #ffcc02);
    border: 2px solid rgba(243, 186, 47, 0.8);
    color: #000;
    padding: 15px 25px;
    border-radius: 20px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(243, 186, 47, 0.3);
    animation: shillCalculatorPulse 2s infinite ease-in-out;
    margin-top: 20px;
}

@keyframes shillCalculatorPulse {
    0%, 100% { 
        box-shadow: 0 8px 25px rgba(243, 186, 47, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 12px 35px rgba(243, 186, 47, 0.5);
        transform: scale(1.02);
    }
}

.btn-shill-calculator:hover {
    background: linear-gradient(45deg, #ffa726, #f3ba2f, #ffcc02);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(243, 186, 47, 0.4);
}

/* Shill Button Containers */
.shill-button-container, .calculator-shill-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.shill-button-container .btn, .calculator-shill-container .btn {
    min-width: 250px;
}

/* Cat Section */
.cat-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cat-container {
    position: relative;
    text-align: center;
}

.main-cat {
    width: 350px;
    height: 400px;
    border-radius: 20px;
    object-fit: contain;
    border: 4px solid #f3ba2f;
    box-shadow: 0 0 30px rgba(243, 186, 47, 0.5);
    animation: catBounce 3s infinite ease-in-out;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

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

.cat-speech {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(243, 186, 47, 0.3);
    font-weight: 600;
    animation: speechBubble 2s infinite ease-in-out;
}

@keyframes speechBubble {
    0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

/* BNB Cat Container */
.bnb-cat-container {
    position: relative;
    text-align: center;
}

.bnb-cat {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    border: 4px solid #f3ba2f;
    box-shadow: 0 0 30px rgba(243, 186, 47, 0.5);
    animation: bnbCatBounce 2s infinite ease-in-out;
    background: linear-gradient(45deg, #1a1a2e, #16213e);
}

@keyframes bnbCatBounce {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.bnb-cat-speech {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(243, 186, 47, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(243, 186, 47, 0.5);
    font-weight: 600;
    color: #f3ba2f;
    animation: bnbSpeechBubble 2s infinite ease-in-out;
}

@keyframes bnbSpeechBubble {
    0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

/* Analytics Section */
.analytics {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.8) 100%);
    border-radius: 30px;
    margin: 40px 0;
}

.analytics-header {
    text-align: center;
    margin-bottom: 50px;
}

.analytics-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #f3ba2f, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.analytics-header p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.last-updated {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #f3ba2f;
    font-weight: 600;
}

#lastUpdatedTime {
    font-family: 'Courier New', monospace;
    background: rgba(243, 186, 47, 0.1);
    padding: 4px 8px;
    border-radius: 8px;
    border: 1px solid rgba(243, 186, 47, 0.3);
}

/* PHANTASY Calculator - Centerpiece */
.phantasy-calculator-container {
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.phantasy-calculator {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 3px solid rgba(243, 186, 47, 0.5);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(243, 186, 47, 0.2);
    position: relative;
    overflow: hidden;
    animation: calculatorGlow 4s infinite ease-in-out;
}

@keyframes calculatorGlow {
    0%, 100% { 
        border-color: rgba(243, 186, 47, 0.5);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(243, 186, 47, 0.2);
    }
    50% { 
        border-color: rgba(243, 186, 47, 0.8);
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(243, 186, 47, 0.4);
    }
}

.phantasy-calculator::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(243, 186, 47, 0.1), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.calculator-header {
    text-align: center;
    margin-bottom: 40px;
}

.calculator-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.calculator-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #f3ba2f, #ff6b6b, #4caf50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow 3s infinite;
}

@keyframes rainbow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.calculator-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    color: #f3ba2f;
}

/* Input Section */
.calculator-input-section {
    margin-bottom: 40px;
}

.input-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.input-wrapper label {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #f3ba2f;
    margin-bottom: 15px;
    text-align: center;
}

.calc-input {
    width: 100%;
    padding: 20px 30px;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    border: 3px solid rgba(243, 186, 47, 0.5);
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
}

.calc-input:focus {
    outline: none;
    border-color: #f3ba2f;
    box-shadow: 0 0 30px rgba(243, 186, 47, 0.5);
    transform: scale(1.02);
}

.input-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 20px;
}

.sparkle {
    position: absolute;
    font-size: 1.2rem;
    animation: sparkle 3s infinite;
}

.sparkle-1 {
    top: 10px;
    left: 20px;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 15px;
    right: 25px;
    animation-delay: 1s;
}

.sparkle-3 {
    bottom: 15px;
    left: 30px;
    animation-delay: 2s;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Results Section */
.calculator-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.result-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(243, 186, 47, 0.3);
    border-radius: 20px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
}

.result-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(243, 186, 47, 0.6);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.result-card.current {
    border-color: rgba(76, 175, 80, 0.5);
    background: rgba(76, 175, 80, 0.1);
}

.result-card.projection {
    border-color: rgba(243, 186, 47, 0.5);
    background: rgba(243, 186, 47, 0.1);
}

.result-card.moon {
    border-color: rgba(255, 107, 107, 0.5);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(243, 186, 47, 0.1) 100%);
    animation: moonPulse 3s infinite ease-in-out;
}

@keyframes moonPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 107, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 107, 107, 0.6); }
}

.result-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.result-icon {
    font-size: 1.5rem;
}

.result-label {
    font-weight: 700;
    color: #f3ba2f;
    font-size: 1.1rem;
}

.result-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #4caf50;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
    line-height: 1.2;
    word-break: break-word;
    text-align: center;
    display: block;
    width: 100%;
}

.result-card.moon .result-value {
    color: #ff6b6b;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.result-subtitle {
    font-size: 0.85rem;
    color: #fff;
    opacity: 0.8;
    font-weight: 600;
    margin-top: auto;
    text-align: center;
}

/* Footer */
.calculator-footer {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(243, 186, 47, 0.3);
}

.dopamine-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f3ba2f;
    margin-bottom: 15px;
    animation: textGlow 2s infinite ease-in-out;
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(243, 186, 47, 0.5); }
    50% { text-shadow: 0 0 20px rgba(243, 186, 47, 0.8); }
}

.multiplier-display {
    font-size: 3rem;
    font-weight: 800;
    color: #ff6b6b;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 15px rgba(255, 107, 107, 0.7);
    animation: multiplierPulse 1s infinite ease-in-out;
}

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

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.analytics-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(243, 186, 47, 0.2);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
}

.analytics-card:hover {
    transform: translateY(-10px);
    border-color: rgba(243, 186, 47, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f3ba2f;
    text-align: center;
}

/* Market Metrics */
.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(243, 186, 47, 0.1);
}

.metric-label {
    font-weight: 600;
    color: #f3ba2f;
}

.metric-value {
    font-weight: 700;
    color: #fff;
    font-family: 'Courier New', monospace;
}

/* Price Projections */
.projection-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px 15px;
    background: rgba(243, 186, 47, 0.1);
    border-radius: 10px;
    border-left: 4px solid #f3ba2f;
}

.projection-label {
    font-weight: 600;
    color: #fff;
}

.projection-price {
    font-weight: 800;
    color: #4caf50;
    font-size: 1.1rem;
    font-family: 'Courier New', monospace;
}

/* Holdings Calculator */
.calculator {
    text-align: center;
}

.calc-input {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(243, 186, 47, 0.3);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: center;
}

.calc-input:focus {
    outline: none;
    border-color: #f3ba2f;
    box-shadow: 0 0 10px rgba(243, 186, 47, 0.3);
}

.calc-results {
    text-align: left;
}

.calc-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 0;
}

.calc-label {
    font-weight: 600;
    color: #f3ba2f;
}

.calc-value {
    font-weight: 700;
    color: #4caf50;
    font-family: 'Courier New', monospace;
}

/* Tokenomics */
.tokenomic-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(243, 186, 47, 0.1);
}

.tokenomic-label {
    font-weight: 600;
    color: #f3ba2f;
}

.tokenomic-value {
    font-weight: 700;
    color: #fff;
    font-family: 'Courier New', monospace;
}

/* Chart Section */
.chart-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
    border-radius: 30px;
    margin: 40px 0;
}

.chart-header {
    text-align: center;
    margin-bottom: 40px;
}

.chart-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #f3ba2f, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chart-header p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.chart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.chart-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(243, 186, 47, 0.2);
    border-radius: 20px;
    padding: 20px;
    position: relative;
}

#priceChart {
    width: 100% !important;
    height: 300px !important;
}

.chart-controls {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.chart-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(243, 186, 47, 0.3);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.chart-btn.active {
    background: linear-gradient(45deg, #f3ba2f, #ffa726);
    color: #000;
    border-color: #f3ba2f;
}

.chart-btn:hover {
    background: rgba(243, 186, 47, 0.2);
    transform: translateY(-2px);
}

.chart-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(243, 186, 47, 0.2);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-label {
    font-weight: 600;
    color: #f3ba2f;
}

.stat-value {
    font-weight: 700;
    color: #fff;
    font-family: 'Courier New', monospace;
}

.stat-value.positive {
    color: #4caf50;
}

.stat-value.negative {
    color: #f44336;
}

/* Predictions Section */
.predictions-section {
    margin-top: 40px;
}

.predictions-section h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ff6b6b, #f3ba2f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.predictions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.prediction-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(243, 186, 47, 0.2);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.prediction-card:hover {
    transform: translateY(-10px);
    border-color: rgba(243, 186, 47, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.prediction-card.moon {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(243, 186, 47, 0.1) 100%);
    border-color: rgba(255, 107, 107, 0.5);
    animation: moonGlow 3s infinite ease-in-out;
}

@keyframes moonGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 107, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 107, 107, 0.6); }
}

.prediction-timeframe {
    font-weight: 600;
    color: #f3ba2f;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.prediction-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #4caf50;
    margin-bottom: 8px;
    font-family: 'Courier New', monospace;
}

.prediction-gain {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b6b;
    font-family: 'Courier New', monospace;
}

/* Market Cap Comparison Section */
.market-cap-comparison {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
    border-radius: 30px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.market-cap-comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(243,186,47,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(243,186,47,0.1)"/><circle cx="40" cy="60" r="0.5" fill="rgba(255,107,107,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.comparison-header {
    text-align: center;
    margin-bottom: 50px;
}

.comparison-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #f3ba2f, #ff6b6b, #4caf50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow 3s infinite;
}

.comparison-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    color: #f3ba2f;
}

.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
}

.token-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

.token-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(243, 186, 47, 0.3);
    border-radius: 25px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.token-card.phantasy {
    border-color: rgba(243, 186, 47, 0.5);
    background: linear-gradient(135deg, rgba(243, 186, 47, 0.1) 0%, rgba(26, 26, 46, 0.8) 100%);
}

.token-card.tst {
    border-color: rgba(255, 107, 107, 0.5);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(26, 26, 46, 0.8) 100%);
}

.token-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.token-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    text-align: center;
}

.token-icon {
    font-size: 3rem;
    animation: tokenBounce 2s infinite ease-in-out;
}

@keyframes tokenBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

.token-info h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.token-info p {
    color: #f3ba2f;
    font-size: 1rem;
    opacity: 0.9;
}

.market-cap-display {
    text-align: center;
    margin-bottom: 25px;
}

.cap-label {
    font-size: 0.9rem;
    color: #f3ba2f;
    margin-bottom: 8px;
    font-weight: 600;
}

.cap-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4caf50;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
    margin-bottom: 5px;
}

.cap-change {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 15px;
    display: inline-block;
}

.cap-change.positive {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.projection-bar {
    text-align: center;
}

.bar-label {
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 10px;
    opacity: 0.8;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}

.progress-fill {
    height: 100%;
    border-radius: 15px;
    transition: width 2s ease-in-out;
    position: relative;
    overflow: hidden;
}

.phantasy-progress {
    background: linear-gradient(45deg, #f3ba2f, #ffa726);
    width: 0.12%; /* Very small to show the gap */
    animation: phantasyProgress 3s ease-in-out infinite;
}

@keyframes phantasyProgress {
    0%, 100% { width: 0.12%; }
    50% { width: 0.15%; }
}

.multiplier {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f3ba2f;
}

.vs-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
}

.vs-text {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(45deg, #f3ba2f, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vs-icon {
    font-size: 2.5rem;
    animation: vsPulse 1.5s infinite ease-in-out;
}

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

.comparison-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(243, 186, 47, 0.2);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(243, 186, 47, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
    animation: statIconBounce 3s infinite ease-in-out;
}

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

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #f3ba2f;
    margin-bottom: 5px;
    font-weight: 600;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

/* Enhanced Potential Card */
.potential-card {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(243, 186, 47, 0.1) 100%);
    border: 2px solid rgba(255, 107, 107, 0.5);
    animation: potentialGlow 3s infinite ease-in-out;
    position: relative;
    overflow: hidden;
}

@keyframes potentialGlow {
    0%, 100% { 
        border-color: rgba(255, 107, 107, 0.5);
        box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
    }
    50% { 
        border-color: rgba(255, 107, 107, 0.8);
        box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
    }
}

.potential-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    animation: potentialShimmer 4s infinite;
    pointer-events: none;
}

@keyframes potentialShimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.massive-potential {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.potential-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ff6b6b;
    text-shadow: 0 0 15px rgba(255, 107, 107, 0.6);
    animation: potentialTextPulse 2s infinite ease-in-out;
}

@keyframes potentialTextPulse {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 0 15px rgba(255, 107, 107, 0.6);
    }
    50% { 
        transform: scale(1.05);
        text-shadow: 0 0 25px rgba(255, 107, 107, 0.8);
    }
}

.potential-sub {
    font-size: 1.5rem;
    animation: emojiBounce 2s infinite ease-in-out;
}

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

.click-hint {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #f3ba2f;
    font-weight: 600;
    opacity: 0.8;
    animation: clickHintPulse 2s infinite ease-in-out;
}

@keyframes clickHintPulse {
    0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

/* Depth Progress Bar Section */
.depth-progress-section {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(243, 186, 47, 0.3);
    border-radius: 25px;
}

.depth-label {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #f3ba2f;
    margin-bottom: 25px;
}

.depth-progress-container {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.depth-start, .depth-end {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 120px;
}

.depth-token {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.depth-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: #4caf50;
    font-family: 'Inter', sans-serif;
}

.depth-progress-bar {
    flex: 1;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(243, 186, 47, 0.3);
}

.depth-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f3ba2f, #ff6b6b, #4caf50);
    border-radius: 28px;
    width: 0.4%; /* Very small to show the gap */
    transition: width 2s ease-in-out;
    position: relative;
    overflow: hidden;
}

.depth-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: depthShimmer 3s infinite;
}

@keyframes depthShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.depth-milestones {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.milestone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.milestone-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #f3ba2f;
    background: rgba(26, 26, 46, 0.8);
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid rgba(243, 186, 47, 0.3);
}

.milestone-line {
    width: 2px;
    height: 15px;
    background: rgba(243, 186, 47, 0.5);
    border-radius: 1px;
}

.motivational-text {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(243, 186, 47, 0.3);
    border-radius: 25px;
}

.motivation-main {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f3ba2f;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(243, 186, 47, 0.5);
}

.motivation-sub {
    font-size: 1.2rem;
    color: #fff;
    opacity: 0.9;
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(243, 186, 47, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(243, 186, 47, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #f3ba2f;
}

.feature-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    margin: 10% auto;
    padding: 40px;
    border: 1px solid rgba(243, 186, 47, 0.3);
    border-radius: 20px;
    width: 80%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close:hover {
    color: #f3ba2f;
}

.dev-details {
    margin-top: 20px;
}

.dev-details p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.dev-details a {
    color: #f3ba2f;
    text-decoration: none;
}

.dev-details a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(243, 186, 47, 0.3);
    opacity: 0.7;
}

.footer p {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .header-right {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .community-links {
        flex-direction: row;
        gap: 10px;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .community-btn {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .action-buttons {
        justify-content: center;
    }
    
    .main-cat {
        width: 250px;
        height: 250px;
    }
    
    .bnb-logo, .cat {
        font-size: 2rem;
    }
    
    /* Mobile optimizations for comparison section */
    .market-cap-comparison {
        padding: 40px 0;
    }
    
    .comparison-header h2 {
        font-size: 1.8rem;
    }
    
    .token-comparison {
        flex-direction: column;
        gap: 20px;
    }
    
    .vs-divider {
        transform: rotate(90deg);
        padding: 10px;
    }
    
    .vs-text {
        font-size: 1.5rem;
    }
    
    .vs-icon {
        font-size: 2rem;
    }
    
    .comparison-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .depth-progress-section {
        margin: 20px 0;
        padding: 20px;
    }
    
    .depth-progress-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .depth-progress-bar {
        height: 40px;
        order: 2;
    }
    
    .depth-start, .depth-end {
        order: 1;
        min-width: auto;
    }
    
    .depth-milestones {
        flex-direction: column;
        gap: 10px;
    }
    
    .milestone {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    
    .milestone-line {
        width: 15px;
        height: 2px;
    }
    
    .motivational-text {
        padding: 20px;
    }
    
    .motivation-main {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .motivation-sub {
        font-size: 1rem;
    }
    
    .shill-button-container {
        margin-top: 15px;
    }
    
    .btn-shill-tst {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: 200px;
    }
    
    /* Chart section mobile optimizations */
    .chart-section {
        padding: 40px 0;
    }
    
    .chart-header h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .chart-container {
        margin: 20px 0;
    }
    
    .chart-wrapper {
        height: 250px;
        margin-bottom: 20px;
    }
    
    .chart-controls {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .chart-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        min-width: 60px;
    }
    
    .chart-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 20px 0;
    }
    
    .stat-item {
        padding: 15px;
        text-align: center;
    }
    
    .stat-label {
        font-size: 0.8rem;
        margin-bottom: 5px;
    }
    
    .stat-value {
        font-size: 1.1rem;
        font-weight: 700;
    }
    
    .predictions-section {
        padding: 20px 0;
    }
    
    .predictions-section h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .predictions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .prediction-card {
        padding: 20px;
        text-align: center;
    }
    
    .prediction-timeframe {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .prediction-price {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }
    
    .prediction-gain {
        font-size: 1.1rem;
    }
    
    /* Comparison section additional mobile fixes */
    .token-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .token-header {
        margin-bottom: 15px;
    }
    
    .token-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .token-info h3 {
        font-size: 1.5rem;
        margin: 0;
    }
    
    .market-cap-display {
        margin-bottom: 15px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
    }
    
    .cap-label {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .cap-value {
        font-size: 1.4rem;
        margin-bottom: 5px;
    }
    
    .cap-change {
        font-size: 1rem;
        padding: 4px 10px;
    }
    
    .projection-bar {
        margin-top: 15px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 15px;
    }
    
    .bar-label {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .progress-bar {
        height: 15px;
        margin-bottom: 10px;
    }
    
    .multiplier {
        font-size: 1.2rem;
        font-weight: 800;
    }
    
    .stat-card {
        padding: 20px;
        margin-bottom: 15px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        text-align: center;
    }
    
    .stat-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .stat-label {
        font-size: 0.9rem;
        margin-bottom: 8px;
        color: #f3ba2f;
    }
    
    .stat-value {
        font-size: 1.3rem;
        font-weight: 800;
        color: #fff;
    }
    
    .potential-card {
        padding: 25px;
        background: linear-gradient(45deg, #ff6b6b, #ff8a80);
        border: 2px solid rgba(255, 107, 107, 0.8);
    }
    
    .potential-text {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .potential-sub {
        font-size: 1.2rem;
    }
    
    .click-hint {
        font-size: 0.9rem;
        margin-top: 10px;
        padding: 8px 15px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .token-card {
        padding: 15px;
    }
    
    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .value {
        width: 100%;
        word-break: break-all;
    }
    
    /* Extra small mobile optimizations */
    .chart-wrapper {
        height: 200px;
        margin: 15px 0;
    }
    
    .chart-controls {
        gap: 5px;
        margin-bottom: 15px;
    }
    
    .chart-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-width: 50px;
    }
    
    .chart-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .stat-value {
        font-size: 1rem;
    }
    
    .predictions-grid {
        gap: 10px;
    }
    
    .prediction-card {
        padding: 15px;
    }
    
    .prediction-timeframe {
        font-size: 0.8rem;
    }
    
    .prediction-price {
        font-size: 1.1rem;
    }
    
    .prediction-gain {
        font-size: 1rem;
    }
    
    /* Comparison section extra small mobile */
    .token-card {
        padding: 15px;
        margin-bottom: 10px;
    }
    
    .token-icon {
        font-size: 1.8rem;
    }
    
    .token-info h3 {
        font-size: 1.3rem;
    }
    
    .market-cap-display {
        padding: 12px;
        margin-bottom: 10px;
    }
    
    .cap-label {
        font-size: 0.8rem;
    }
    
    .cap-value {
        font-size: 1.2rem;
    }
    
    .cap-change {
        font-size: 0.9rem;
        padding: 3px 8px;
    }
    
    .projection-bar {
        padding: 12px;
        margin-top: 10px;
    }
    
    .bar-label {
        font-size: 0.8rem;
    }
    
    .progress-bar {
        height: 12px;
    }
    
    .multiplier {
        font-size: 1.1rem;
    }
    
    .comparison-stats {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .stat-card {
        padding: 15px;
        margin-bottom: 10px;
    }
    
    .stat-icon {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .stat-value {
        font-size: 1.1rem;
    }
    
    .potential-card {
        padding: 20px;
    }
    
    .potential-text {
        font-size: 1rem;
    }
    
    .potential-sub {
        font-size: 1.1rem;
    }
    
    .click-hint {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .depth-progress-section {
        padding: 15px;
        margin: 15px 0;
    }
    
    .depth-progress-bar {
        height: 30px;
    }
    
    .depth-token {
        font-size: 1rem;
    }
    
    .depth-value {
        font-size: 1rem;
    }
    
    .milestone-label {
        font-size: 0.7rem;
        padding: 1px 6px;
    }
    
    .motivational-text {
        padding: 15px;
    }
    
    .motivation-main {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .motivation-sub {
        font-size: 0.9rem;
    }
    
    .btn-shill-tst {
        padding: 10px 15px;
        font-size: 0.8rem;
        min-width: 180px;
    }
}

/* iPhone Specific Optimizations */
@media screen and (max-width: 414px) and (-webkit-min-device-pixel-ratio: 2) {
    /* iPhone 11 Pro Max, iPhone XS Max */
    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 40px 0;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .token-card {
        padding: 12px;
        margin-bottom: 20px;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        font-size: 1rem;
        text-align: center;
    }
    
    .main-cat {
        width: 200px;
        height: 200px;
    }
    
    /* Chart optimizations for iPhone */
    .chart-section {
        padding: 30px 0;
    }
    
    .chart-wrapper {
        height: 180px;
        margin: 10px 0;
    }
    
    .chart-controls {
        gap: 4px;
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .chart-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
        min-width: 45px;
    }
    
    .chart-stats {
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 15px 0;
    }
    
    .stat-item {
        padding: 10px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
    }
    
    .stat-label {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    .stat-value {
        font-size: 1.1rem;
        font-weight: 700;
    }
    
    .predictions-grid {
        gap: 8px;
        margin-top: 20px;
    }
    
    .prediction-card {
        padding: 12px;
    }
    
    .prediction-timeframe {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    .prediction-price {
        font-size: 1.2rem;
        margin-bottom: 4px;
    }
    
    .prediction-gain {
        font-size: 1rem;
    }
    
    /* Comparison section iPhone optimizations */
    .market-cap-comparison {
        padding: 30px 0;
    }
    
    .comparison-header h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .comparison-header p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .token-comparison {
        gap: 15px;
    }
    
    .token-card {
        padding: 15px;
        margin-bottom: 12px;
        border-radius: 20px;
    }
    
    .token-header {
        margin-bottom: 12px;
        text-align: center;
    }
    
    .token-icon {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }
    
    .token-info h3 {
        font-size: 1.4rem;
        margin: 0;
    }
    
    .market-cap-display {
        padding: 12px;
        margin-bottom: 12px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        text-align: center;
    }
    
    .cap-label {
        font-size: 0.85rem;
        margin-bottom: 6px;
        color: #f3ba2f;
    }
    
    .cap-value {
        font-size: 1.3rem;
        margin-bottom: 4px;
        font-weight: 800;
    }
    
    .cap-change {
        font-size: 0.9rem;
        padding: 3px 8px;
        border-radius: 8px;
    }
    
    .projection-bar {
        margin-top: 12px;
        padding: 12px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        text-align: center;
    }
    
    .bar-label {
        font-size: 0.85rem;
        margin-bottom: 8px;
        color: #fff;
    }
    
    .progress-bar {
        height: 12px;
        margin-bottom: 8px;
        border-radius: 6px;
    }
    
    .multiplier {
        font-size: 1.1rem;
        font-weight: 800;
        color: #f3ba2f;
    }
    
    .vs-divider {
        padding: 8px;
        margin: 10px 0;
    }
    
    .vs-text {
        font-size: 1.3rem;
        font-weight: 800;
    }
    
    .vs-icon {
        font-size: 1.8rem;
    }
    
    .comparison-stats {
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .stat-card {
        padding: 15px;
        margin-bottom: 8px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 15px;
        text-align: center;
        border: 1px solid rgba(243, 186, 47, 0.2);
    }
    
    .stat-icon {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .stat-label {
        font-size: 0.85rem;
        margin-bottom: 6px;
        color: #f3ba2f;
        font-weight: 600;
    }
    
    .stat-value {
        font-size: 1.2rem;
        font-weight: 800;
        color: #fff;
    }
    
    .potential-card {
        padding: 18px;
        background: linear-gradient(45deg, #ff6b6b, #ff8a80);
        border: 2px solid rgba(255, 107, 107, 0.8);
        text-align: center;
    }
    
    .potential-text {
        font-size: 1rem;
        margin-bottom: 8px;
        font-weight: 800;
    }
    
    .potential-sub {
        font-size: 1.1rem;
    }
    
    .click-hint {
        font-size: 0.8rem;
        margin-top: 8px;
        padding: 6px 12px;
        background: rgba(255, 255, 255, 0.25);
        border-radius: 12px;
        font-weight: 600;
    }
    
    .depth-progress-section {
        padding: 12px;
        margin: 15px 0;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
    }
    
    .depth-label {
        font-size: 1rem;
        margin-bottom: 15px;
        text-align: center;
        color: #f3ba2f;
        font-weight: 700;
    }
    
    .depth-progress-container {
        flex-direction: column;
        gap: 12px;
    }
    
    .depth-start, .depth-end {
        order: 1;
        min-width: auto;
        text-align: center;
    }
    
    .depth-token {
        font-size: 0.95rem;
        margin-bottom: 4px;
        font-weight: 700;
    }
    
    .depth-value {
        font-size: 1rem;
        font-weight: 800;
        color: #4caf50;
    }
    
    .depth-progress-bar {
        height: 25px;
        order: 2;
        border-radius: 12px;
    }
    
    .depth-milestones {
        flex-direction: column;
        gap: 8px;
        padding: 0 8px;
    }
    
    .milestone {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        justify-content: center;
    }
    
    .milestone-label {
        font-size: 0.7rem;
        padding: 2px 6px;
        background: rgba(26, 26, 46, 0.9);
        border-radius: 8px;
        font-weight: 600;
    }
    
    .milestone-line {
        width: 12px;
        height: 2px;
        background: rgba(243, 186, 47, 0.6);
        border-radius: 1px;
    }
    
    .motivational-text {
        padding: 12px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        text-align: center;
    }
    
    .motivation-main {
        font-size: 1rem;
        margin-bottom: 8px;
        color: #f3ba2f;
        font-weight: 700;
    }
    
    .motivation-sub {
        font-size: 0.85rem;
        color: #fff;
        opacity: 0.9;
        line-height: 1.4;
    }
    
    .shill-button-container {
        margin-top: 12px;
    }
    
    .btn-shill-tst {
        padding: 12px 18px;
        font-size: 0.85rem;
        min-width: 200px;
        width: 100%;
        max-width: 280px;
    }
    
    /* Calculator iPhone optimizations */
    .phantasy-calculator-container {
        margin: 20px 0;
    }
    
    .phantasy-calculator {
        padding: 20px;
        border-radius: 20px;
    }
    
    .calculator-header h2 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .calculator-header p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .calculator-input-section {
        margin-bottom: 15px;
    }
    
    .input-wrapper label {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .calc-input {
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .calculator-results {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .result-card {
        padding: 12px;
        border-radius: 12px;
    }
    
    .result-header {
        margin-bottom: 6px;
    }
    
    .result-icon {
        font-size: 1.2rem;
        margin-right: 6px;
    }
    
    .result-label {
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    .result-value {
        font-size: 1.1rem;
        font-weight: 800;
        margin-bottom: 4px;
    }
    
    .result-subtitle {
        font-size: 0.75rem;
        opacity: 0.8;
    }
    
    .calculator-footer {
        margin-top: 15px;
    }
    
    .dopamine-text {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .multiplier-display {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .btn-shill-calculator {
        padding: 12px 18px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 280px;
    }
}

