* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(180deg, #111111 0%, #1b1b1b 100%);
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

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

.brand-logo {
    width: 80px;
    margin-bottom: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.brand h1 {
    margin: 0;
    font-size: 32px;
}

.brand p {
    margin: 8px 0 0;
    font-size: 14px;
    color: #cccccc;
}

.link-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.link-card {
    text-decoration: none;
    color: #ffffff;
    border-radius: 18px;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: 0.2s;
}

.link-card:hover {
    transform: translateY(-3px);
}

.link-card img {
    width: 42px;
    height: 42px;
}

.steam {
    background: #1b2838;
}

.patreon {
    background: #000000;
}

.reddit {
    background: #ff4500;
}

/* News */
.news {
    margin-top: 32px;
}

.news-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 14px;
    border-bottom: 1px solid #333;
    padding-bottom: 6px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 6px;
}

.news-list::-webkit-scrollbar {
    width: 8px;
}

.news-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 999px;
}

.news-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
}

.news-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.28);
}

.news-item {
    text-decoration: none;
    color: #dddddd;
    font-size: 15px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    transition: 0.15s;
}

.news-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.news-date {
    color: #888;
    margin-right: 8px;
}

.footer {
    margin-top: 40px;
    text-align: center;
}

.email {
    color: #888;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s;
}

.email:hover {
    color: #ffffff;
}