/*
Theme Name: cupcake2048
Theme URI: https://example.com/cupcake2048
Author: Antigravity
Author URI: https://example.com
Description: A lightweight wrapper theme for the 2048 Cupcake game.
Version: 0.1.0
License: GPA-2.0+
License URI: http://www.gnu.org/licenses/gpl-2.0.txt
Text Domain: cupcake2048
*/

/* Reset & Base */
*, *::before, *::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	line-height: 1.5;
	background-color: #fcfcfc;
	color: #333;
}

img {
	max-width: 100%;
	height: auto;
}

/* Layout Containers */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

.site-header {
	padding: 1rem 0;
	background: #fff;
	border-bottom: 1px solid #eee;
}

.site-footer {
	padding: 2rem 0;
	margin-top: 2rem;
	border-top: 1px solid #eee;
	text-align: center;
	font-size: 0.875rem;
	color: #666;
}
