@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');

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

:root {
    --bg-dark: #050814;
    --card-bg: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    --gold: linear-gradient(180deg, #FAD961 0%, #F76B1C 100%);
    --silver: linear-gradient(180deg, #E0E0E0 0%, #9ca3af 100%);
    --bronze: linear-gradient(180deg, #D48C48 0%, #78350f 100%);
}

body {
    background-color: var(--bg-dark);
    color: white;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

.center-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 40px 20px;
}

.logo {
    height: 120px;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
    margin-bottom: 30px;
    object-fit: contain;
}

footer {
    margin-top: auto;
    padding: 20px;
    color: #475569;
    font-size: 0.8rem;
    width: 100%;
    text-align: center;
    font-weight: 500;
}

.lb-title {
    margin: 0 0 40px 0;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
}

.landing-title {
    font-family: 'Helvetica Now Display', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 40px;
    background: linear-gradient(180deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: lowercase;
    letter-spacing: -3px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
    animation: float 6s ease-in-out infinite;
}

.podium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    width: 100%;
    padding-top: 20px;
}

.card {
    background: var(--card-bg);
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 15px;
    gap: 5px;
}

.card h3 {
    width: 100%;
    min-height: 40px;
    margin: 0;
    margin-bottom: 2px;
    font-size: 1.6rem;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

.card .amount {
    font-size: 0.95rem;
    color: #cbd5e1;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 20px;
}

.card .prize-label {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0;
}

.card .prize-val {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 0.9;
    letter-spacing: -1px;
}

.card.c-1 {
    order: 2;
    width: 280px;
    height: 250px;
    border-bottom: 5px solid #FAD961;
    z-index: 10;
    transform: translateY(-30px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.card.c-1 .prize-val {
    background: var(--gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 4rem;
}

.card.c-2 {
    order: 1;
    width: 250px;
    height: 210px;
    border-bottom: 5px solid #e2e8f0;
}

.card.c-2 .prize-val {
    background: var(--silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card.c-3 {
    order: 3;
    width: 250px;
    height: 210px;
    border-bottom: 5px solid #cd7f32;
}

.card.c-3 .prize-val {
    background: var(--bronze);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timer-pill {
    display: flex;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: fit-content;
    margin-bottom: 5px;
}

.time-val {
    width: 60px;
    text-align: center;
    font-family: monospace;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.timer-labels {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: fit-content;
    margin-bottom: 40px;
}

.time-lbl {
    width: 60px;
    text-align: center;
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 700;
}

.list-table {
    width: 100%;
    max-width: 900px;
    border-spacing: 0 8px;
    border-collapse: separate;
    margin-bottom: 50px;
}

.list-table th {
    color: #94a3b8;
    font-size: 0.95rem;
    text-align: left;
    padding: 0 15px;
    font-weight: 600;
}

.list-table td {
    background: rgba(30, 41, 59, 0.5);
    padding: 15px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

.list-table td:first-child {
    border-radius: 10px 0 0 10px;
    text-align: center;
    width: 60px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
}

.list-table td:nth-child(2) {
    font-weight: 700;
}

.list-table td:last-child {
    border-radius: 0 10px 10px 0;
    text-align: right;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 400;
}

.btn-landing {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(90deg, #2b3252 0%, #1e293b 100%);
    color: #ffffff;
    border: 2px solid #7c8aff;
    padding: 20px 40px;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(124, 138, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-landing:hover {
    background: #7c8aff;
    color: #050814;
    border-color: #7c8aff;
    box-shadow: 0 0 50px rgba(124, 138, 255, 0.6);
    transform: translateY(-3px);
}

.btn-rainbet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #cbd5e1;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-rainbet:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #61e3fa;
    color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.btn-rainbet img {
    height: 24px;
    width: auto;
    vertical-align: middle;
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #0f172a;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.btn-kick {
    border-color: #53fc18;
    background: #53fc18;
    box-shadow: 0 0 10px rgba(83, 252, 24, 0.1);
}

.btn-kick:hover {
    background: #53fc18;
    box-shadow: 0 0 30px rgba(83, 252, 24, 0.6);
    transform: translateY(-5px);
}

.btn-discord {
    border-color: #5865F2;
    background: #5865F2;
    box-shadow: 0 0 10px rgba(88, 101, 242, 0.1);
}

.btn-discord:hover {
    background: #5865F2;
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.6);
    transform: translateY(-5px);
}

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

@media (max-width: 800px) {
    .podium {
        flex-direction: column;
        gap: 10px;
        padding-top: 0;
    }

    .card.c-1 {
        width: 90%;
        max-width: 320px;
        height: auto;
        min-height: 200px;
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .card.c-2,
    .card.c-3 {
        width: 90%;
        max-width: 320px;
        height: auto;
        min-height: 200px;
    }

    .landing-title {
        font-size: 2.5rem;
    }

    .btn-landing {
        padding: 20px 40px;
        font-size: 1.2rem;
    }
}