/* HERO SECTION STYLES */
.hero-crypto-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.animated-bg {
    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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"><animate attributeName="r" values="50;150;50" dur="8s" repeatCount="indefinite"/></circle><circle cx="800" cy="300" r="80" fill="url(%23a)"><animate attributeName="r" values="40;120;40" dur="6s" repeatCount="indefinite"/></circle><circle cx="400" cy="700" r="120" fill="url(%23a)"><animate attributeName="r" values="60;180;60" dur="10s" repeatCount="indefinite"/></circle></svg>');
    animation: float 20s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-logo {
    height: 100px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    animation: bounce 2s ease-in-out infinite;
}

.gradient-text {
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF6347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

.pulse-dot-small {
    width: 6px;
    height: 6px;
    background: #00ff00;
    border-radius: 50%;
    margin-right: 6px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

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

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

.hero-stats {
    margin: 2rem 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
}

/* COUNTDOWN TIMER */
.fomo-timer {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.timer-label {
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 10px;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.time-unit {
    text-align: center;
}

.time-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    border-radius: 10px;
    padding: 10px 15px;
    min-width: 80px;
}

.time-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-top: 5px;
}

/* BUTTONS */
.btn-primary-glow {
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    animation: glow 2s ease-in-out infinite alternate;
}

.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
    color: white;
}

.btn-xl {
    padding: 18px 40px;
    font-size: 1.2rem;
}

.btn-primary-mega {
    background: linear-gradient(45deg, #FF6B6B, #FF8E53, #FFD700);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite, glow 2s ease-in-out infinite alternate;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes glow {
    from { box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4); }
    to { box-shadow: 0 10px 40px rgba(255, 107, 107, 0.8); }
}

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

.urgency-message {
    background: rgba(255, 193, 7, 0.2);
    border: 2px solid #FFC107;
    border-radius: 15px;
    padding: 15px;
    color: #FFC107;
    font-weight: 600;
    animation: urgencyPulse 3s ease-in-out infinite;
}

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

/* SOCIAL PROOF */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
}

.social-btn i {
    font-size: 1.2rem;
    margin-right: 8px;
}

.social-btn span {
    font-weight: 600;
}

.social-btn.telegram { border-color: #0088cc; }
.social-btn.telegram:hover { background: rgba(0, 136, 204, 0.3); }

.social-btn.twitter { border-color: #1DA1F2; }
.social-btn.twitter:hover { background: rgba(29, 161, 242, 0.3); }

.social-btn.discord { border-color: #7289DA; }
.social-btn.discord:hover { background: rgba(114, 137, 218, 0.3); }

/* FLOATING ELEMENTS */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

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

.coin-1 { top: 20%; left: 10%; animation-delay: 0s; }
.coin-2 { top: 40%; right: 15%; animation-delay: 2s; }
.coin-3 { top: 60%; left: 20%; animation-delay: 4s; }
.coin-4 { top: 80%; right: 25%; animation-delay: 6s; }

@keyframes floatUp {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 1; }
}

/* NEWS TICKER */
.news-ticker {
    background: linear-gradient(90deg, #FF6B6B, #FF8E53, #FFD700, #FF8E53, #FF6B6B);
    background-size: 200% 100%;
    animation: gradientMove 5s ease infinite;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-block;
    color: white;
    font-weight: 600;
    animation: scroll 30s linear infinite;
    padding-left: 100%;
}

.breaking {
    background: #FF0000;
    color: white;
    padding: 2px 8px;
    border-radius: 5px;
    font-weight: 900;
    margin-right: 10px;
}

@keyframes scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

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

/* QUICK STATS BAR */
.quick-stats-bar {
    background: rgba(0, 0, 0, 0.9);
    border-top: 3px solid #FFD700;
    border-bottom: 3px solid #FFD700;
}

.stats-scroll {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.quick-stat {
    display: flex;
    align-items: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.stat-icon {
    font-size: 1.2rem;
    margin-right: 8px;
}

/* BUY SECTION */
.buy-section {
    background: linear-gradient(135deg, #2C3E50, #34495E);
    position: relative;
}

.buy-widget-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.buy-widget {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
}

.widget-header h3 {
    color: white;
    font-weight: 900;
}

.price-alert .alert {
    background: rgba(255, 193, 7, 0.2);
    border: 2px solid #FFC107;
    color: #FFC107;
    border-radius: 10px;
}

.dex-widget {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.widget-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
}

.contract-info .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.slippage-display {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.slippage-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: #FFD700;
}

/* BUY SIDEBAR */
.buy-sidebar {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.live-stats h6 {
    color: #FFD700;
    font-weight: 700;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.stat-row:last-child {
    border-bottom: none;
}

/* FOMO METER */
.fomo-meter h6 {
    color: #FF6B6B;
    font-weight: 700;
}

.fomo-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.fomo-progress {
    height: 100%;
    background: linear-gradient(90deg, #FF6B6B, #FF8E53, #FFD700);
    animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* RECENT BUYS */
.recent-buys h6 {
    color: #00FF7F;
    font-weight: 700;
}

.buy-feed {
    max-height: 150px;
    overflow-y: auto;
}

.buy-item {
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 6px;
    background: rgba(40, 167, 69, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: slideInLeft 0.5s ease-out;
    border-left: 3px solid #28a745;
}

.buy-item:last-child {
    border-bottom: none;
}

.buyer {
    font-family: monospace;
}

.buy-item:hover {
    background: rgba(40, 167, 69, 0.2);
    transform: translateX(-3px);
}

.buy-item .buyer {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: #ffffff;
    font-weight: 500;
}

.buy-item .amount {
    font-weight: bold;
    font-size: 12px;
}

.buy-item .time {
    font-size: 10px;
    opacity: 0.7;
}

.buy-info {
    flex: 1;
}

.buyer-address {
    font-size: 0.7rem;
    opacity: 0.7;
}

.buy-time {
    font-size: 0.75rem;
}

.amount {
    font-weight: 600;
}

/* TOKENOMICS SECTION */
.tokenomics-section {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    position: relative;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.tokenomics-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.tokenomics-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.card-title {
    color: white;
    font-weight: 900;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.big-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.card-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 4px;
    animation: progressFill 2s ease-out;
}

@keyframes progressFill {
    from { width: 0%; }
}

.burn-card .big-number { color: #FF6B6B; }
.burn-progress { background: linear-gradient(90deg, #FF6B6B, #FF8E53); }

.liquidity-card .big-number { color: #FFD700; }
.liquidity-progress { background: linear-gradient(90deg, #FFD700, #FFA500); }

.funding-card .big-number { color: #00FF7F; }
.funding-progress { background: linear-gradient(90deg, #00FF7F, #32CD32); }

.rewards-card .big-number { color: #00BFFF; }
.rewards-progress { background: linear-gradient(90deg, #00BFFF, #1E90FF); }

/* REWARDS CALCULATOR */
.rewards-calculator {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.calculator-widget {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
}

.form-label {
    color: white;
    font-weight: 600;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 10px;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFD700;
    color: white;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

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

.result-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
}

.result-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.result-value {
    color: #FFD700;
    font-size: 1.5rem;
    font-weight: 900;
}

/* PLATFORM SUCCESS */
.platform-success {
    background: linear-gradient(135deg, #0F3460, #16537e);
}

.success-metric {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.success-metric:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.metric-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.users-icon { background: linear-gradient(45deg, #FF6B6B, #FF8E53); }
.tools-icon { background: linear-gradient(45deg, #4ECDC4, #44A08D); }
.uptime-icon { background: linear-gradient(45deg, #A8E6CF, #7FCDCD); }
.revenue-icon { background: linear-gradient(45deg, #FFD93D, #FF6B6B); }

.metric-number {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
}

.metric-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.metric-growth {
    color: #00FF7F;
    font-size: 0.9rem;
    font-weight: 600;
}

/* TESTIMONIALS */
.testimonials-section {
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-author {
    color: #FFD700;
    font-weight: 600;
}

/* ROADMAP */
.roadmap-section {
    background: linear-gradient(135deg, #232526, #414345);
}

.roadmap-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #FFD700, #FF6B6B, #00FF7F, #00BFFF);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 45%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 55%;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -75px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -75px;
}

.timeline-item.completed .timeline-marker {
    background: linear-gradient(45deg, #00FF7F, #32CD32);
    animation: completedPulse 2s ease-in-out infinite;
}

.timeline-item.active .timeline-marker {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    animation: activePulse 2s ease-in-out infinite;
}

.timeline-item.upcoming .timeline-marker {
    background: linear-gradient(45deg, #00BFFF, #1E90FF);
}

.timeline-item.future .timeline-marker {
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
}

@keyframes completedPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 127, 0.5); }
    50% { box-shadow: 0 0 30px rgba(0, 255, 127, 0.8); }
}

@keyframes activePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.8); }
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-date {
    color: #FFD700;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.timeline-title {
    color: white;
    font-weight: 900;
    margin-bottom: 15px;
}

.timeline-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-features li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    padding-left: 0;
}

.progress-indicator {
    margin-top: 15px;
}

.progress-text {
    color: #FFD700;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* SECURITY SECTION */
.security-section {
    background: linear-gradient(135deg, #2C5364, #203A43, #0F2027);
}

.security-badge {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.security-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.badge-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.badge-icon.audit { background: linear-gradient(45deg, #00FF7F, #32CD32); }
.badge-icon.lock { background: linear-gradient(45deg, #FFD700, #FFA500); }
.badge-icon.team { background: linear-gradient(45deg, #00BFFF, #1E90FF); }

.badge-title {
    color: white;
    font-weight: 900;
    margin-bottom: 15px;
}

.badge-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.badge-status {
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
}

.badge-status.verified {
    background: rgba(0, 255, 127, 0.2);
    color: #00FF7F;
    border: 2px solid #00FF7F;
}

.badge-status.locked {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    border: 2px solid #FFD700;
}

.badge-status.doxxed {
    background: rgba(0, 191, 255, 0.2);
    color: #00BFFF;
    border: 2px solid #00BFFF;
}

/* TRUST INDICATORS */
.trust-indicators {
    margin-top: 3rem;
}

.trust-bar {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

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

.trust-item:last-child {
    margin-bottom: 0;
}

.trust-label {
    color: white;
    font-weight: 600;
    flex: 1;
}

.trust-meter {
    width: 200px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    margin: 0 20px;
}

.trust-fill {
    height: 100%;
    border-radius: 5px;
    animation: trustFill 3s ease-out;
}

@keyframes trustFill {
    from { width: 0%; }
}

.security-fill { background: linear-gradient(90deg, #00FF7F, #32CD32); }
.liquidity-fill { background: linear-gradient(90deg, #FFD700, #FFA500); }
.transparency-fill { background: linear-gradient(90deg, #00BFFF, #1E90FF); }

.trust-percentage {
    color: #FFD700;
    font-weight: 700;
    font-size: 0.9rem;
}

/* FOMO SECTION */
.fomo-section {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    position: relative;
    overflow: hidden;
}

.fomo-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.fomo-container {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.fomo-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.fomo-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.fomo-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.fomo-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.fomo-stat .stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.fomo-benefits {
    margin-bottom: 30px;
}

.benefit-item {
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;

}

.urgency-message {
    background: rgba(255, 193, 7, 0.3);
    border: 2px solid #FFC107;
    border-radius: 15px;
    padding: 15px;
    color: white;
    font-weight: 600;
    text-align: center;
    animation: urgencyFlash 2s ease-in-out infinite;
}

@keyframes urgencyFlash {
    0%, 100% { background: rgba(255, 193, 7, 0.3); }
    50% { background: rgba(255, 193, 7, 0.5); }
}

/* WHALE TRACKER */
.whale-tracker {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tracker-title {
    color: white;
    font-weight: 900;
    margin-bottom: 20px;
    text-align: center;
}

.whale-feed {
    max-height: 200px;
    overflow-y: auto;
}

.whale-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    animation: newBuy 0.5s ease-in-out;
}

@keyframes newBuy {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.whale-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.whale-address {
    font-family: monospace;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.whale-badge {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: black;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
}

.whale-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.amount {
    color: #00FF7F;
    font-weight: 700;
}

.time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.whale-summary {
    text-align: center;
    margin-top: 15px;
    color: #FFD700;
    font-weight: 600;
}

/* HOW TO BUY */
.how-to-buy {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.buy-steps {
    margin-bottom: 3rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: black;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 3rem;
    color: white;
    margin: 20px 0;
}

.step-title {
    color: white;
    font-weight: 900;
    margin-bottom: 15px;
}

.step-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.6;
}

.step-time {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 5px 15px;
    color: #FFD700;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

.video-cta {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

/* COMMUNITY SECTION */
.community-section {
    background: linear-gradient(135deg, #8360c3, #2ebf91);
}

.community-stats {
    margin-bottom: 3rem;
}

.community-stat {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.community-stat:hover {
    transform: translateY(-5px);
}

.community-stat i {
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
}

.community-stat .stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 5px;
}

.community-stat .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.community-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.community-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.community-card .card-header {
    background: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    text-align: center;
}

.community-card .card-header i {
    font-size: 2rem;
    color: white;
    margin-right: 10px;
}

.community-card .card-header h5 {
    color: white;
    font-weight: 900;
    margin: 0;
    display: inline;
}

.community-card .card-body {
    padding: 25px;
}

.community-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.live-feed {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    max-height: 120px;
    overflow-y: auto;
}

.feed-item {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 8px;
    animation: feedSlide 0.5s ease-in-out;
}

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

.twitter-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.twitter-stat {
    text-align: center;
}

.twitter-stat .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: #FFD700;
}

.twitter-stat .label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.discord-channels {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.channel {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
    font-family: monospace;
    font-size: 0.9rem;
}

/* FAQ SECTION */
.faq-section {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* FAQs */
.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h5 {
    color: white;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #FFD700;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px 25px;
    display: none;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.faq-answer {
    padding: 0 25px 25px;
}

.faq-answer.show {
    display: block;
}
    
/* FINAL CTA */
.final-cta {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53, #FFD700);
    background-size: 400% 400%;
    animation: megaGradient 8s ease infinite;
    position: relative;
    overflow: hidden;
}

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

.cta-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    animation: titlePulse 3s ease-in-out infinite;
}

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

.cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 600;
}

.cta-urgency {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.urgency-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px 30px;
    backdrop-filter: blur(10px);
}

.urgency-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 5px;
}

.urgency-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.cta-buttons {
    margin: 2rem 0;
}

.final-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit {
    color: white;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .gradient-text {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .time-number {
        font-size: 1.8rem;
        padding: 8px 12px;
        min-width: 60px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .roadmap-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 80px;
    }
    
    .timeline-item .timeline-marker {
        left: 0 !important;
        right: auto !important;
    }
    
    .stats-scroll {
        flex-direction: column;
        gap: 10px;
    }
    
    .quick-stat {
        font-size: 0.8rem;
    }
    
    .fomo-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-urgency {
        flex-direction: column;
        align-items: center;
    }
    
    .final-benefits {
        flex-direction: column;
        align-items: center;
    }
}

/* ANIMATIONS */
.animate-in {
    animation: slideInUp 0.8s ease forwards;
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* CUSTOM SCROLLBAR */
.buy-feed::-webkit-scrollbar,
.whale-feed::-webkit-scrollbar,
.live-feed::-webkit-scrollbar {
    width: 6px;
}

.buy-feed::-webkit-scrollbar-track,
.whale-feed::-webkit-scrollbar-track,
.live-feed::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.buy-feed::-webkit-scrollbar-thumb,
.whale-feed::-webkit-scrollbar-thumb,
.live-feed::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.6);
    border-radius: 3px;
}

.whale-badge.whale {
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
}

.whale-badge.shark {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
}

.whale-item {
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: slideInRight 0.5s ease-out;
}

.whale-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.whale-address {
    font-family: 'Courier New', monospace;
    font-size: 12px;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.loading-placeholder {
    animation: pulse 2s infinite;
}

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

/* Navigation Buttons Styling */
.hero-navigation {
    margin-top: 2rem;
}

.nav-buttons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-width: 140px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-btn::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 ease;
}

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

/* Home Button */
.home-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.home-btn:hover {
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

/* Login Button */
.login-btn {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    color: white !important;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

.login-btn:hover {
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.6);
}

/* Signup Button */
.signup-btn {
    background: linear-gradient(45deg, #43e97b, #38f9d7);
    color: white !important;
    box-shadow: 0 4px 15px rgba(67, 233, 123, 0.4);
    animation: pulse-signup 2s infinite;
}

.signup-btn:hover {
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(67, 233, 123, 0.6);
    animation: none;
}

@keyframes pulse-signup {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(67, 233, 123, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 6px 20px rgba(67, 233, 123, 0.6);
        transform: scale(1.02);
    }
}

/* Dashboard Button */
.dashboard-btn {
    background: linear-gradient(45deg, #fa709a, #fee140);
    color: white !important;
    box-shadow: 0 4px 15px rgba(250, 112, 154, 0.4);
}

.dashboard-btn:hover {
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(250, 112, 154, 0.6);
}

/* Logout Button */
.logout-btn {
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    color: white !important;
    border: none;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.logout-btn:hover {
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

.nav-form {
    display: inline-block;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-buttons-container {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .nav-btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .nav-btn {
        font-size: 0.85rem;
        padding: 0.875rem 1.25rem;
        min-width: 120px;
    }
    
    .hero-navigation {
        margin-top: 1.5rem;
    }
}

/* Additional Visual Enhancements */
.nav-btn i {
    transition: transform 0.3s ease;
}

.nav-btn:hover i {
    transform: scale(1.1);
}

/* Focus states for accessibility */
.nav-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Loading state for logout button */
.logout-btn:active {
    transform: scale(0.98);
}

/* Price Increase Timer Styles */
.price-increase-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.new-price {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.increase-badge {
    background: linear-gradient(45deg, #00ff00, #32cd32);
    color: black;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-left: 8px;
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .price-increase-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}