/* Gaming Page Specific Styles */
/* Depends on style.css for CSS variables and base styles */

/* Centered Card Bodies */
.card-body-centered {
    text-align: center;
}

/* Icon Containers */
.icon-large {
    font-size: 3rem;
    margin-bottom: 20px;
}

.icon-primary {
    color: var(--primary);
}

.icon-accent {
    color: var(--accent);
}

/* Text Utilities - could be moved to a shared utilities.css */
.text-center {
    text-align: center;
}

.text-large {
    font-size: 1.1rem;
}

.text-margin-bottom {
    margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .text-large {
        font-size: 1rem;
    }
    
    .text-margin-bottom {
        margin-bottom: 20px;
    }
}

/* Button Margins */
.btn-margin {
    margin: 10px;
}


/* Check Icons */
.check-green {
    color: #10b981;
}

