/* Explain: Styles for interactive gaming card and primary button components. - */
.gaming-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.gaming-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(229, 57, 53, 0.2);
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 0 15px rgba(229, 57, 53, 0.4);
}