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

body {
    background: #000;
    color: #00ff41;
    font-family: 'Courier New', monospace;
    line-height: 1.4;
}

a {
    color: inherit;
    text-decoration: none;
}

/* HEADER STYLES */
.main-header {
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid #ffd700;
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 20px #ffd700;
}

.eye-symbol {
    font-size: 20px;
    text-shadow: 0 0 15px #ffd700;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #00ff41;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #ffd700;
    text-shadow: 0 0 10px #ffd700;
}

.visitor-counter {
    text-align: right;
}

.counter-label {
    font-size: 10px;
    color: #666;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.counter-number {
    font-size: 14px;
    color: #ffd700;
    text-shadow: 0 0 10px #ffd700;
    font-family: 'Courier New', monospace;
}

.golden-button {
            display: inline-block;
            padding: 12px 24px;
            background: linear-gradient(135deg, #ffd700, #ffb347, #ffd700);
            border: 2px solid #ffb347;
            border-radius: 6px;
            color: #1a1a1a;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 
                0 0 20px rgba(255, 215, 0, 0.4),
                0 4px 15px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .golden-button:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .golden-button:hover {
            background: linear-gradient(135deg, #ffdc00, #ffc947, #ffdc00);
            box-shadow: 
                0 0 30px rgba(255, 215, 0, 0.6),
                0 6px 20px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
            transform: translateY(-2px);
        }

        .golden-button:hover:before {
            left: 100%;
        }

        .golden-button:active {
            transform: translateY(0);
            box-shadow: 
                0 0 20px rgba(255, 215, 0, 0.4),
                0 2px 10px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        /* Alternative sizes */
        .golden-button.large {
            padding: 16px 32px;
            font-size: 18px;
            border-radius: 8px;
        }

        .golden-button.small {
            padding: 8px 16px;
            font-size: 14px;
            border-radius: 4px;
        }

/* MAIN CONTENT STYLES */
.homepage-content {
    min-height: calc(100vh - 120px);
}

.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    padding: 40px 20px;
}

.eye-triangle {
    font-size: 12px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffd700;
    white-space: pre;
    text-shadow: 0 0 15px #ffd700, 0 0 25px #ffd700, 0 0 35px #ffd700;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    filter: drop-shadow(0 0 10px #ffd700);
    animation: eyeGlow 3s ease-in-out infinite alternate;
    text-align: left;
}

@keyframes eyeGlow {
    0% { 
        text-shadow: 0 0 15px #ffd700, 0 0 25px #ffd700, 0 0 35px #ffd700;
        filter: drop-shadow(0 0 10px #ffd700);
    }
    100% { 
        text-shadow: 0 0 20px #ffd700, 0 0 35px #ffd700, 0 0 50px #ffd700;
        filter: drop-shadow(0 0 15px #ffd700);
    }
}

.hero-message {
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 0 20px #00ff41;
    animation: pulse 2s infinite;
    margin-bottom: 50px;
}

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

.chart-section {
    width: 90%;
    max-width: 800px;
	text-align:center;
}

.chart-title {
    font-size: 16px;
    color: #ffd700;
    text-shadow: 0 0 10px #ffd700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.chart-container {
    border: 2px solid #ffd700;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.chart-iframe {
    width: 100%;
    height: 500px;
    border: none;
    background: #000;
}

.chart-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 300px;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 40px 20px;
        }
        
        .chart-icon {
            font-size: 48px;
            margin-bottom: 16px;
            opacity: 0.7;
        }
        
        .chart-message {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #fff;
        }
        
        .chart-button {
            background: linear-gradient(45deg, #00ff41, #00cc33);
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            color: #000;
            font-weight: bold;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 12px;
        }
        
        .chart-button:hover {
            background: linear-gradient(45deg, #00cc33, #009926);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 255, 65, 0.3);
        }
        
        .chart-subtitle {
            font-size: 14px;
            color: #888;
        }
		
.chartainer {
	display: flex;
    justify-content: center;
    align-items: center;
	}

.contract-address {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.contract-address:hover {
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.ca-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ca-code {
    font-size: 18px;
    color: #00ff41;
    font-family: 'Courier New', monospace;
    word-break: break-all;
    text-shadow: 0 0 10px #00ff41;
}

.copy-hint {
    font-size: 14px;
    color: #fff;
    margin-top: 5px;
    opacity: 0.7;
}

/* SECTION STYLES */
section {
    padding: 60px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* FOOTER STYLES */
.main-footer {
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid #ffd700;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #00ff41;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
    text-shadow: 0 0 10px #ffd700;
}

.footer-ca {
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-ca:hover {
    color: #ffd700;
}

.footer-message {
    font-size: 14px;
    color: #999;
    font-style: italic;
    opacity: 0.7;
}

.legal-disclaimer {
    font-size: 7px;
    color: #222;
    opacity: 0.3;
    margin-top: 10px;
    line-height: 1.1;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .main-nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 12px;
    }
    
    .hero-message {
        font-size: 18px;
    }
    
    .eye-triangle {
        font-size: 8px;
        line-height: 1;
    }
    
    .chart-section {
        width: 95%;
    }
    
    .chart-iframe {
        height: 300px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    section {
        padding: 40px 20px;
    }
}