/* AntiGamer.com Main Stylesheet */

/* Snow effect container */
.snow-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	overflow: hidden;
	z-index: 9999;
}

/* Individual snowflake */
.snowflake {
	position: absolute;
	top: -50px;
	color: #fff;
	font-size: 1em;
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
	user-select: none;
	animation-name: fall;
	animation-timing-function: linear;
}

@keyframes fall {
	0% {
		top: -50px;
		opacity: 1;
		transform: translateX(0) rotate(0deg);
	}
	25% {
		transform: translateX(15px) rotate(90deg);
	}
	50% {
		transform: translateX(-10px) rotate(180deg);
	}
	75% {
		transform: translateX(20px) rotate(270deg);
	}
	100% {
		top: 100vh;
		opacity: 0.3;
		transform: translateX(-5px) rotate(360deg);
	}
}

/* Base body styles */
body {
	font-family: verdana, sans-serif;
	background: url(../images/background-winter-2025.jpg) no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
	min-height: 100vh;
	text-align: center;
	font-size: 11px;
	line-height: 12px;
	margin: 0;
	padding: 0;
}

/* Links */
a { color: #8B0000; }
a:hover { color: #A52A2A; }

/* Form buttons */
input[type="submit"] {
	background: #fff;
	color: #000;
	border: 1px solid #000;
	padding: 4px 12px;
	font-family: inherit;
	font-size: 11px;
	cursor: pointer;
}
input[type="submit"]:hover {
	background: #f0f0f0;
}

/* Logo container */
.logo-container {
	width: 100%;
	max-width: 960px;
	margin: 5px auto;
	padding: 0 10px;
	text-align: center;
	box-sizing: border-box;
}
.logo-container img {
	width: 100%;
	max-width: 600px;
	height: auto;
	display: block;
	margin: 0 auto;
}

/* Main container */
.main-container {
	width: 100%;
	max-width: 960px;
	margin: 0 auto 10px auto;
	padding: 25px 10px;
	text-align: center;
	border: 1px solid white;
	background: rgba(255,255,255,0.5);
	box-sizing: border-box;
}

/* Two-column layout */
.columns {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

/* Left column - flexible width */
.col-left {
	flex: 1;
	min-width: 300px;
	max-width: 550px;
	text-align: center;
	vertical-align: top;
}

/* Right column - fixed width */
.col-right {
	flex: 0 0 350px;
	width: 350px;
	text-align: center;
	vertical-align: top;
}

/* Content boxes */
.content-box {
	background: white;
	border: 1px black solid;
	padding: 8px;
	margin-bottom: 10px;
	text-align: left;
	width: 100%;
	box-sizing: border-box;
}
.content-box:last-child {
	margin-bottom: 0;
}

/* Section content styling */
.section-title {
	font-size: 15px;
	font-weight: bold;
	display: block;
	margin-bottom: 6px;
}
.definition-word {
	font-weight: bold;
	font-size: 14px;
	display: block;
	margin-bottom: 8px;
}
.definition-word .word {
	color: #C25426;
}
.definition-text {
	font-size: 12px;
	line-height: 16px;
	display: block;
	margin-bottom: 10px;
}
.section-links {
	margin-top: 10px;
	padding-top: 6px;
	border-top: 1px solid #ccc;
	line-height: 18px;
}

/* Video responsive */
.video-container {
	text-align: center;
}
.video-container video {
	display: block;
	width: 100%;
	max-width: 400px;
	height: auto;
	margin: 0 auto;
}

/* Minipost iframe */
.minipost-frame {
	width: 100%;
	max-width: 350px;
	height: 379px;
	margin-bottom: 5px;
	padding: 0;
	border: 1px solid black;
	box-sizing: border-box;
}

/* Tablet */
@media (max-width: 900px) {
	.logo-container {
		max-width: 100%;
		padding: 0 5px;
	}
	.main-container {
		width: auto;
		max-width: 100%;
		margin: 0 5px 10px 5px;
		padding: 15px 10px;
	}
	.col-left {
		max-width: 400px;
	}
}

/* Mobile */
@media (max-width: 720px) {
	.logo-container {
		padding: 0;
	}
	.main-container {
		margin: 0 0 10px 0;
		padding: 10px 0;
		border: none;
		background: transparent;
	}
	.columns {
		flex-direction: column;
		align-items: center;
		gap: 10px;
		padding: 0 5px;
	}
	.col-left, .col-right {
		flex: none;
		width: 100%;
		max-width: 100%;
	}
	.content-box {
		max-width: 100%;
	}
	.minipost-frame {
		max-width: 100%;
	}
}
