* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', monospace;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    body {
        overflow-y: auto;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .container {
        min-height: auto;
        padding-bottom: 120px; /* Space for chat popup */
    }
    
    .main-layout {
        gap: 25px;
    }
    
    .center-content {
        gap: 20px;
    }
}

/* Top Section */
.top-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.top-section:hover {
    background: rgba(255, 0, 0, 0.08);
    border-color: rgba(255, 0, 0, 0.3);
}

.quick-stats {
    display: flex;
    gap: 20px;
    align-items: center;
}

.main-layout {
    display: flex;
    gap: 20px;
    flex: 1;
    margin-top: 20px;
    position: relative;
    justify-content: center;
    align-items: flex-start;
}

/* Chat Popup Styles */
.chat-popup {
    position: absolute;
    left: -10px;
    top: 0;
    width: 300px;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #ff0000;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .chat-popup {
        display: none; /* Hide desktop chat on mobile */
    }
    
    /* Mobile Chat Section */
    .mobile-chat-section {
        display: none; /* Hidden by default on mobile */
    }
    
    /* Mobile Chatbot */
    .mobile-chatbot {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(45deg, #ff0000, #ff6600);
        border: 3px solid #ffffff;
        box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
    }
    
    .mobile-chatbot:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 25px rgba(255, 0, 0, 0.6);
    }
    
    .mobile-chatbot.expanded {
        width: 320px;
        height: 450px;
        border-radius: 20px;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        overflow: hidden;
        cursor: default;
    }
    
    .mobile-chatbot.expanded .chatbot-icon {
        display: none;
    }
    
    .chatbot-icon {
        color: white;
        font-size: 1.8rem;
        cursor: pointer;
        pointer-events: auto;
    }
    
    .mobile-chatbot.expanded .chatbot-icon {
        pointer-events: none;
    }
    
    .mobile-chatbot-content {
        display: none;
        flex-direction: column;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
        border-radius: 17px;
    }
    
    .mobile-chatbot.expanded .mobile-chatbot-content {
        display: flex;
    }
    
    .mobile-chatbot-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background: rgba(255, 0, 0, 0.2);
        border-bottom: 1px solid rgba(255, 0, 0, 0.3);
        border-radius: 17px 17px 0 0;
    }
    
    .mobile-chatbot-header h3 {
        margin: 0;
        color: #ffffff;
        font-size: 1rem;
    }
    
    .mobile-chatbot-close {
        background: none;
        border: none;
        color: #ffffff;
        font-size: 1.2rem;
        cursor: pointer;
        padding: 5px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .mobile-chatbot-close:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .mobile-chatbot-body {
        flex: 1;
        padding: 15px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    
    .mobile-chatbot-messages {
        flex: 1;
        overflow-y: auto;
        margin-bottom: 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        padding: 10px;
    }
    
    .mobile-chatbot-input {
        display: flex;
        gap: 8px;
        align-items: center;
    }
    
    .mobile-chatbot-input input {
        flex: 1;
        padding: 10px 15px;
        border: 2px solid #ff0000;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        font-family: 'Orbitron', monospace;
        font-size: 0.9rem;
    }
    
    .mobile-chatbot-input input::placeholder {
        color: #888888;
    }
    
    .mobile-chatbot-input input:focus {
        outline: none;
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
    }
    
    .mobile-chatbot-input button {
        padding: 10px 15px;
        background: linear-gradient(45deg, #ff0000, #ff6600);
        color: white;
        border: none;
        border-radius: 20px;
        font-family: 'Orbitron', monospace;
        font-weight: 700;
        font-size: 0.9rem;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
    }
    
    .mobile-chatbot-input button:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    }
    
    .mobile-chatbot-input button:disabled {
        background: #666666;
        cursor: not-allowed;
    }
    
    .mobile-chat-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(255, 0, 0, 0.2);
        padding: 15px 20px;
        border-radius: 13px 13px 0 0;
        border-bottom: 1px solid rgba(255, 0, 0, 0.3);
        cursor: pointer;
    }
    
    .mobile-chat-header h3 {
        margin: 0;
        color: #ffffff;
        font-size: 1.1rem;
    }
    
    .mobile-toggle-chat-btn {
        background: none;
        border: none;
        color: #ffffff;
        font-size: 1.2rem;
        cursor: pointer;
        padding: 5px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .mobile-toggle-chat-btn:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .mobile-chat-content {
        padding: 15px;
        height: 300px;
        display: flex;
        flex-direction: column;
        transition: all 0.3s ease;
    }
    
    .mobile-chat-content.collapsed {
        height: 0;
        padding: 0 15px;
        overflow: hidden;
    }
    
    @media (max-width: 480px) {
        .mobile-chatbot {
            bottom: 15px;
            right: 15px;
            width: 55px;
            height: 55px;
        }
        
        .mobile-chatbot.expanded {
            width: calc(100vw - 30px);
            height: 400px;
            right: 15px;
            left: 15px;
        }
    }
    
    .mobile-message-list {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        padding: 10px;
        flex: 1;
        overflow-y: auto;
        text-align: left;
        margin-bottom: 10px;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }
    
    .mobile-message-input-container {
        display: flex;
        gap: 8px;
        justify-content: center;
        margin-bottom: 0;
        flex-wrap: wrap;
        margin-top: auto;
        flex-shrink: 0;
    }
    
    .mobile-message-input-container input {
        flex: 1;
        max-width: none;
        padding: 10px 15px;
        border: 2px solid #ff0000;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        font-family: 'Orbitron', monospace;
        font-size: 0.9rem;
    }
    
    .mobile-message-input-container button {
        padding: 10px 20px;
        background: linear-gradient(45deg, #ff0000, #ff6600);
        color: white;
        border: none;
        border-radius: 20px;
        font-family: 'Orbitron', monospace;
        font-weight: 700;
        font-size: 0.9rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .mobile-message-input-container button:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    }
    
    .mobile-message-input-container button:disabled {
        background: #666666;
        cursor: not-allowed;
    }
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 0, 0, 0.2);
    border-radius: 13px 13px 0 0;
    border-bottom: 1px solid rgba(255, 0, 0, 0.3);
}

.chat-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
}

