:root {
	--dark: #111;
	--accent: #00bcd4;
	--background: #f5f7fa;
	--light: #ffffff;
	--text: #222;
	--muted: #777;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}
main.main-area {
    background: var(--background);
}
#thumb-button {
	display: none;
}
#thumb-button.show {
	display: flex;
}
.main-nav {
	display: flex;
	justify-content: center;
	gap: 30px;
	padding: 14px 20px;
	background: var(--accent);
}
.main-nav a, .thumb-menu a {
	color: white;
	text-decoration: none;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.9em;
	white-space: nowrap;
	transition: all 0.33s;
}
.main-nav a:hover, .thumb-menu a:hover {
	text-decoration: underline;
}
#thumb-button {
    position: fixed;
    top: 30%;
    right: 0;
    transform: translateY(-50%);
    background: #f57c00;
    line-height: 1;
    color: #fff;
    border: none;
    border-radius: 8px 0 0 8px;
    padding: 14px 16px;
    font-size: 1.4em;
    z-index: 1000;
    cursor: pointer;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
}
.thumb-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateX(-100%);
    background: var(--accent);
    padding: 24px 32px;
    pointer-events: none;
    transition: all 0.33s;
    z-index: 1000;
	pointer-events: auto;
}
.thumb-menu.show {
	transform: translateX(0);
	box-shadow: 4px 0 16px rgba(0, 0, 0, 0.2);
}
.thumb-menu a {
	padding: 8px 12px;
}
header {
	background: var(--dark);
	color: var(--light);
	padding: 80px 20px 40px;
	text-align: center;
}
header h1 {
	font-size: 3em;
	font-weight: 800;
}
header p {
	font-size: 1.2em;
	margin-top: 10px;
	color: #ccc;
}
.main-content {
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.main-content h2 {
	grid-column: 1/-1;
	font-size: 2em;
	margin-bottom: 20px;
	text-align: center;
	font-weight: 700;
	color: var(--dark);
}
.card {
	background: var(--light);
	padding: 20px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: transform 0.2s, box-shadow 0.3s;
}
.card:hover {
	transform: translateY(-4px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.card img {
	width: 40px;
	height: 40px;
	margin-bottom: 15px;
}
.card h3 {
	font-size: 1.1em;
	font-weight: 600;
}
.card.coming-soon {
	opacity: 0.5;
	pointer-events: none;
}
.carousel {
	display: flex;
	justify-content: center;
	margin-top: 40px;
	position: relative;
}
.carousel img {
	width: 180px;
	height: 180px;
	object-fit: cover;
	margin: 0 10px;
	opacity: 0;
	position: absolute;
	top: 0;
	transition: opacity 1s ease-in-out;
	border: 2px solid white;
}
.carousel img.active {
	opacity: 1;
	position: relative;
}
footer {
	background: var(--dark);
	color: var(--muted);
	text-align: center;
	padding: 40px 20px;
	font-size: 0.9em;
}
footer a {
	color: var(--accent);
	text-decoration: none;
}
footer a:hover {
	text-decoration: underline;
}


@media (max-width: 1039px) {
	.main-content {
		grid-template-columns: repeat(2, 1fr);
	}

}
@media (max-width: 819px) {
	.main-nav {
		display: none;
	}
	#thumb-button {
		display: flex;
	}
	header h1 {
		font-size: 2em;
	}
	header p {
		font-size: 1em;
	}

}
@media (max-width: 499px) {
	.main-content {
		grid-template-columns: repeat(1, 1fr);
		gap: 32px;
	}

}