* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
	background-color: #0C0C0E !important;
	color: #B8B0A4 !important;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

a {
	color: #C9A962;
	text-decoration: none;
	transition: color 0.2s ease;
	word-break: break-word !important;
}

a:hover {
	color: #D4B872;
}

h1, h2, h3, h4, h5, h6 {
	overflow-wrap: break-word !important;
	word-wrap: break-word !important;
	word-break: break-word !important;
	min-width: 0;
	max-width: 100%;
}

img {
	max-width: 100%;
	height: auto;
}

::selection {
	background-color: rgba(201, 169, 98, 0.3);
	color: #FFFFFF;
}

::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #0C0C0E;
}

::-webkit-scrollbar-thumb {
	background: #2C2A26;
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: #3C3A36;
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.5; }
}

.animate-on-scroll {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}
