
html,
body {
	margin: 0;
	padding: 0;
    background-color: #212121;
}

body {
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

main {
	flex: 1;
}

.home-note {
	margin: 0 0 18px;
	text-align: center;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, 0.92);
}
*/
.auth-page {
	font-family: Consolas, "Courier New", monospace;
}

.auth {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 200px 16px 300px;
}

.auth-center {
	width: 100%;
	max-width: 520px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: auto;
	margin-bottom: auto;
}


.auth-title {
	margin: 0 0 26px;
	color: #7a5a94;
	font-size: 22px;
	letter-spacing: 2px;
	font-weight: 400;
	text-align: center;
}

.auth-form {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}

.auth-message {
	margin: 0 0 18px;
	text-align: center;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, 0.92);
	max-width: 520px;
}

.auth-message--error {
	text-decoration: underline;
}

.auth-message--success {
	text-decoration: underline;
}

.auth-input {
	width: min(520px, 85vw);
	height: 44px;
	border-radius: 999px;
	border: 0;
	background: #f2f2f2;
	padding: 0 24px;
	font-family: inherit;
	font-size: 16px;
	letter-spacing: 1px;
	outline: none;
}

.auth-input::placeholder {
	color: rgba(0, 0, 0, 0.25);
}

.auth-btn {
	margin-top: 10px;
	width: clamp(180px, 30vw, 240px);
	height: 44px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, #40355f 0%, #7a5a94 100%);
	color: #fff;
	font-family: inherit;
	font-size: 22px;
	letter-spacing: 2px;
	cursor: pointer;
}

.auth-btn:hover,
.auth-btn:focus-visible {
	text-decoration: underline;
}


.home-main {
	width: 100%;
	max-width: 680px;
	margin: 0 auto;
	padding: 54px 16px 52px;
	color: #fff;
	font-family: Consolas, "Courier New", monospace;
}

