/* ============================================================
   CLICKSHIFT ALPHA - STYLES.CSS
   Professional stylesheet for the trading intelligence platform
   ============================================================ */

/* ============ BASE STYLES ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #0A1C3D 0%, #245EED 100%);
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 80px;
}

/* ============ TOP NAVIGATION ============ */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(31, 31, 31, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00FFC2;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #B0B0B0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #00FFC2;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00FFC2;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ============ HEADER SECTION ============ */
.header {
    text-align: center;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    gap: 15px;
}

.animated-logo {
    width: 80px;
    height: 80px;
    position: relative;
}

.logo-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 8px 25px rgba(36, 94, 237, 0.3));
}

.brand-name {
    font-size: 2.8em;
    font-weight: 700;
    color: #0A1C3D;
    margin-bottom: 5px;
}

.product-name {
    font-size: 1.8em;
    font-weight: 600;
    background: linear-gradient(45deg, #245EED, #26C281);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 15px;
    font-weight: 400;
}

.beta-badge {
    display: inline-block;
    background: linear-gradient(45deg, #FF7E00, #FFB347);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px rgba(255, 126, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.beta-badge:hover {
    transform: scale(1.05);
}

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

.hero-message {
    margin-top: 20px;
    font-size: 1.1em;
    color: #003366;
    line-height: 1.8;
    font-weight: 500;
    background: linear-gradient(135deg, rgba(36, 94, 237, 0.05), rgba(38, 194, 129, 0.05));
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(36, 94, 237, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(36, 94, 237, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-message strong {
    color: #245EED;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(36, 94, 237, 0.2);
}

/* ============ INPUT SECTION ============ */
.input-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 35px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title {
    font-size: 1.6em;
    font-weight: 600;
    color: #0A1C3D;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.working-guide {
    background: linear-gradient(135deg, rgba(36, 94, 237, 0.1), rgba(38, 194, 129, 0.1));
    border: 2px solid rgba(36, 94, 237, 0.3);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
    text-align: center;
}

.working-guide h4 {
    color: #245EED;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1.1em;
}

.working-guide p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
}

.input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.input-field {
    flex: 1;
    min-width: 300px;
    padding: 16px 20px;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    font-size: 1.1em;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.input-field:focus {
    outline: none;
    border-color: #245EED;
    box-shadow: 0 0 0 4px rgba(36, 94, 237, 0.1);
    background: white;
    transform: translateY(-2px);
}

.analyze-btn {
    background: linear-gradient(45deg, #245EED, #26C281);
    color: white;
    border: none;
    padding: 16px 35px;
    border-radius: 12px;
    font-size: 1.1em;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
    box-shadow: 0 8px 25px rgba(36, 94, 237, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.analyze-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(36, 94, 237, 0.4);
}

.analyze-btn:active {
    transform: translateY(0);
}

.analyze-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-icon {
    font-size: 1.2em;
}

/* ============ QUICK TOKENS ============ */
.quick-tokens {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 25px;
    align-items: center;
}

.quick-label {
    font-weight: 600;
    color: #0A1C3D;
    margin-right: 5px;
    font-size: 1.05em;
}

.quick-token {
    background: rgba(36, 94, 237, 0.1);
    border: 2px solid rgba(36, 94, 237, 0.2);
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95em;
    font-weight: 600;
    color: #245EED;
    position: relative;
    overflow: hidden;
}

.quick-token::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(36, 94, 237, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.quick-token:hover::before {
    width: 200%;
    height: 200%;
}

.quick-token:hover {
    background: #245EED;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(36, 94, 237, 0.3);
}

.quick-token:active {
    transform: translateY(0);
}

/* ============ DONATION SECTION ============ */
.donation-section {
    background: linear-gradient(135deg, #FF7E00, #FFB347 100%);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.donation-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shimmerDonation 3s infinite;
}

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

.donation-content {
    position: relative;
    z-index: 2;
}

.donation-content h3 {
    font-size: 1.6em;
    margin-bottom: 1rem;
    font-weight: 700;
}

.donation-content p {
    font-size: 1.05em;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.donation-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin: 1.5rem 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.donate-btn {
    position: relative;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.donate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.donate-btn:active {
    transform: translateY(-1px);
}

.amount-usd {
    font-size: 0.75em;
    opacity: 0.85;
    margin-top: 4px;
}

.wallet-options {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.wallet-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.wallet-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.copy-address-btn {
    padding: 12px 24px;
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    color: white;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-family: 'Poppins', sans-serif;
}

.copy-address-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.02);
}

.donation-stats {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-around;
    font-size: 0.9em;
    opacity: 0.9;
}

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

.stat-number {
    display: block;
    font-size: 1.5em;
    font-weight: bold;
}

/* ============ NOTIFICATION ============ */
.notification {
    position: fixed;
    top: 90px;
    right: 20px;
    padding: 15px 25px;
    background: linear-gradient(45deg, #26C281, #00D68F);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(38, 194, 129, 0.3);
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10000;
    max-width: 350px;
    border-left: 4px solid #00D68F;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: linear-gradient(45deg, #26C281, #00D68F);
}

.notification.error {
    background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
    border-left-color: #FF4757;
}

/* ============ COMING SOON & LEVERAGE SECTIONS ============ */
.coming-soon,
.leverage-live {
    background: linear-gradient(135deg, rgba(38, 194, 129, 0.1), rgba(36, 94, 237, 0.1));
    border: 2px solid rgba(36, 94, 237, 0.2);
    padding: 20px;
    border-radius: 15px;
    margin-top: 25px;
    text-align: center;
}

.coming-soon h3,
.leverage-live h3 {
    color: #0A1C3D;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.2em;
}

.coming-soon p,
.leverage-live p {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 12px;
}

.leverage-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 24px;
    background: linear-gradient(90deg, #063d32, #0099ff);
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.4);
}

.leverage-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.6);
}

/* ============ RESULTS SECTION ============ */
.results-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    display: none;
}

/* ============ LOADING STATE ============ */
.loading {
    text-align: center;
    padding: 60px 20px;
}

.spinner {
    border: 5px solid rgba(36, 94, 237, 0.1);
    border-top: 5px solid #245EED;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin: 0 auto 30px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading h3 {
    color: #0A1C3D;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.4em;
}

.loading p {
    color: #666;
    font-size: 1.05em;
}

/* ============ ERROR STATE ============ */
.error {
    background: linear-gradient(135deg, rgba(255, 126, 0, 0.1), rgba(255, 107, 107, 0.1));
    border: 2px solid rgba(255, 126, 0, 0.3);
    color: #0A1C3D;
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
}

.error strong {
    color: #FF7E00;
    font-size: 1.1em;
}

.error ul {
    margin-top: 15px;
    padding-left: 25px;
}

.error li {
    margin-bottom: 8px;
    color: #666;
}

/* ============ ENHANCED CTA BUTTON (For Trading Bot) ============ */
.cta-container {
    margin: 35px 0;
    padding: 35px 30px;
    text-align: center;
    background: linear-gradient(135deg, #00FFC2 0%, #00D4AA 50%, #0099ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 255, 194, 0.5);
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { 
        box-shadow: 0 20px 60px rgba(0, 255, 194, 0.5);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 25px 70px rgba(0, 255, 194, 0.7);
        transform: scale(1.02);
    }
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: ctaShimmer 3s infinite;
}

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

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon {
    font-size: 3.5em;
    margin-bottom: 15px;
    animation: ctaBounce 2s ease-in-out infinite;
}

@keyframes ctaBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.1); }
}

.cta-container h3 {
    font-size: 2.2em;
    color: #0A1C3D;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.3;
}

.cta-container p {
    color: #1F1F1F;
    font-size: 1.15em;
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #0A1C3D, #245EED);
    color: white;
    padding: 20px 45px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.4em;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 12px 35px rgba(10, 28, 61, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    background: linear-gradient(45deg, #245EED, #26C281);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 18px 45px rgba(10, 28, 61, 0.7);
}

.cta-button:active {
    transform: translateY(-2px) scale(1.03);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0A1C3D;
    font-weight: 600;
    font-size: 1em;
    background: rgba(255, 255, 255, 0.3);
    padding: 10px 18px;
    border-radius: 25px;
    backdrop-filter: blur(5px);
}

.cta-feature-icon {
    font-size: 1.4em;
}

/* ============ ANALYSIS SECTIONS ============ */
.analysis-section {
    margin: 35px 0;
}

.analysis-title {
    font-size: 1.5em;
    margin-bottom: 25px;
    color: #0A1C3D;
    font-weight: 600;
    border-bottom: 3px solid #E5E5E5;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.analysis-card,
.cluster-item {
    background: linear-gradient(135deg, rgba(36, 94, 237, 0.03), rgba(38, 194, 129, 0.03));
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #245EED;
    transition: all 0.3s ease;
}

.analysis-card:hover,
.cluster-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(36, 94, 237, 0.15);
}

/* ============ TOKEN INFO CARDS ============ */
.token-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 35px;
}

.info-card {
    background: linear-gradient(135deg, rgba(36, 94, 237, 0.05), rgba(38, 194, 129, 0.05));
    padding: 24px;
    border-radius: 16px;
    border-left: 4px solid #245EED;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(36, 94, 237, 0.15);
}

.info-card h3 {
    margin-bottom: 12px;
    color: #0A1C3D;
    font-weight: 600;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-card .value {
    font-size: 1.6em;
    font-weight: 700;
    color: #0A1C3D;
    margin-bottom: 8px;
}

.info-card .change {
    font-size: 0.9em;
    font-weight: 600;
}

.positive {
    color: #26C281;
}

.negative {
    color: #FF7E00;
}

/* ============ BADGES & INDICATORS ============ */
.signal-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    margin: 8px 0;
}

.signal-oversold { 
    background: linear-gradient(45deg, #26C281, #4CAF50); 
    color: white; 
}

.signal-overbought { 
    background: linear-gradient(45deg, #FF7E00, #FF6B6B); 
    color: white; 
}

.signal-neutral { 
    background: linear-gradient(45deg, #E5E5E5, #B0B0B0); 
    color: #666; 
}

.risk-indicator,
.pump-indicator {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95em;
}

.risk-low { background: linear-gradient(45deg, #26C281, #4CAF50); color: white; }
.risk-moderate { background: linear-gradient(45deg, #FFB347, #FF7E00); color: white; }
.risk-high { background: linear-gradient(45deg, #FF7E00, #FF6B6B); color: white; }
.risk-extreme { background: linear-gradient(45deg, #FF6B6B, #FF4757); color: white; }

.pump-very-high { background: linear-gradient(45deg, #26C281, #00D4AA); color: white; }
.pump-high { background: linear-gradient(45deg, #4CAF50, #26C281); color: white; }
.pump-moderate { background: linear-gradient(45deg, #FFB347, #26C281); color: white; }
.pump-low { background: linear-gradient(45deg, #E5E5E5, #B0B0B0); color: #666; }

/* ============ ENTRY RECOMMENDATION ============ */
.entry-recommendation {
    background: linear-gradient(135deg, rgba(38, 194, 129, 0.1), rgba(76, 175, 80, 0.1));
    border: 2px solid rgba(38, 194, 129, 0.3);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.entry-recommendation h3 {
    color: #26C281;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.3em;
}

.recommendation-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1em;
    margin-bottom: 15px;
}

.rec-buy { background: linear-gradient(45deg, #26C281, #4CAF50); color: white; }
.rec-wait { background: linear-gradient(45deg, #FFB347, #FF7E00); color: white; }
.rec-avoid { background: linear-gradient(45deg, #FF6B6B, #FF4757); color: white; }

.price-targets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
}

.target-item {
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    background: rgba(36, 94, 237, 0.1);
    transition: all 0.3s ease;
}

.target-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(36, 94, 237, 0.2);
}

.target-price {
    font-size: 1.3em;
    font-weight: 600;
    color: #0A1C3D;
}

.target-mcap {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

/* ============ FOOTER ============ */
.footer {
    text-align: center;
    margin-top: 60px;
    padding: 40px 30px;
    color: rgba(255, 255, 255, 0.9);
}

.footer p {
    margin-bottom: 12px;
    font-size: 1em;
}

.country-flags {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px 0;
}

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

.flag-emoji {
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.flag-emoji:hover {
    transform: scale(1.2);
}

.country-code {
    font-size: 0.75em;
    opacity: 0.8;
    font-weight: 500;
}

/* ============ FEEDBACK SECTION ============ */
.feedback-section {
    background: linear-gradient(135deg, rgba(38, 194, 129, 0.1), rgba(36, 94, 237, 0.1));
    padding: 30px;
    border-radius: 15px;
    margin-top: 35px;
    text-align: center;
}

.feedback-title {
    color: #0A1C3D;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.feedback-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.feedback-btn {
    background: rgba(36, 94, 237, 0.1);
    border: 2px solid rgba(36, 94, 237, 0.2);
    color: #245EED;
    padding: 10px 18px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.feedback-btn:hover,
.feedback-btn.active {
    background: #245EED;
    color: white;
    transform: translateY(-2px);
}

.feedback-text {
    width: 100%;
    padding: 15px;
    border: 2px solid #E5E5E5;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    resize: vertical;
    min-height: 80px;
    font-size: 0.95em;
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 768px) {
    .container {
        padding: 15px;
        margin-top: 70px;
    }

    .top-nav {
        padding: 10px 15px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 0.9em;
    }
    
    .brand-name {
        font-size: 2.2em;
    }

    .product-name {
        font-size: 1.5em;
    }

    .hero-message {
        font-size: 1em;
        padding: 20px;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .input-field {
        min-width: auto;
    }

    .analyze-btn {
        width: 100%;
    }
    
    .token-info {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.3em;
    }

    .analysis-title {
        font-size: 1.3em;
    }
    
    .quick-tokens {
        justify-content: center;
    }

    .donation-section {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .donation-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wallet-options {
        flex-direction: column;
        align-items: stretch;
    }
    
    .notification {
        top: 70px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .cta-container {
        padding: 25px 20px;
    }

    .cta-container h3 {
        font-size: 1.6em;
    }

    .cta-button {
        font-size: 1.1em;
        padding: 16px 35px;
    }

    .cta-features {
        flex-direction: column;
        gap: 15px;
    }

    .feedback-buttons {
        flex-direction: column;
    }
    
    .country-flags {
        gap: 10px;
    }

    .price-targets {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.8em;
    }

    .product-name {
        font-size: 1.3em;
    }

    .section-title {
        font-size: 1.1em;
    }

    .cta-icon {
        font-size: 2.5em;
    }

    .cta-container h3 {
        font-size: 1.3em;
    }

    .cta-container p {
        font-size: 1em;
    }

    .cta-button {
        font-size: 1em;
        padding: 14px 28px;
    }
}