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

body {
    background-color: #000;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 500px;
    text-align: center;
    padding: 60px 0;
    z-index: 10;
}

.logo {
    width: 140px;
    height: auto;
    margin-bottom: 40px;
}

.content-block {
    margin-bottom: 40px;
}

.headline {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.subtext {
    font-size: 1.1rem;
    color: #aaa;
    line-height: 1.6;
}

.subtext strong {
    color: #fff;
}

/* --- BUTTON GROUP --- */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 60px;
    align-items: center;
}

.btn {
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 18px;
    width: 100%;
    max-width: 340px;
    letter-spacing: 1.5px;
    transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    text-align: center;
}

/* Telegram - Main Focus */
.btn.primary {
    background: #fff;
    color: #000;
}

/* Store - Unique Style */
.btn.store-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* Secondary (Socials) */
.btn.secondary {
    border: 1px solid #333;
    color: #aaa;
    padding: 14px;
}

.btn:hover {
    transform: translateY(-3px);
    color: #fff;
    border-color: #fff;
}

/* --- BOARD STYLING --- */
.section-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #555;
    margin-bottom: 25px;
}

.board-container {
    text-align: left;
    background: rgba(25, 25, 25, 0.5);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.board-leadership {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #222;
    line-height: 2;
}

.board-leadership strong {
    color: #fff;
    font-size: 0.95rem;
}

.board-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.grid-item {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
}

.grid-item span {
    color: #fff;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer {
    margin-top: 60px;
    font-size: 0.7rem;
    color: #444;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- SNOW EFFECT --- */
.snow {
    position: fixed;
    top: -10%; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}

.layer1 {
    background-image: radial-gradient(1.5px 1.5px at 50px 50px, #fff, transparent),
                      radial-gradient(1.5px 1.5px at 250px 300px, #fff, transparent);
    background-size: 400px 400px;
    animation: drift 20s linear infinite;
    opacity: 0.25;
}

.layer2 {
    background-image: radial-gradient(3px 3px at 150px 100px, rgba(255,255,255,0.4), transparent);
    background-size: 500px 500px;
    animation: drift 12s linear infinite;
    filter: blur(1px);
}

@keyframes drift {
    from { transform: translateY(0); }
    to { transform: translateY(100vh); }
}

@media (max-width: 480px) {
    .board-grid { grid-template-columns: 1fr; }
    .headline { font-size: 1.6rem; }
}