.hero-box {
	max-width: 520px;
	margin: 0 auto;
	padding: 28px 34px;
	border-radius: 22px;
	background: linear-gradient(135deg, #40355f 0%, #7a5a94 100%);
	font-size: 28px;
	line-height: 1.05;
	letter-spacing: 2px;
}

.msg-form {
	max-width: 520px;
	margin: 46px auto 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.msg-input {
	width: 100%;
	border-radius: 22px;
	border: 0;
	background: #f2f2f2;
	padding: 14px 18px;
	font-family: inherit;
	font-size: 16px;
	letter-spacing: 1px;
	outline: none;
	resize: vertical;
}

.msg-file {
	width: 100%;
	font-family: inherit;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, 0.9);
}

.msg-btn {
	align-self: center;
	width: clamp(180px, 30vw, 240px);
	height: 44px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, #40355f 0%, #7a5a94 100%);
	color: #fff;
	font-family: inherit;
	font-size: 22px;
	letter-spacing: 2px;
	cursor: pointer;
}

.msg-btn:hover,
.msg-btn:focus-visible {
	text-decoration: underline;
}

.feed {
	margin-top: 46px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 34px;
}

.feed-item {
	width: 100%;
	max-width: 520px;
}



.post-card {
	border-radius: 22px;
	background: linear-gradient(135deg, #40355f 0%, #7a5a94 100%);
	padding: 18px 22px;
	overflow: hidden;
}

.post-user {
	font-size: 26px;
	letter-spacing: 2px;
	margin-bottom: 8px;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.post-text {
	font-size: 14px;
	letter-spacing: 1px;
	line-height: 1.2;
	opacity: 0.95;
	overflow-wrap: anywhere;
	word-break: break-word;
	hyphens: auto;
}

.post-img {
	width: 100%;
	max-height: 420px;
	object-fit: cover;
	border-radius: 16px;
	display: block;
	margin-top: 12px;
}

.post-actions {
	display: flex;
	gap: 10px;
	margin-top: 12px;
	flex-wrap: wrap;
}

.post-action-form {
	margin: 0;
}

.post-action-btn {
	height: 34px;
	border: 0;
	border-radius: 999px;
	padding: 0 14px;
	background: linear-gradient(135deg, #40355f 0%, #7a5a94 100%);
	color: #fff;
	font-family: inherit;
	font-size: 14px;
	letter-spacing: 1px;
	cursor: pointer;
}

.post-action-btn:hover,
.post-action-btn:focus-visible {
	text-decoration: underline;
}

.post-action-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	text-decoration: none;
}

.cta-text {
	margin: 52px 0 18px;
	text-align: center;
	font-size: 22px;
	letter-spacing: 1px;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 36px;
	flex-wrap: wrap;
}

.cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: clamp(180px, 30vw, 240px);
	padding: 14px 0;
	border-radius: 999px;
	background: linear-gradient(135deg, #40355f 0%, #7a5a94 100%);
	color: #fff;
	text-decoration: none;
	font-size: 22px;
	letter-spacing: 2px;
}

.cta-btn:hover,
.cta-btn:focus-visible {
	text-decoration: underline;
}

.header {
	background: linear-gradient(180deg, #40355f 0%, #7a5a94 100%);
	
}

.header-nav {
	height: 92px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 28px;
}

.header-nav {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.logo {
	height: 110px;
	width: auto;
	display: block;
}

.header-nav {
	display: flex;
	align-items: center;
	gap: 28px;
}

.topbar-nav {
	display: flex;
	align-items: center;
	gap: 48px;
}

.link {
	color: #fff;
	text-decoration: none;
	font-family: Consolas, "Courier New", monospace;
	font-size: 25px;
	line-height: 1;
	letter-spacing: 2px;
	padding: 8px 0;
}

.link:hover,
.link:focus-visible {
	text-decoration: underline;
}

.user {
	color: #fff;
	font-family: Consolas, "Courier New", monospace;
	font-size: 25px;
	line-height: 1;
	letter-spacing: 2px;
	padding: 8px 0;
	opacity: 0.95;
}


.footer {
	margin-top: auto;
	background: linear-gradient(180deg, #7a5a94 0%, #40355f 100%);
	padding: 44px 16px 52px;
	color: #fff;
}

.footer-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}

.footer-logo {
	height: 130px;
	width: auto;
	display: block;
}

.footer-contact {
	text-align: center;
	font-family: Consolas, "Courier New", monospace;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 22px;
	line-height: 1.35;
}

.footer-row {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

.footer-value {
	color: #fff;
}

.footer-social {
	display: flex;
	gap: 22px;
	margin-top: 10px;
}

.social-btn {
	width: 68px;
	height: 68px;
	display: grid;
	place-items: center;
	border: 2px solid rgba(255, 255, 255, 0.75);
	border-radius: 18px;
	color: #fff;
	text-decoration: none;
}

.social-btn img {
	width: 40px;
	height: 40px;
	display: block;
	object-fit: contain;
}

.lb-main {
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	padding: 54px 16px 52px;
	color: #fff;
	font-family: Consolas, "Courier New", monospace;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.lb-title {
	width: min(720px, 92vw);
	padding: 18px 34px;
	border-radius: 22px;
	background: linear-gradient(135deg, #40355f 0%, #7a5a94 100%);
	font-size: 40px;
	letter-spacing: 2px;
	text-align: center;
	margin: 60px 0 40px;
}

.lb-list {
	width: 100%;
	max-width: 720px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.lb-row {
	width: 100%;
	height: 44px;
	border-radius: 999px;
	background: #ffffff;
	color: rgba(0, 0, 0, 0.9);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 22px;
	box-sizing: border-box;
	letter-spacing: 1px;
}

.lb-name {
	font-size: 16px;
}

.lb-xp {
	font-size: 16px;
}

.lb-row--1 {
	background: #f2c200;
	color: rgba(0, 0, 0, 0.95);
}

.lb-row--2 {
	background: #bdbdbd;
	color: rgba(0, 0, 0, 0.95);
}

.lb-row--3 {
	background: #a65a49;
	color: rgba(0, 0, 0, 0.95);
}

.lb-row--1 .lb-xp,
.lb-row--2 .lb-xp,
.lb-row--3 .lb-xp {
	color: rgba(255, 255, 255, 0.95);
}

.lb-own {
	width: 100%;
	max-width: 720px;
	margin-top: 78px;
}

.lb-row--own {
	background: #f2f2f2;
}



