@font-face {
    font-family: 'TeslaFont';
    src: url('./font/TESLA.ttf');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: normal;
    /* Removes faux-bold from all elements, including h1 */
}

body {
    font-family: 'Apparat', sans-serif;
    color: #ffffff;
    background-color: #000;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
    padding: 2rem;
    padding-top: 4rem;
}

.logo {
    font-family: 'TeslaFont', sans-serif;
    font-size: 4.5rem;
    letter-spacing: 0.1rem;
    margin-bottom: 0.5rem;

    /* Degradado de blanco (izq y centro) a gris plateado (derecha) */
    background: linear-gradient(to right, #ffffff 0%, #ffffff 50%, #9ba0a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    /* Drop shadow sutil */
    filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.1));
}

.subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 5rem;
    letter-spacing: 0.05rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.countdown-title {
    font-size: 1.1rem;
    letter-spacing: 0.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #f0f0f0;
}

.countdown-container {
    margin-bottom: 4rem;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.number {
    font-size: 5rem;
    font-weight: normal;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.separator {
    font-size: 4rem;
    color: #d1a15e;
    /* Golden color from reference */
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(209, 161, 94, 0.5);
}

.buttons-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Glassmorphism effects */
.glass-btn {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    letter-spacing: 0.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.contract-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.8rem 2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#contract-address {
    font-size: 1.1rem;
    letter-spacing: 0.05rem;
    color: #e0e0e0;
}

.copy-btn {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 4px;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #d1a15e;
}

.footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: #999;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 3rem;
    }

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

    .number {
        font-size: 3rem;
    }

    .separator {
        font-size: 2.5rem;
    }

    .countdown {
        gap: 0.8rem;
    }

    .buttons-container {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .glass-btn {
        width: 100%;
    }

    .contract-container {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        word-break: break-all;
    }
}
}

.contract-container {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
    word-break: break-all;
}
}