.chat-status {
    display: flex;
    align-items: center;
    margin: 0 10px;
}

.status-indicator {
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: 'Orbitron', monospace;
    transition: all 0.3s ease;
}

.status-indicator.connected {
    background: rgba(76, 175, 80, 0.3);
    color: #4CAF50;
}

.status-indicator.disconnected {
    background: rgba(244, 67, 54, 0.3);
    color: #f44336;
}

.toggle-chat-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.toggle-chat-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.chat-content {
    padding: 15px;
    max-height: 400px;
    display: flex;
    flex-direction: column;
    height: 400px;
}

.chat-content.collapsed {
    display: none;
}

/* Center Content */
.center-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    min-height: 60vh;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.main-action-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Bottom Activity Feed */
.bottom-activity-feed {
    width: 100%;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

/* Right Sidebar */
.right-sidebar {
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Mobile Chat Section - Hidden by default */
.mobile-chat-section {
    display: none;
}

header {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 15px;
    border: 2px solid #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

/* Banner Section */
.banner-section {
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    border: 2px solid #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 15px;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.address-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.address-label {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: #ff6666;
    font-weight: 700;
}

.address-display {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.address-text {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.copy-btn {
    background: rgba(255, 0, 0, 0.3);
    border: none;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(255, 0, 0, 0.5);
    transform: scale(1.1);
}

        .social-buttons {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        
        .wallet-section-banner {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 0 15px;
        }
        
        .wallet-message-banner {
            font-size: 0.8rem;
            color: #ffffff;
            opacity: 0.8;
            font-family: 'Orbitron', monospace;
        }
        
        .wallet-btn-banner {
            background: linear-gradient(45deg, #ff0000, #ff6600);
            color: #ffffff;
            border: none;
            padding: 8px 16px;
            border-radius: 20px;
            font-family: 'Orbitron', monospace;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
        }
        
        .wallet-btn-banner:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 0, 0, 0.5);
        }
        
        .wallet-info-banner {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.1);
            padding: 6px 12px;
            border-radius: 15px;
            font-family: 'Orbitron', monospace;
            font-size: 0.8rem;
        }
        
        .wallet-info-banner.hidden {
            display: none;
        }
        
        .disconnect-btn-banner {
            background: rgba(244, 67, 54, 0.8);
            color: #ffffff;
            border: none;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 0.7rem;
            transition: all 0.3s ease;
        }
        
        .disconnect-btn-banner:hover {
            background: rgba(244, 67, 54, 1);
            transform: scale(1.1);
        }

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

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

.twitter-btn:hover {
    background: rgba(29, 161, 242, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.4);
}

.pump-btn {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
    border-color: #FFC107;
}

.pump-btn:hover {
    background: rgba(255, 193, 7, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.telegram-btn {
    background: rgba(0, 136, 204, 0.2);
    color: #0088CC;
    border-color: #0088CC;
}

.telegram-btn:hover {
    background: rgba(0, 136, 204, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}

/* Navigation Bar */
.navbar {
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    border: 2px solid #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.nav-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.nav-link {
    display: block;
    padding: 15px 20px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-radius: 13px;
    margin: 5px;
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    background: rgba(255, 0, 0, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.nav-item.active .nav-link {
    background: linear-gradient(45deg, #ff0000, #ff6600);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.5);
}

.nav-link.coming-soon {
    opacity: 0.7;
    cursor: not-allowed;
}

.nav-link.coming-soon:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
    box-shadow: none;
}

.coming-soon-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff6600;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff0000, #ff6600, #ff0000);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

.subtitle {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #ff6666;
    font-weight: 400;
}

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

.wallet-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    align-items: flex-end;
    text-align: right;
    min-width: 200px;
}

.wallet-message {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 8px;
    backdrop-filter: blur(10px);
    max-width: 200px;
    font-size: 0.85rem;
}

.wallet-message p {
    color: #cccccc;
    font-size: 0.95rem;
    margin: 0;
}

.wallet-btn {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5);
}

.wallet-info {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wallet-info.hidden {
    display: none;
}

.disconnect-btn {
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 12px;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.counter-section {
    text-align: center;
    background: rgba(255, 0, 0, 0.1);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid #ff0000;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.counter-section:hover {
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.3);
    transform: translateY(-2px);
}

.counter-header {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 20px;
}

.counter-header h2 {
    flex: 1;
    margin: 0;
    font-size: 1.5rem;
    color: #ff6666;
}

.alon-image-container {
    position: relative;
    flex-shrink: 0;
}

.counter-section h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff6666;
}

.counter {
    font-size: 4rem;
    font-weight: 900;
    color: #ff0000;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
    margin: 10px 0;
    animation: pulse 2s ease-in-out infinite;
}

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

.counter-text {
    font-size: 1.1rem;
    color: #cccccc;
}

.button-section {
    text-align: center;
}

.fuck-button {
    background: linear-gradient(45deg, #ff0000, #ff6600);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fuck-button:hover:not(:disabled) {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.6);
}

.fuck-button:active:not(:disabled) {
    transform: translateY(-1px) scale(1.02);
}

.fuck-button:disabled {
    background: #666666;
    cursor: not-allowed;
    box-shadow: none;
}

.button-hint {
    margin-top: 15px;
    color: #888888;
    font-size: 0.9rem;
}

.alon-section {
    position: relative;
    margin: 20px 0;
}

.alon-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    transition: all 0.3s ease;
    object-fit: cover;
    cursor: pointer;
}

.alon-image:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
}

.cry-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
    z-index: 10;
}

.cry-overlay.show {
    opacity: 1;
    animation: cryAnimation 1s ease-out;
}

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

.stats-section {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 0;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    min-width: 150px;
    backdrop-filter: blur(10px);
}

.stat-card h3 {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 10px;
}

.stat-card div {
    font-size: 2rem;
    font-weight: 700;
    color: #ff0000;
}

.live-section {
    margin: 0;
    text-align: center;
}

.live-section h2 {
    color: #ff6666;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.live-feed {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff0000;
    border-radius: 15px;
    padding: 20px;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.feed-item {
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
    padding: 10px 15px;
    border-radius: 10px;
    border-left: 4px solid #ff0000;
    font-size: 0.9rem;
    animation: slideInRight 0.3s ease-out;
}

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

.message-section {
    margin: 30px 0;
    text-align: center;
}

.message-section h2 {
    color: #ff6666;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.message-input-container {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 0;
    flex-wrap: wrap;
    margin-top: auto;
    flex-shrink: 0;
}

.message-input-container input {
    flex: 1;
    max-width: 200px;
    padding: 8px 12px;
    border: 2px solid #ff0000;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
}

.message-input-container input::placeholder {
    color: #888888;
}

.message-input-container input:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.message-input-container button {
    padding: 8px 15px;
    background: linear-gradient(45deg, #ff0000, #ff6600);
    color: white;
    border: none;
    border-radius: 20px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.message-input-container button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.message-input-container button:disabled {
    background: #666666;
    cursor: not-allowed;
}

.message-list {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 10px;
    flex: 1;
    overflow-y: auto;
    text-align: left;
    margin-bottom: 10px;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.message-item {
    background: rgba(255, 255, 255, 0.1);
    margin: 5px 0;
    padding: 10px 12px;
    border-radius: 8px;
    border-left: 3px solid #ff0000;
    animation: slideInUp 0.3s ease-out;
    flex-shrink: 0;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.8rem;
    color: #cccccc;
}

.message-username {
    font-weight: 700;
    color: #ff6666;
}

.message-time {
    color: #888888;
}

.message-content {
    font-size: 0.95rem;
    line-height: 1.4;
    word-wrap: break-word;
}

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

/* Shared FUCK! Animation Styles */
.shared-fuck-animation {
    position: fixed;
    color: #ff0000;
    font-size: 2.5rem;
    font-weight: bold;
    font-family: 'Orbitron', monospace;
    pointer-events: none;
    z-index: 1000;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: floatUpAndFade 2s ease-out forwards;
}

@keyframes floatUpAndFade {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0;
    }
    20% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
    80% {
        transform: translateY(-100px) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-150px) scale(0.8);
        opacity: 0;
    }
}

footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    color: #888888;
    font-size: 0.9rem;
}
#mobileChatbot {
    display: none !important;
 }
/* Responsive Design */
@media (max-width: 1200px) {
  
    .top-section {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .quick-stats {
        justify-content: center;
    }
    
    .main-layout {
        flex-direction: column;
        gap: 20px;
        min-height: auto;
    }
    
    .center-content {
        order: 1;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .right-sidebar {
        display: none;
    }
    
    .bottom-activity-feed {
        order: 2;
    }
    
    .chat-popup {
        position: absolute;
        left: -10px;
        top: 0;
        width: 300px;
        z-index: 1000;
    }
    
    .banner-section {
        margin-bottom: 15px;
        padding: 12px;
    }
    
    .banner-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .address-display {
        justify-content: center;
    }
    
    .social-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .navbar {
        margin-bottom: 20px;
    }
    
    .nav-container {
        gap: 5px;
    }
    
    .nav-link {
        padding: 12px 15px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    #mobileChatbot {
        display: flex !important;
     }
    .container {
        padding: 15px;
        min-height: auto;
        padding-bottom: 120px; /* Space for chat popup */
    }
    
    .top-section {
        padding: 15px;
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .wallet-section {
        align-items: center;
        text-align: center;
        min-width: auto;
    }
    
    .quick-stats {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-card {
        min-width: 100px;
        padding: 12px;
    }
    
    .title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .banner-section {
        margin-bottom: 10px;
        padding: 8px;
    }
    
    .banner-content {
        gap: 8px;
        flex-direction: column;
        text-align: center;
    }
    
    .address-label {
        font-size: 0.75rem;
    }
    
    .address-text {
        font-size: 0.6rem;
        word-break: break-all;
    }
    
    .address-display {
        padding: 6px 8px;
        gap: 8px;
    }
    
    .social-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .social-btn {
        padding: 5px 8px;
        font-size: 0.75rem;
    }
    
    .wallet-section-banner {
        flex-direction: column;
        gap: 8px;
        margin: 10px 0;
    }
    
    .wallet-btn-banner {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .wallet-info-banner {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .navbar {
        margin-bottom: 15px;
        padding: 5px;
    }
    
    .nav-container {
        flex-direction: row;
        gap: 2px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        padding: 8px 10px;
        font-size: 0.85rem;
        margin: 1px;
        border-radius: 10px;
    }
    
    .coming-soon-badge {
        font-size: 0.5rem;
        padding: 1px 3px;
        top: -3px;
        right: -3px;
    }
    
    .counter {
        font-size: 2.8rem;
    }
    
    .fuck-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .wallet-section {
        flex-direction: column;
        gap: 10px;
    }
    
    .wallet-message {
        padding: 12px 20px;
    }
    
    .chat-popup {
        position: absolute;
        width: calc(100vw - 30px);
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
    
    .chat-content {
        max-height: 300px;
    }
    
    .message-list {
        max-height: 200px;
    }
    
    .live-feed {
        max-height: 150px;
    }
    
    .right-sidebar {
        display: none;
    }
    
    .bottom-activity-feed {
        margin-top: 20px;
        padding: 15px;
    }
    
    .live-section h2 {
        font-size: 1.5rem;
    }
    
    .center-content {
        gap: 20px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        min-height: auto;
    }
    
    .main-action-area {
        gap: 20px;
    }
    
    .counter-section {
        padding: 20px;
    }
    
    .counter-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .counter-header h2 {
        font-size: 1.3rem;
    }
    
    .alon-image {
        width: 100px;
        height: 100px;
    }
    
    .cry-overlay {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .title {
        font-size: 1.8rem;
    }
    
    .counter {
        font-size: 2.2rem;
    }
    
    .fuck-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .alon-image {
        width: 80px;
        height: 80px;
    }
    
    .stats-section {
        gap: 10px;
    }
    
    .stat-card {
        min-width: 100px;
        padding: 12px;
    }
    
    .bottom-activity-feed {
        margin-top: 15px;
        padding: 10px;
    }
    
    .chat-popup {
        position: absolute;
        width: calc(100vw - 20px);
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .message-input-container input {
        max-width: 150px;
        font-size: 0.75rem;
    }
    
    .message-input-container button {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .counter {
        font-size: 2.5rem;
    }
    
    .fuck-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
} 