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

body {
    font-family: 'Courier New', monospace;
    background: #000;
    color: #00ff00;
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #000;
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: #00ff00;
    letter-spacing: 1px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', monospace;
}

.logo-emoji {
    font-size: 24px;
    margin-left: 5px;
}


.ca-container {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ca-container:hover {
    background: rgba(0, 255, 0, 0.1);
    border-color: rgba(0, 255, 0, 0.4);
}

.ca-label {
    color: rgba(0, 255, 0, 0.7);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ca-address {
    color: #00ff00;
    font-size: 13px;
    font-family: 'Courier New', monospace;
}

.copy-icon, .check-icon {
    color: #00ff00;
    transition: all 0.2s ease;
}

.copy-icon:hover {
    transform: scale(1.1);
}

.container {
    width: 90%;
    max-width: 1000px;
    height: 75vh;
    margin-top: 90px;
    background: #000;
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: rgba(0, 255, 0, 0.02);
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
}

.terminal-title {
    font-size: 14px;
    font-weight: bold;
    color: #00ff00;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
}

.terminal-btn.minimize {
    background: #ffbd2e;
}

.terminal-btn.maximize {
    background: #27c93f;
}

.terminal-btn.close {
    background: #ff5f56;
}

.stats-bar {
    display: flex;
    justify-content: space-around;
    padding: 12px 20px;
    background: transparent;
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
    font-size: 11px;
}

.stat {
    color: rgba(0, 255, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat span {
    color: #00ff00;
    font-weight: 500;
    margin-left: 5px;
}

.terminal-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.6;
}

.terminal-body::-webkit-scrollbar {
    width: 8px;
}

.terminal-body::-webkit-scrollbar-track {
    background: #111;
}

.terminal-body::-webkit-scrollbar-thumb {
    background: #00ff00;
    border-radius: 4px;
}

.ascii-logo {
    color: rgba(0, 255, 0, 0.8);
    font-size: 10px;
    line-height: 1.2;
    white-space: pre;
    margin-bottom: 20px;
    opacity: 0.9;
}

.welcome-text {
    color: #00ff00;
    margin-bottom: 20px;
    white-space: pre-line;
}

.terminal-content {
    color: #00ff00;
}

.terminal-output {
    margin-bottom: 10px;
    white-space: pre-wrap;
}

.terminal-command {
    color: #fff;
    margin-bottom: 5px;
}

.terminal-input-line {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-top: 1px solid rgba(0, 255, 0, 0.1);
    background: transparent;
}

.prompt {
    color: #00ff00;
    margin-right: 10px;
}

.terminal-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.terminal-input::after {
    content: '_';
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.background-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00ff00;
    opacity: 0.3;
    animation: float 10s infinite linear;
}

@keyframes float {
    from {
        transform: translateY(100vh) translateX(0);
    }
    to {
        transform: translateY(-100px) translateX(100px);
    }
}

.error {
    color: #ff5f56;
}

.success {
    color: #27c93f;
}

.warning {
    color: #ffbd2e;
}

.command-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 10px 0;
}

.link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.link-item .icon {
    color: #00ff00;
    min-width: 16px;
}

.link-item span {
    color: rgba(0, 255, 0, 0.8);
    min-width: 100px;
}

.link-item a {
    color: #00ff00;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.link-item a:hover {
    border-bottom: 1px solid #00ff00;
    opacity: 0.8;
}

#chart-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #000;
}

.chart-exit-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    padding: 10px 20px;
    border-radius: 6px;
    color: #00ff00;
    font-size: 14px;
    z-index: 10;
    animation: pulse 2s infinite;
}

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

#gallery-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gallery-image-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-height: 70%;
    overflow: hidden;
}

#gallery-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.gallery-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    color: #00ff00;
}

#gallery-counter {
    font-size: 14px;
    color: rgba(0, 255, 0, 0.7);
}

#gallery-title {
    font-size: 18px;
    font-weight: bold;
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.gallery-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    padding: 10px 20px;
    border-radius: 6px;
    z-index: 10;
}

.control-hint {
    color: #00ff00;
    font-size: 14px;
    font-family: 'Courier New', monospace;
    animation: pulse 2s infinite;
}

.gallery-image-wrapper.dual-mode {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.dual-image {
    max-width: 48%;
    max-height: 100%;
    object-fit: contain;
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

/* Selection Menu Styles */
.selection-menu {
    padding: 20px;
    text-align: center;
}

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

.menu-options {
    margin: 20px 0;
}

.menu-item {
    color: #00ff00;
    font-size: 16px;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.menu-item:hover {
    border: 1px solid rgba(0, 255, 0, 0.3);
    background: rgba(0, 255, 0, 0.05);
}

.menu-hint {
    color: rgba(0, 255, 0, 0.6);
    font-size: 14px;
    margin-top: 20px;
    font-style: italic;
}

/* Video Gallery Styles */
#video-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-height: 70%;
    overflow: hidden;
}

#gallery-video {
    max-width: 100%;
    max-height: 100%;
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
}

.video-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    color: #00ff00;
}

#video-counter {
    font-size: 14px;
    color: rgba(0, 255, 0, 0.7);
}

#video-title {
    font-size: 18px;
    font-weight: bold;
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.video-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    padding: 10px 20px;
    border-radius: 6px;
    z-index: 10;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    20% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    80% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
}

