/* ============================================
   CLAWDCOIN - Clean Terminal Style
   ============================================ */

:root {
    --bg: #000000;
    --text: #ffffff;
    --text-muted: #999999;
    --accent: #ffc900;
    --border: #333333;
    --font: 'JetBrains Mono', 'Courier New', Courier, monospace;
}

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

html {
    height: 100%;
}

body {
    font-family: var(--font);
    background-color: var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.7;
    font-size: 14px;
    overflow-x: hidden;
}

/* Layout */
.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

/* Hero Logo - Full Width Slider */
.hero-section {
    width: 100vw;
    margin-bottom: 48px;
    padding: 24px 0;
}

.slide-container {
    display: flex;
    width: max-content;
    animation: slide 30s linear infinite;
    gap: 60px;
}

.hero-logo {
    height: 100px;
    width: auto;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 30px));
    }
}

/* Description */
.description-section {
    margin-bottom: 64px;
}

.tagline {
    font-size: 18px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 32px;
    line-height: 1.5;
}

.description-text {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 14px;
}

.description-text:last-child {
    margin-bottom: 0;
}

.description-text a {
    color: var(--accent);
    text-decoration: underline;
}

.description-text a:hover {
    text-decoration: none;
}

.highlight {
    color: var(--accent);
}

/* Token Address Section */
.token-section {
    margin-bottom: 48px;
    text-align: center;
}

.token-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: lowercase;
}

.token-address {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 201, 0, 0.1);
    border: 1px solid var(--accent);
    padding: 16px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    word-break: break-all;
}

.token-address:hover {
    background: rgba(255, 201, 0, 0.2);
    transform: scale(1.02);
}

.token-address span:first-child {
    color: var(--accent);
    font-weight: 500;
}

.copy-icon {
    font-size: 16px;
    opacity: 0.7;
}

.copy-feedback {
    font-size: 12px;
    color: var(--accent);
    margin-top: 12px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.copy-feedback.show {
    opacity: 1;
}

/* Proof Section */
.proof-section {
    margin-bottom: 64px;
}

.proof-title {
    font-size: 48px;
    font-weight: 500;
    color: var(--text);
    text-transform: uppercase;
    margin-bottom: 32px;
    letter-spacing: 0.1em;
    text-align: center;
}

.video-container {
    border: 1px solid var(--border);
}

.proof-video {
    display: block;
    width: 100%;
    height: auto;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding-top: 32px;
    color: var(--text-muted);
    font-size: 12px;
}

.footer a {
    color: var(--accent);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .page-wrapper {
        padding: 48px 16px;
    }

    .tagline {
        font-size: 16px;
    }
}

/* Selection */
::selection {
    background: var(--accent);
    color: var(--bg);
}