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

html,
body {
    min-height: 100%;
    background: #05060c;
    color: #e8f7ff;
    font-family: Rajdhani, "Segoe UI", system-ui, sans-serif;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
}

canvas#stars {
    position: fixed;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.wrap {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 56px 24px 48px;
}

.brand {
    text-align: center;
    margin-bottom: 48px;
}

.brand-kicker {
    color: #7dfff4;
    font-family: Orbitron, Rajdhani, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.46em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.brand h1 {
    font-family: Orbitron, Rajdhani, sans-serif;
    font-weight: 900;
    font-size: clamp(36px, 8vw, 64px);
    letter-spacing: 0.08em;
    line-height: 1;
}

.brand p {
    margin-top: 14px;
    color: rgba(232, 247, 255, 0.55);
    font-size: 17px;
    letter-spacing: 0.08em;
}

.grid {
    width: min(1080px, 100%);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
    justify-content: center;
    gap: 22px;
}

.card-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.daily-card {
    min-height: 0;
    padding: 18px 22px;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    padding: 22px;
    border: 1px solid rgba(125, 255, 244, 0.18);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(16, 20, 36, 0.86), rgba(8, 10, 18, 0.92));
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover,
.card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(125, 255, 244, 0.55);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 28px rgba(20, 241, 226, 0.12);
    outline: none;
}

.card.soon {
    pointer-events: none;
    opacity: 0.48;
    border-color: rgba(255, 255, 255, 0.08);
}

.preview {
    position: relative;
    height: 150px;
    border-radius: 10px;
    margin-bottom: 18px;
    overflow: hidden;
    background: radial-gradient(circle at 50% 120%, rgba(80, 30, 140, 0.35), transparent 55%),
        radial-gradient(circle at 20% 20%, rgba(20, 80, 150, 0.2), transparent 40%),
        #080914;
}

.preview .ship {
    position: absolute;
    left: 50%;
    top: 58%;
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 26px solid #14f1e2;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 8px rgba(20, 241, 226, 0.7));
}

.preview .dot {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #dce7ff;
    opacity: 0.7;
}

.preview .foe {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 1.5px solid #ff2bd6;
    transform: rotate(45deg);
}

.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.badge.live {
    color: #05060c;
    background: #7dfff4;
}

.badge.soon-badge {
    color: rgba(232, 247, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
}

.card h2 {
    font-family: Orbitron, Rajdhani, sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.card p {
    color: rgba(232, 247, 255, 0.58);
    font-size: 15px;
    line-height: 1.45;
    flex: 1;
}

.meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 16px;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(232, 247, 255, 0.45);
}

.meta strong {
    color: #ffe14a;
    font-weight: 700;
}

.play {
    color: #7dfff4;
    font-weight: 700;
}

.foot {
    margin-top: 48px;
    color: rgba(232, 247, 255, 0.28);
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

@media (max-width: 560px) {
    .wrap {
        padding: 40px 16px 36px;
    }

    .grid {
        grid-template-columns: 1fr;
    }
}