/* Socials Section Styles */
.socials-section {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.community-banner {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid rgba(0, 255, 0, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.9) contrast(1.1);
}

.socials-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.socials-title {
    color: #00ff00;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    margin: 10px 0;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 6px;
    transition: all 0.2s;
}

.social-item:hover {
    background: rgba(0, 255, 0, 0.05);
    border-color: rgba(0, 255, 0, 0.2);
}

.social-icon {
    color: #00ff00;
    min-width: 16px;
}

.social-item span {
    color: rgba(0, 255, 0, 0.8);
    min-width: 100px;
}

.social-item a {
    color: #00ff00;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
    word-break: break-all;
}

.social-item a:hover {
    border-bottom: 1px solid #00ff00;
    opacity: 0.8;
}

.social-text {
    color: #00ff00;
    font-style: italic;
}

/* Holders View Styles */
#holders-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #000;
}

.holders-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.holders-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 255, 0, 0.3);
}

.holders-header h2 {
    color: #00ff00;
    font-size: 24px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    margin: 0;
}

.page-info {
    color: rgba(0, 255, 0, 0.7);
    font-size: 14px;
}

.holders-table {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 20px;
}

.holders-table::-webkit-scrollbar {
    width: 8px;
}

.holders-table::-webkit-scrollbar-track {
    background: rgba(0, 255, 0, 0.05);
    border-radius: 4px;
}

.holders-table::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 0, 0.3);
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 0, 0.2);
}

.holders-table::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 0, 0.5);
}

.table-header {
    display: grid;
    grid-template-columns: 50px 140px 250px 1fr 80px;
    gap: 10px;
    padding: 10px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 4px;
    margin-bottom: 10px;
    font-weight: bold;
}

.table-row {
    display: grid;
    grid-template-columns: 50px 140px 250px 1fr 80px;
    gap: 10px;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 4px;
    margin-bottom: 5px;
    transition: all 0.2s;
}

.table-row:hover {
    background: rgba(0, 255, 0, 0.05);
    border-color: rgba(0, 255, 0, 0.2);
}

.col-rank {
    color: #00ff00;
    text-align: center;
}

.col-address {
    color: rgba(0, 255, 0, 0.9);
    font-family: 'Courier New', monospace;
    cursor: pointer;
}

.col-address:hover {
    color: #00ff00;
    text-decoration: underline;
}

.col-amount {
    color: #00ff00;
    text-align: right;
}

.col-percentage {
    color: rgba(0, 255, 0, 0.8);
    text-align: right;
}

.col-tag {
    font-size: 11px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tag-special {
    color: #ffc107;
    font-style: italic;
}

/* Terminal link styles for proof command */
.terminal-link {
    color: #00ff00;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
    word-break: break-all;
}

.terminal-link:hover {
    border-bottom: 1px solid #00ff00;
    opacity: 0.8;
}

.holders-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    padding: 10px 20px;
    border-radius: 6px;
    z-index: 10;
}

/* Dev View Styles */
#dev-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #000;
}

.dev-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.dev-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 255, 0, 0.3);
}

.dev-header h2 {
    color: #00ff00;
    font-size: 24px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    margin: 0;
}

.dev-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    padding: 10px;
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 4px;
}

.stat-item {
    color: rgba(0, 255, 0, 0.7);
    font-size: 14px;
}

.stat-value {
    color: #00ff00;
    font-weight: bold;
    margin-left: 5px;
}

.dev-tokens {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 20px;
}

.dev-tokens::-webkit-scrollbar {
    width: 8px;
}

.dev-tokens::-webkit-scrollbar-track {
    background: rgba(0, 255, 0, 0.05);
    border-radius: 4px;
}

.dev-tokens::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 0, 0.3);
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 0, 0.2);
}

.token-card {
    background: rgba(0, 255, 0, 0.02);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.2s;
}

.token-card:hover {
    background: rgba(0, 255, 0, 0.05);
    border-color: rgba(0, 255, 0, 0.3);
}

.token-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
}

.token-rank {
    color: #00ff00;
    font-weight: bold;
    font-size: 16px;
}

.token-name {
    color: #00ff00;
    font-size: 16px;
    font-weight: 600;
}

.graduated-badge {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.token-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.token-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.token-label {
    color: rgba(0, 255, 0, 0.6);
    font-size: 13px;
    min-width: 100px;
}

.token-value {
    color: #00ff00;
    font-size: 13px;
}

.cex-badges {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    border: 1px solid rgba(0, 255, 0, 0.2);
}

.dev-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    padding: 10px 20px;
    border-radius: 6px;
    z-index: 10;
}

@media (max-width: 768px) {
    .table-header,
    .table-row {
        grid-template-columns: 35px 100px 150px 1fr 50px;
        font-size: 11px;
    }
    
    .holders-header h2 {
        font-size: 18px;
    }
    
    .col-tag {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 10px 15px;
        flex-direction: column;
        gap: 10px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .logo-emoji {
        font-size: 20px;
    }
    
    .ca-address {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .container {
        width: 95%;
        height: 80vh;
        margin-top: 100px;
    }
    
    .ascii-logo {
        font-size: 8px;
    }
    
    .stats-bar {
        flex-wrap: wrap;
        font-size: 11px;
    }
}