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

body {
    font-family: 'Press Start 2P', monospace;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    display: flex;
    min-height: 100vh;
}

/* Main Content Area */
.main-content {
    flex: 1;
    padding: 20px;
    max-width: calc(100vw - 200px);
    margin-right: 200px;
    height: 100vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #00ff00 #000;
}

/* Custom scrollbar for webkit browsers */
.main-content::-webkit-scrollbar {
    width: 8px;
}

.main-content::-webkit-scrollbar-track {
    background: #000;
    border-radius: 4px;
}

.main-content::-webkit-scrollbar-thumb {
    background: #00ff00;
    border-radius: 4px;
    border: 1px solid #000;
}

.main-content::-webkit-scrollbar-thumb:hover {
    background: #fff;
}

/* Header Section */
.header {
    margin-bottom: 40px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.main-logo {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    border: 2px solid #fff;
}

.title {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: lowercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

/* Contract Address */
.contract-address {
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.contract-address:hover {
    background: rgba(0, 255, 0, 0.2);
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.contract-address:active {
    transform: scale(0.98);
}

.copy-hint {
    font-size: 0.6rem;
    color: #00ff00;
    margin-top: 5px;
    opacity: 0.8;
    font-style: italic;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #00ff00;
    border-radius: 10px;
    text-decoration: none;
    color: #000;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #00ff00;
}

/* Main Image */
.main-image {
    text-align: center;
    margin-bottom: 30px;
    position: sticky;
    top: 20px;
    z-index: 10;
}

.hero-image {
    max-width: 60%;
    max-height: 40vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    border: 3px solid #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

/* Description */
.description {
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* DEX Banner Section */
.dex-banner-section {
    margin-bottom: 40px;
}

.banner-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.3);
    border: 3px solid #00ff00;
}

.dex-banner {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.banner-container:hover .dex-banner {
    transform: scale(1.02);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 255, 0, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.banner-container:hover .banner-overlay {
    opacity: 1;
}

.banner-text {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.banner-text h3 {
    color: #00ff00;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
    font-weight: bold;
}

.banner-text p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #fff;
}

.banner-status {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.status-item {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    border: 2px solid #00ff00;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

/* Call to Action */
.cta-section {
    text-align: center;
    margin-bottom: 50px;
}

.cta-button {
    background: #00ff00;
    color: #000;
    border: none;
    padding: 20px 40px;
    font-family: 'Press Start 2P', monospace;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 3px solid #fff;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.8);
}

/* Sections */
.section {
    margin-bottom: 60px;
    display: none;
}

.section.active {
    display: block;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    text-transform: lowercase;
    letter-spacing: 2px;
}

/* How to Buy Section */
.steps {
    max-width: 600px;
    margin: 0 auto;
}

.step {
    margin-bottom: 30px;
    padding: 20px;
    border: 2px solid #fff;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
}

.step-number {
    background: #fff;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 0.8rem;
}

.step p {
    font-size: 0.8rem;
    line-height: 1.6;
}

/* Origins Section - RPG Story */
.story-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
}

.story-episode {
    animation: fadeIn 0.5s ease-in;
}

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

.episode-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #00ff00;
    padding-bottom: 20px;
}

.episode-title {
    font-size: 1.5rem;
    color: #00ff00;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.episode-number {
    background: #00ff00;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    display: inline-block;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.story-text {
    line-height: 1.8;
}

.story-paragraph {
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-align: justify;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid #00ff00;
}

.story-character {
    text-align: center;
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 20px;
    height: fit-content;
}

.character-avatar {
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    display: flex;
    justify-content: center;
}

.story-avatar {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    border: 3px solid #00ff00;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    transition: all 0.3s ease;
}

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

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

.character-stats {
    text-align: left;
}

.stat {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #00ff00;
    border-radius: 5px;
    padding: 8px 12px;
    margin-bottom: 8px;
    font-size: 0.7rem;
    font-weight: bold;
    color: #00ff00;
}

.story-choices {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.choice-btn {
    background: #00ff00;
    color: #000;
    border: none;
    padding: 12px 25px;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    text-transform: uppercase;
}

.choice-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
    background: #fff;
    color: #000;
}

.choice-btn:active {
    transform: scale(0.95);
}

/* Responsive for story */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .story-choices {
        flex-direction: column;
        align-items: center;
    }
    
    .choice-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Meme Contest Section */
.contest-description {
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.8rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contest Banner */
.contest-banner {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    border: 3px solid #00ff00;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.3);
}

.contest-content {
    max-width: 600px;
    margin: 0 auto;
}

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

.contest-content h3 {
    color: #00ff00;
    font-size: 2rem;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
    font-weight: bold;
}

.contest-content p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.contest-prizes {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.prize {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    border: 2px solid #00ff00;
}

/* Contest Categories */
.contest-categories {
    max-width: 1000px;
    margin: 0 auto 40px;
}

.contest-categories h3 {
    text-align: center;
    color: #00ff00;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

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

.category-card {
    background: rgba(0, 0, 0, 0.8);
    border: 3px solid #00ff00;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
    position: relative;
}

.category-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
    border-color: #fff;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.2);
}

.category-card h4 {
    color: #00ff00;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.category-card p {
    color: #ccc;
    font-size: 0.8rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.category-status {
    background: rgba(255, 68, 68, 0.2);
    color: #ff4444;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: bold;
    border: 1px solid #ff4444;
}

.shorts-tab {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid #00ff00;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.shorts-tab:hover,
.shorts-tab.active {
    background: #00ff00;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

/* Shorts Categories */
.shorts-category {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.shorts-category.active {
    display: block;
}

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

.video-item {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
}

.video-item:hover {
    transform: scale(1.05);
    border-color: #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.video-frame {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    opacity: 0.8;
    z-index: 2;
    transition: all 0.3s ease;
}

.video-item:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.ninja-scene {
    font-size: 2.5rem;
    z-index: 1;
    transition: all 0.3s ease;
}

.video-item:hover .ninja-scene {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-item:hover .video-overlay {
    opacity: 1;
}

.video-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    color: #fff;
}

.video-stats span {
    background: rgba(0, 0, 0, 0.7);
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: bold;
}

.video-caption {
    font-size: 0.7rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: bold;
}

.video-duration {
    font-size: 0.6rem;
    color: #00ff00;
    background: rgba(0, 255, 0, 0.1);
    padding: 3px 8px;
    border-radius: 10px;
    display: inline-block;
    font-weight: bold;
}

.hodl-text {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
    margin-top: 30px;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-in;
}

.modal-content {
    background: #000;
    border: 3px solid #00ff00;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    animation: slideIn 0.3s ease-out;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid #00ff00;
    background: rgba(0, 255, 0, 0.1);
}

.modal-header h3 {
    color: #00ff00;
    font-size: 1rem;
    margin: 0;
}

.close-btn {
    background: #00ff00;
    color: #000;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.close-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px #00ff00;
}

.modal-video {
    padding: 30px;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-player-placeholder {
    width: 100%;
    text-align: center;
}

.video-success {
    text-align: center;
}

.video-success .ninja-scene {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 1s infinite;
}

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

.video-progress {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    margin-top: 20px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: #00ff00;
    width: 0%;
    animation: progress 15s linear infinite;
}

@keyframes progress {
    from { width: 0%; }
    to { width: 100%; }
}

.modal-footer {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-top: 2px solid #00ff00;
    background: rgba(0, 255, 0, 0.1);
    justify-content: center;
}

.modal-footer button {
    background: #00ff00;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.modal-footer button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

/* Responsive for shorts */
@media (max-width: 768px) {
    .shorts-nav {
        gap: 10px;
    }
    
    .shorts-tab {
        font-size: 0.5rem;
        padding: 8px 15px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-frame {
        min-height: 150px;
    }
    
    .modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-footer button {
        width: 100%;
    }
}

/* Battle Arena Section */
.battle-subtitle {
    text-align: center;
    font-size: 0.8rem;
    margin-bottom: 30px;
    color: #ccc;
}

/* Coming Soon Banner */
.coming-soon-banner {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    border: 3px solid #00ff00;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.3);
}

.coming-soon-content {
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.coming-soon-content h3 {
    color: #00ff00;
    font-size: 2rem;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
    font-weight: bold;
}

.coming-soon-content p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.coming-soon-features {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    border: 2px solid #00ff00;
}

/* Character Preview */
.character-preview {
    max-width: 1000px;
    margin: 0 auto 40px;
}

.character-preview h3 {
    text-align: center;
    color: #00ff00;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

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

.fighter-card {
    background: rgba(0, 0, 0, 0.8);
    border: 3px solid #00ff00;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.fighter-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
    border-color: #fff;
}

.fighter-card.selected {
    background: rgba(0, 255, 0, 0.1);
    border-color: #fff;
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.8);
}

.fighter-card.preview {
    position: relative;
    cursor: pointer;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    z-index: 10;
    transition: all 0.3s ease;
}

.fighter-card.preview:hover .coming-soon-overlay {
    background: rgba(0, 255, 0, 0.2);
}

.coming-soon-text {
    color: #00ff00;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fighter-image {
    width: 150px;
    height: 150px;
    border-radius: 15px;
    border: 3px solid #fff;
    margin-bottom: 20px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.fighter-card:hover .fighter-image {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.fighter-info h4 {
    color: #00ff00;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.fighter-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fighter-stats span {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: bold;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

/* Battle Arena */
.battle-arena {
    max-width: 1200px;
    margin: 0 auto;
}

.arena-background {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border: 3px solid #00ff00;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.computer-screen {
    background: #000;
    border: 3px solid #00ff00;
    border-radius: 15px;
    height: 200px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.screen-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fire-beam {
    position: absolute;
    width: 0;
    height: 8px;
    background: linear-gradient(90deg, #ff4444, #ff8800, #ffff00);
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.8);
    transform-origin: left center;
    display: none;
}

.fire-beam.active {
    display: block;
    animation: fireBeamShoot 0.8s ease-out;
}

@keyframes fireBeamShoot {
    0% {
        width: 0;
        opacity: 1;
    }
    50% {
        width: 100%;
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 0;
    }
}

.fighters-battle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 40px;
}

.fighter-left,
.fighter-right {
    text-align: center;
    flex: 1;
}

.battle-fighter {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    border: 3px solid #00ff00;
    margin-bottom: 15px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.fighter-left .battle-fighter {
    transform: scaleX(1);
}

.fighter-right .battle-fighter {
    transform: scaleX(-1);
}

.battle-fighter.hit {
    animation: hitEffect 0.5s ease-in-out;
}

@keyframes hitEffect {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.fighter-left .battle-fighter.hit {
    animation: hitEffectLeft 0.5s ease-in-out;
}

@keyframes hitEffectLeft {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1) rotate(-5deg); }
}

.health-bar {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #00ff00;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.health-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff4444, #ff8800, #00ff00);
    width: 100%;
    transition: width 0.5s ease;
}

.fighter-name {
    color: #00ff00;
    font-weight: bold;
    font-size: 0.9rem;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

/* Battle Controls */
.battle-controls {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.battle-btn {
    background: #00ff00;
    color: #000;
    border: none;
    padding: 15px 25px;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: 3px solid #fff;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

.battle-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.8);
    background: #fff;
    color: #000;
}

.battle-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Battle Log */
.battle-log {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 20px;
    max-height: 200px;
    overflow-y: auto;
}

.log-entry {
    color: #00ff00;
    font-size: 0.8rem;
    margin-bottom: 8px;
    padding: 5px 10px;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 5px;
    border-left: 3px solid #00ff00;
}

.log-entry.critical {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
    border-left-color: #ff4444;
}

.log-entry.special {
    color: #ffff00;
    background: rgba(255, 255, 0, 0.1);
    border-left-color: #ffff00;
}

/* Battle Results */
.battle-results {
    max-width: 600px;
    margin: 0 auto;
}

.result-content {
    background: rgba(0, 0, 0, 0.9);
    border: 3px solid #00ff00;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.5);
}

.result-content h3 {
    color: #00ff00;
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
}

.winner-avatar {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    border: 3px solid #00ff00;
    margin: 0 auto 30px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
}

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

.stat-item {
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    border-radius: 10px;
    padding: 15px;
}

.stat-label {
    display: block;
    color: #ccc;
    font-size: 0.7rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.stat-value {
    display: block;
    color: #00ff00;
    font-size: 1.2rem;
    font-weight: bold;
}

.rematch-btn {
    background: #00ff00;
    color: #000;
    border: none;
    padding: 15px 30px;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: 3px solid #fff;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.rematch-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.8);
    background: #fff;
    color: #000;
}

/* Responsive for battle arena */
@media (max-width: 768px) {
    .fighters-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .fighters-battle {
        flex-direction: column;
        gap: 20px;
    }
    
    .battle-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .battle-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .battle-stats {
        grid-template-columns: 1fr;
    }
    
    .banner-status {
        flex-direction: column;
        gap: 10px;
    }
    
    .banner-text h3 {
        font-size: 1.2rem;
    }
    
    .banner-text p {
        font-size: 0.9rem;
    }
    
    .coming-soon-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .coming-soon-content h3 {
        font-size: 1.5rem;
    }
    
    .contest-prizes {
        flex-direction: column;
        gap: 10px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Submission Preview */
.submission-preview {
    max-width: 800px;
    margin: 0 auto 40px;
}

.preview-container {
    background: rgba(0, 0, 0, 0.8);
    border: 3px solid #00ff00;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
}

.preview-header {
    text-align: center;
    margin-bottom: 25px;
}

.preview-header h3 {
    color: #00ff00;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.preview-header p {
    color: #ccc;
    font-size: 0.9rem;
}

.upload-area {
    border: 3px dashed #00ff00;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    background: rgba(0, 255, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-area:hover {
    background: rgba(0, 255, 0, 0.1);
    border-color: #fff;
}

.upload-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #00ff00;
}

.upload-text h4 {
    color: #00ff00;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.upload-text p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.upload-requirements {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.upload-requirements span {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: bold;
    border: 1px solid #00ff00;
}

/* Contest Rules */
.contest-rules {
    max-width: 800px;
    margin: 0 auto 40px;
}

.contest-rules h3 {
    text-align: center;
    color: #00ff00;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

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

.rule-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.rule-item:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.rule-number {
    background: #00ff00;
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.rule-text {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Join Contest Button */
.join-contest-section {
    text-align: center;
    margin-bottom: 40px;
}

.join-contest-btn {
    background: #00ff00;
    color: #000;
    border: none;
    padding: 20px 40px;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: 3px solid #fff;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    animation: pulse 2s infinite;
}

.join-contest-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.8);
    background: #fff;
    color: #000;
}

/* Game Preview */
.game-preview {
    max-width: 800px;
    margin: 0 auto 40px;
}

.preview-arena {
    background: rgba(0, 0, 0, 0.8);
    border: 3px solid #00ff00;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
}

.preview-screen {
    background: #000;
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-text {
    color: #00ff00;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.preview-description p {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Notify Section */
.notify-section {
    text-align: center;
    margin-bottom: 40px;
}

.notify-btn {
    background: #00ff00;
    color: #000;
    border: none;
    padding: 20px 40px;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: 3px solid #fff;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    animation: pulse 2s infinite;
}

.notify-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.8);
    background: #fff;
    color: #000;
}

/* Notify Modal */
.notify-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-in;
}

.notify-modal.active {
    display: flex;
}

.notify-modal-content {
    background: #000;
    border: 3px solid #00ff00;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    animation: slideIn 0.3s ease-out;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 2px solid #00ff00;
    background: rgba(0, 255, 0, 0.1);
}

.modal-header h3 {
    color: #00ff00;
    font-size: 1.3rem;
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.close-modal-btn {
    background: #00ff00;
    color: #000;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.close-modal-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px #00ff00;
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.modal-body p {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.input-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 5px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.input-prefix {
    color: #00ff00;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0 10px;
    border-right: 2px solid #00ff00;
    margin-right: 10px;
}

.x-handle-input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    padding: 10px;
    width: 100%;
    outline: none;
    font-family: 'Press Start 2P', monospace;
}

.x-handle-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.submit-btn, .cancel-btn {
    padding: 12px 25px;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: 2px solid #fff;
}

.submit-btn {
    background: #00ff00;
    color: #000;
}

.submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
    background: #fff;
    color: #000;
}

.cancel-btn {
    background: rgba(255, 68, 68, 0.2);
    color: #ff4444;
    border-color: #ff4444;
}

.cancel-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
    background: #ff4444;
    color: #000;
}

/* Success Message */
.success-message {
    text-align: center;
    animation: fadeIn 0.5s ease-in;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: bounce 1s infinite;
}

.success-message h3 {
    color: #00ff00;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.success-message p {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Chart Section */
.chart-subtitle {
    text-align: center;
    font-size: 0.8rem;
    margin-bottom: 30px;
    color: #ccc;
}

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

/* DexScreener Embed */
.dexscreener-container {
    background: #000;
    border: 2px solid #00ff00;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
}

#dexscreener-embed {
    position: relative;
    width: 100%;
    padding-bottom: 125%;
}

@media (min-width: 1400px) {
    #dexscreener-embed {
        padding-bottom: 65%;
    }
}

#dexscreener-embed iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 0;
}

/* Chart Tabs */
.chart-tabs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}

.tab {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #00ff00;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Press Start 2P', monospace;
    font-weight: bold;
    text-transform: uppercase;
}

.tab:hover,
.tab.active {
    background: #00ff00;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

/* Chart Tab Content */
.chart-tab {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.chart-tab.active {
    display: block;
}

/* Trades Tab */
.trades-container {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
}

.trades-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #00ff00;
}

.trades-header h3 {
    color: #00ff00;
    font-size: 1.2rem;
    margin: 0;
}

.trade-stats {
    display: flex;
    gap: 20px;
}

.trade-stats .stat {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: bold;
}

.trades-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trade-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.trade-item:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.trade-item.buy {
    border-left-color: #00ff00;
}

.trade-item.sell {
    border-left-color: #ff4444;
}

.trade-type {
    font-weight: bold;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 5px;
    text-transform: uppercase;
}

.trade-item.buy .trade-type {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
}

.trade-item.sell .trade-type {
    background: rgba(255, 68, 68, 0.2);
    color: #ff4444;
}

.trade-amount {
    font-weight: bold;
    font-size: 0.9rem;
}

.trade-time {
    color: #ccc;
    font-size: 0.7rem;
}

/* Holders Tab */
.holders-container {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
}

.holders-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #00ff00;
}

.holders-header h3 {
    color: #00ff00;
    font-size: 1.2rem;
    margin: 0;
}

.holders-stats {
    display: flex;
    gap: 20px;
}

.holders-stats .stat {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: bold;
}

.holders-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.holder-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #00ff00;
    transition: all 0.3s ease;
}

.holder-item:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.holder-rank {
    background: #00ff00;
    color: #000;
    padding: 4px 8px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.7rem;
}

.holder-address {
    font-family: monospace;
    font-size: 0.8rem;
    color: #fff;
}

.holder-balance {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    padding: 4px 8px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.7rem;
}

/* Info Tab */
.info-container {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
}

.info-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #00ff00;
}

.info-header h3 {
    color: #00ff00;
    font-size: 1.2rem;
    margin: 0;
}

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

.info-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #00ff00;
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.info-label {
    color: #ccc;
    font-size: 0.7rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.info-value {
    color: #00ff00;
    font-weight: bold;
    font-size: 0.9rem;
    font-family: monospace;
}

/* Responsive for chart */
@media (max-width: 768px) {
    .chart-tabs {
        gap: 10px;
    }
    
    .tab {
        font-size: 0.6rem;
        padding: 10px 15px;
    }
    
    .trades-header,
    .holders-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .trade-stats,
    .holders-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .trade-item,
    .holder-item {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}

/* Sidebar Navigation */
.sidebar {
    width: 200px;
    background: #fff;
    border-left: 2px solid #00ff00;
    padding: 40px 20px;
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: -5px 0 20px rgba(0, 255, 0, 0.3);
    scrollbar-width: thin;
    scrollbar-color: #00ff00 #fff;
}

/* Custom scrollbar for sidebar */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: #00ff00;
    border-radius: 3px;
    border: 1px solid #fff;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: #000;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-item {
    color: #000;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: lowercase;
    border: 1px solid transparent;
}

.nav-item:hover,
.nav-item.active {
    background: #00ff00;
    color: #000;
    transform: scale(1.05);
    border-color: #fff;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .main-content {
        max-width: 100%;
        padding: 15px;
        margin-right: 0;
        height: auto;
        overflow-y: visible;
    }
    
    .main-image {
        position: relative;
        top: auto;
    }
    
    .sidebar {
        position: static;
        width: 100%;
        height: auto;
        padding: 20px;
        background: #fff;
        border-left: none;
        border-top: 2px solid #00ff00;
        box-shadow: 0 -5px 20px rgba(0, 255, 0, 0.3);
    }
    
    .nav-menu {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .title {
        font-size: 1.8rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Animations */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 0, 0.5); }
    50% { box-shadow: 0 0 40px rgba(0, 255, 0, 0.8); }
}

.cta-button {
    animation: glow 2s ease-in-out infinite;
}

/* Home section should be visible by default */
.header, .main-image, .description, .cta-section {
    display: block;
} 