/* --- Footer Styles --- */
.site-footer {
    background: linear-gradient(0deg, #0a0e17 90%, #1a3c6e 100%);
    color: #fff;
    text-align: center;
    padding: 2.5rem 1rem 1.5rem 1rem;
    font-size: 1rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: 3rem;
    user-select: text;
    pointer-events: auto !important;
    font-family: Arial, 'Arial', sans-serif;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    margin-bottom: 0.5rem;
    animation: floatWhale 3s ease-in-out infinite alternate;
}

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

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    width: 100%;
    align-items: center;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5em 1em;
    justify-content: center;
}

.footer-label {
    color: #00c3ff;
    font-family: Arial, 'Arial', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.footer-link {
    color: #f7931a;
    text-decoration: underline;
    font-family: Arial, 'Arial', sans-serif;
    word-break: break-all;
    transition: color 0.2s;
    cursor: pointer;
    user-select: text;
    pointer-events: auto !important;
}
.footer-link:hover {
    color: #fff;
}

.footer-ln {
    color: #fff;
    background: rgba(0,195,255,0.08);
    border-radius: 0.4em;
    padding: 0.2em 0.5em;
    font-family: Arial, 'Arial', sans-serif;
    font-size: 0.98em;
    word-break: break-all;
    box-shadow: 0 1px 8px 0 #001a2a33;
    user-select: text;
    cursor: pointer;
    pointer-events: auto !important;
}

.footer-claim {
    margin-top: 1.2em;
    color: #8892b0;
    font-size: 0.98em;
    font-family: Arial, 'Arial', sans-serif;
    letter-spacing: 0.01em;
}

@media (max-width: 600px) {
    .footer-content {
        padding: 0 0.2em;
    }
    .footer-info {
        gap: 0.5rem;
    }
    .footer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2em 0;
    }
    .footer-logo svg {
        width: 38px;
        height: 38px;
    }
}
:root {
    --color-bg: #0a0e17;
    --color-primary: #f7931a;
    --color-secondary: #1a3c6e;
    --color-text: #ffffff;
    --color-text-muted: #8892b0;
    --color-accent: #00c3ff;
}

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

body {
    font-family: 'Space Mono', monospace;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
    margin-bottom: 2rem;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

/* Ocean Animation */
.ocean {
    height: 100%;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: rgba(1, 12, 20, 0.5);
}

.wave {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%231a3c6e" fill-opacity="0.2" d="M0,192L48,197.3C96,203,192,213,288,192C384,171,480,117,576,112C672,107,768,149,864,154.7C960,160,1056,128,1152,117.3C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>') repeat-x;
    position: absolute;
    width: 200%;
    height: 100%;
    animation: wave 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.3;
}

.wave:nth-of-type(2) {
    top: -50%;
    animation: wave 35s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
    opacity: 0.1;
}

@keyframes wave {
    0% { transform: translateX(0); }
    50% { transform: translateX(-25%); }
    100% { transform: translateX(-50%); }
}

/* Sections Styling */
section {
    margin-bottom: 6rem;
    background: rgba(10, 14, 23, 0.8);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Countdown Timer */
.countdown {
    text-align: center;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-block span {
    font-size: 3rem;
    font-weight: bold;
    color: var(--color-primary);
}

.time-block .label {
    font-size: 1rem;
    color: var(--color-text-muted);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Whale Ranking */
.ranking-list {
    max-width: 600px;
    margin: 0 auto;
}

.rank-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    align-items: center;
    transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1);
}
.epic-title {
    display: inline-block;
    font-size: 0.95em;
    color: var(--color-accent);
    font-family: 'Orbitron', sans-serif;
    margin-left: 0.5em;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 4px #000a;
}

.rank {
    background: var(--color-primary);
    color: var(--color-bg);
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

.score {
    color: var(--color-primary);
    font-family: 'Orbitron', sans-serif;
}

/* Forms */
.cta-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

input {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: var(--color-text);
    font-family: 'Space Mono', monospace;
    flex: 1;
}

button {
    padding: 1rem 2rem;
    background: var(--color-primary);
    color: var(--color-bg);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    transition: transform 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
}

.btc-address {
    display: flex;
    gap: 1rem;
}

/* Legend Section */
.legend {
    max-width: 1200px;
    margin: 0 auto 4rem;
    text-align: center;
    background: rgba(10, 14, 23, 0.8);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
}

.signature {
    margin-top: 2rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease forwards;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .timer {
        flex-wrap: wrap;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    form {
        flex-direction: column;
    }
}
