/* Estilos específicos de la Landing Page */

body {
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(circle at 50% 10%, rgba(0, 230, 118, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 90%, rgba(0, 176, 255, 0.08) 0%, transparent 60%);
    color: var(--text-white);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.landing-container {
    width: 100%;
    max-width: 1280px;
    padding: 20px 24px 10px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    overflow: hidden;
}

/* --- Header --- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

/* Left: Social Box */
.social-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.social-link:hover {
    opacity: 0.8;
}

.social-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}



/* Center: Project Logo & Contract */
.center-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 28px;
    padding: 20px 32px;
    backdrop-filter: blur(15px);
    box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.01);
}

.project-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.project-logo {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 10px rgba(255, 170, 0, 0.5));
}

.project-name {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #ffffff, #ffe082);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contract-capsule {
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 100%;
}

.contract-details {
    display: flex;
    flex-direction: column;
}

.contract-label {
    font-size: 0.7rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.contract-address {
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--text-white);
    word-break: break-all;
    font-weight: 500;
}

.copy-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, transform 0.1s;
}

.copy-btn:hover {
    color: var(--text-white);
    transform: scale(1.1);
}

.copy-btn:active {
    transform: scale(0.95);
}

/* Right: Whitepaper Button */
.header-right-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}

.whitepaper-btn {
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    border: 1px solid rgba(0, 176, 255, 0.35);
    padding: 14px 32px;
    border-radius: 24px;
    color: var(--text-white);
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0, 176, 255, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.whitepaper-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 176, 255, 0.35);
}

/* RoadMap Button */
.roadmap-btn {
    background: linear-gradient(135deg, #0d2a1a, #1b3b2a);
    border: 1px solid rgba(0, 230, 118, 0.35);
    padding: 14px 32px;
    border-radius: 24px;
    color: var(--text-white);
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.12);
    transition: transform 0.2s, box-shadow 0.2s;
}

.roadmap-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 230, 118, 0.3);
}

/* --- Hero Section --- */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex-grow: 1;
    margin-bottom: 20px;
    gap: 20px;
}

/* Side Mascot Images */
.mascot-container {
    width: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
    transition: width 0.3s ease;
}

.mascot-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
    animation: floatLevitate 5s ease-in-out infinite;
}

.mascot-container.left .mascot-image {
    animation-delay: 0.5s;
}

.mascot-container.right .mascot-image {
    animation-delay: 1.5s;
}

@keyframes floatLevitate {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-16px) rotate(2deg);
    }
}

/* Central Content */
.hero-content {
    flex: 1;
    max-width: 760px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.hero-title {
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    background: linear-gradient(to bottom, #ffffff 60%, #cfd8dc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Supported Exchanges Badges */
.exchanges-title {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 8px;
    opacity: 0.8;
}

.exchanges-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.exchange-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-gray);
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 620px;
}

/* Action Buttons CTA */
.cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
}

.cta-btn {
    padding: 34px 85px;
    border-radius: 68px;
    font-size: 2.12rem;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-btn.trade {
    background: linear-gradient(135deg, var(--accent-turquoise), var(--accent-blue));
    color: #000000;
    box-shadow:
        0 0 35px rgba(0, 230, 118, 0.45),
        0 12px 25px rgba(0, 230, 118, 0.25);
}

.cta-btn.trade:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 50px rgba(0, 230, 118, 0.7),
        0 18px 30px rgba(0, 230, 118, 0.35);
}

.cta-btn.play {
    background: linear-gradient(135deg, #ff8c00, #ffd000);
    color: #000000;
    box-shadow:
        0 0 35px rgba(255, 160, 0, 0.45),
        0 12px 25px rgba(255, 160, 0, 0.25);
}

.cta-btn.play:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 50px rgba(255, 160, 0, 0.7),
        0 18px 30px rgba(255, 160, 0, 0.35);
}

.cta-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* --- Footer --- */
.footer {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- Responsive Media Queries (Tablets & Mobile) --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .mascot-container {
        width: 250px;
    }

    .mascot-image {
        max-width: 220px;
    }
}

@media (max-width: 900px) {
    body {
        height: auto;
        overflow: visible;
    }

    .landing-container {
        justify-content: flex-start;
        gap: 40px;
        height: auto;
        min-height: 100vh;
        overflow: visible;
        padding: 30px 20px 80px 20px;
    }

    .header {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 20px;
        text-align: center;
    }

    .social-box,
    .center-brand,
    .whitepaper-btn {
        width: 100%;
        max-width: 420px;
        align-items: center;
        justify-content: center;
    }

    .hero-section {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        margin-bottom: 40px;
    }

    .hero-content {
        width: 100%;
        flex: none;
        order: 1;
    }

    .mascot-container {
        width: 45%;
        max-width: 200px;
        order: 2;
        display: inline-flex;
    }

    .mascot-container.left {
        justify-content: flex-end;
    }

    .mascot-container.right {
        justify-content: flex-start;
    }

    .mascot-image {
        max-width: 180px;
    }
}

@media (max-width: 600px) {
    .landing-container {
        padding: 24px 16px 80px 16px;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .exchange-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .cta-row {
        flex-direction: column;
        gap: 16px;
    }

    .cta-btn {
        width: 100%;
        padding: 18px 35px;
        font-size: 1.15rem;
    }

    .mascot-container {
        width: 40%;
        max-width: 140px;
    }

    .mascot-image {
        max-width: 130px;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .contract-address {
        font-size: 0.75rem;
    }
}

/* --- Height-based media queries for PC to prevent vertical scroll/overflow without shrinking header/mascots --- */
@media (min-width: 901px) and (max-height: 850px) {
    .landing-container {
        padding: 15px 24px 5px 24px;
    }

    .header {
        margin-bottom: 12px;
    }

    .hero-section {
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: 4rem;
        margin-bottom: 12px;
    }

    .exchanges-row {
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .cta-btn {
        padding: 16px 40px;
        font-size: 1.15rem;
    }
}

@media (min-width: 901px) and (max-height: 750px) {
    .landing-container {
        padding: 10px 24px 2px 24px;
    }

    .header {
        margin-bottom: 8px;
    }

    .hero-section {
        margin-bottom: 8px;
    }

    .hero-title {
        font-size: 3.2rem;
        margin-bottom: 8px;
    }

    .exchanges-title {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }

    .exchanges-row {
        margin-bottom: 8px;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 16px;
    }

    .cta-btn {
        padding: 12px 30px;
        font-size: 1.05rem;
    }
}

@media (min-width: 901px) and (max-height: 650px) {
    .landing-container {
        padding: 5px 24px 2px 24px;
    }

    .header {
        margin-bottom: 4px;
    }

    .hero-section {
        margin-bottom: 4px;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 6px;
    }

    .exchanges-title {
        font-size: 0.7rem;
        margin-bottom: 2px;
    }

    .exchanges-row {
        margin-bottom: 6px;
        gap: 6px;
    }

    .exchange-badge {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .cta-row {
        gap: 16px;
    }

    .cta-btn {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
}