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

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Floating squares background */
.floating-squares {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.square {
    position: absolute;
    font-size: 20px;
    opacity: 0.05;
    animation: float 15s infinite linear;
}

.square:nth-child(1) { left: 5%; animation-delay: 0s; animation-duration: 20s; }
.square:nth-child(2) { left: 15%; animation-delay: -2s; animation-duration: 25s; }
.square:nth-child(3) { left: 25%; animation-delay: -4s; animation-duration: 18s; }
.square:nth-child(4) { left: 35%; animation-delay: -6s; animation-duration: 22s; }
.square:nth-child(5) { left: 45%; animation-delay: -8s; animation-duration: 28s; }
.square:nth-child(6) { left: 55%; animation-delay: -10s; animation-duration: 24s; }
.square:nth-child(7) { left: 65%; animation-delay: -12s; animation-duration: 19s; }
.square:nth-child(8) { left: 75%; animation-delay: -14s; animation-duration: 26s; }
.square:nth-child(9) { left: 85%; animation-delay: -16s; animation-duration: 21s; }
.square:nth-child(10) { left: 95%; animation-delay: -18s; animation-duration: 23s; }
.square:nth-child(11) { left: 10%; animation-delay: -20s; animation-duration: 27s; }
.square:nth-child(12) { left: 30%; animation-delay: -22s; animation-duration: 17s; }
.square:nth-child(13) { left: 50%; animation-delay: -24s; animation-duration: 29s; }
.square:nth-child(14) { left: 70%; animation-delay: -26s; animation-duration: 20s; }
.square:nth-child(15) { left: 90%; animation-delay: -28s; animation-duration: 25s; }

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

/* Live Data Indicator */
.live-data-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 25px;
    padding: 8px 20px;
    margin: 20px auto 40px;
    width: fit-content;
    font-size: 0.9rem;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.live-text {
    color: #22c55e;
    font-weight: 600;
}

.updated-time {
    color: #888;
    font-size: 0.8rem;
}

/* Main Header */
.main-header {
    text-align: center;
    margin-bottom: 60px;
}

.main-title {
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 20px;
    line-height: 0.9;
    animation: subtleBlink 3s infinite;
}

/* EXACT blinking animation like the live site */
@keyframes subtleBlink {
    0%, 85% {
        opacity: 1;
    }
    86%, 92% {
        opacity: 0.7;
    }
    93%, 100% {
        opacity: 1;
    }
}

.black-text {
    color: #666;
    display: inline-block;
    margin-right: 20px;
}

.reset-text {
    color: #ffffff;
    display: inline-block;
}

.tagline {
    font-size: 1.2rem;
    color: #ccc;
    font-style: italic;
    font-weight: 300;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.metrics-grid.secondary {
    margin-bottom: 40px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.metric-value.green { color: #22c55e; }
.metric-value.blue { color: #3b82f6; }
.metric-value.purple { color: #a855f7; }
.metric-value.white { color: #ffffff; }
.metric-value.red { color: #ef4444; }

.metric-label {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Heart Section */
.heart-section {
    text-align: center;
    margin: 40px 0;
}

.heart-emoji {
    font-size: 2rem;
}

/* Philosophy Section */
.philosophy-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
}

.philosophy-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.philosophy-section p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.8;
}

.philosophy-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Contract Section */
.contract-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
}

.contract-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.contract-subtitle {
    color: #888;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.contract-address-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.contract-address-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contract-address {
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.9rem;
    color: #ccc;
    word-break: break-all;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Why Section */
.why-section {
    margin: 60px 0;
    text-align: center;
}

.why-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.why-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Join Section */
.join-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
}

.join-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.join-section > p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
    text-align: center;
    min-width: 180px;
}

.btn-primary {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.btn-primary:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.disclaimer {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
}

.footer p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-tagline {
    font-style: italic;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 4rem;
        letter-spacing: 2px;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .metric-value {
        font-size: 2rem;
    }
    
    .contract-address-container {
        flex-direction: column;
    }
    
    .contract-address {
        min-width: auto;
        width: 100%;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .why-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .philosophy-badges {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .main-title {
        font-size: 3rem;
        letter-spacing: 1px;
    }
    
    .philosophy-section, .contract-section, .join-section {
        padding: 25px;
    }
    
    .why-card {
        padding: 20px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}
