/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 99px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    text-decoration: none;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-2);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.3);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 245, 212, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* Game Card */
.game-card {
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s var(--transition-smooth);
    display: flex;
    flex-direction: column;
    border: 4px solid transparent;
    text-decoration: none;
    color: inherit;
}

.game-card:hover {
    transform: scale(1.03);
}

.thumbnail-container {
    width: 100%;
    padding-top: 65%;
    position: relative;
    background: #1a1a2e;
}

.game-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

.card-content {
    padding: 16px;
    flex-grow: 1;
}

.card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.card-desc {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--accent-3);
    font-weight: 700;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 400;
}

/* Ad Blocks */
.ad-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    margin: 40px auto;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
}

.ad-block::before {
    content: "Advertisement";
    position: absolute;
    top: 5px;
    left: 5px;
}

.ad-leaderboard { width: 970px; max-width: 100%; height: 90px; }
.ad-infeed { width: 100%; height: 250px; grid-column: 1 / -1; }
.ad-sticky-bottom { position: fixed; bottom: 0; left: 0; width: 100%; height: 60px; z-index: 1001; background: #000; display: none; }
