@import url("https://fonts.googleapis.com/css2?family=Protest+Strike&display=swap");

@font-face {
	font-family: "CabinetGrotesk-Variable";
	src:
		url("../assets/fonts/CabinetGrotesk-Variable.woff2") format("woff2"),
		url("../assets/fonts/CabinetGrotesk-Variable.woff") format("woff"),
		url("../assets/fonts/CabinetGrotesk-Variable.ttf") format("truetype");
	font-weight: 100 900;
	font-display: swap;
	font-style: normal;
}

/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--color-bg-dark: #000000;
	--color-bg-content: #0a0a0a;
	--color-text-primary: #ffffff;
	--color-text-secondary: rgba(255, 255, 255, 0.8);
	--color-input-bg: #ffffff;
	--color-button-bg: #000000;
	--color-button-text: #ffffff;
	/* --color-highlight: #FF7C61; */
	--color-highlight: #f8213d;
}

body {
	font-family:
		-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica", "Arial",
		sans-serif;
	color: var(--color-text-primary);
	background-color: var(--color-bg-dark);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url("../images/hero-bg-02.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	padding: 2rem;
	padding-top: max(2rem, env(safe-area-inset-top, 0));
	padding-bottom: max(2rem, env(safe-area-inset-bottom, 0));
	border-radius: 2rem;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, #0a0a0a30, #0a0a0a);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
	width: 100%;
}

.pill {
	display: inline-block;
	width: auto;
	padding: 0.2rem 0.8rem;
	font-size: 0.8rem;
	color: #d3d7cb;
	border-radius: 999px;
	backdrop-filter: blur(16px) saturate(180%);
	-webkit-backdrop-filter: blur(16px) saturate(180%);
	background-color: rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.5);
	animation: fadeInUp 1s ease-out;
	margin-bottom: 2rem;
}

.app-icon {
	width: 110px;
	height: 110px;
	margin: 0 auto 2rem;
	display: block;
	border-radius: 24px;
	animation: fadeInDown 0.8s ease-out;
}

.hero-title {
	font-family: "CabinetGrotesk-Variable";
	font-weight: 900;
	font-size: clamp(2.5rem, 8vw, 5rem);
	font-style: italic;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	letter-spacing: 0.02em;
	width: 100%;
}

.hero-title .word {
	display: inline-block;
	opacity: 0;
	animation: fadeInUp 0.6s ease-out forwards;
	z-index: 2;
	padding-right: 0.15em;
	margin-right: -0.15em;
}

.hero-title .word:nth-child(1) {
	animation-delay: 0.1s;
}
.hero-title .word:nth-child(2) {
	animation-delay: 0.2s;
}
.hero-title .word:nth-child(3) {
	animation-delay: 0.3s;
}
.hero-title .word:nth-child(4) {
	animation-delay: 0.4s;
}
.hero-title .word:nth-child(5) {
	animation-delay: 0.5s;
}

/* .hero-title .underline {
	position: relative;
	display: inline-block;
} */

.underline::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -0.2em;
	width: 100%;
	height: 0.5em;
	background-image: url("../images/Underline.png");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	z-index: -1;
}

.hero-subtitle {
	font-size: clamp(0.95rem, 2vw, 1.1rem);
	color: var(--color-text-secondary);
	margin-bottom: 2.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.hero-subtitle .word {
	display: inline-block;
	opacity: 0;
	animation: fadeInUp 0.6s ease-out forwards;
	animation-delay: 0.6s;
}

.hero-subtitle.link-back .word {
	background: var(--color-button-text);
	color: var(--color-button-bg);
	border-radius: 8px;
	font-weight: 600;
	padding: 0.25rem 0.9rem;
	transition: background 0.5s ease-in-out;
}

.hero-subtitle.link-back:hover .word {
	background: #e9e9e9;
}

/* Email Form */
.newsletter-form-container {
	max-width: 520px;
	margin: 0 auto;
	opacity: 0;
	animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.newsletter-form {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background-color: var(--color-input-bg);
	border-radius: 50px;
	padding: 0.375rem;
	transition: transform 0.2s ease;
}

.newsletter-form:focus-within {
	transform: scale(1.01);
}

.newsletter-form-input {
	flex: 1;
	min-width: 0;
	padding: 0.75rem 1.25rem;
	font-size: 1rem;
	border: none;
	background: transparent;
	color: #000;
	outline: none;
}

.newsletter-form-input::placeholder {
	color: rgba(0, 0, 0, 0.5);
}

.newsletter-form-button,
.newsletter-loading-button {
	padding: 0.875rem 2rem;
	font-size: 1rem;
	font-weight: 500;
	border: none;
	border-radius: 50px;
	background-color: var(--color-button-bg);
	color: var(--color-button-text);
	cursor: pointer;
	transition:
		transform 0.2s ease,
		opacity 0.2s ease;
	white-space: nowrap;
	flex-shrink: 0;
}

.newsletter-form-button:hover {
	transform: scale(1.03);
	opacity: 0.9;
}

.newsletter-form-button:active {
	transform: scale(0.97);
}

.newsletter-success,
.newsletter-error {
	margin-top: 1rem;
	text-align: center;
}

.newsletter-success p {
	color: var(--color-text-primary);
	font-size: 1rem;
}

.newsletter-error p {
	color: #ef4444;
	font-size: 1rem;
}

.newsletter-back-button {
	color: var(--color-text-secondary);
	font-size: 0.95rem;
	margin: 1rem auto 0;
	display: block;
	background: transparent;
	border: none;
	cursor: pointer;
	transition: color 0.2s ease;
	padding: 0.5rem 1rem;
}

.newsletter-back-button:hover {
	color: var(--color-text-primary);
	text-decoration: underline;
}

/* Content Section */
.content {
	background-color: var(--color-bg-content);
	padding: 6rem 2rem;
}

.container {
	max-width: 500px;
	margin: 0 auto;
}

.intro {
	margin-bottom: 10rem;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.intro p {
	font-size: clamp(1.2rem, 2.2vw, 1.5rem);
	font-weight: 600;
	color: var(--color-text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.7;
}
.feature p {
	font-size: clamp(1rem, 2vw, 1.25rem);
	color: var(--color-text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

/* Features */
.features {
	display: flex;
	flex-direction: column;
	gap: 4rem;
	margin-top: 4rem;
}

.feature {
	text-align: center;
}

.feature h3 {
	font-family: "CabinetGrotesk-Variable";
	font-size: clamp(1.6rem, 3vw, 2rem);
	font-weight: 800;
	margin-bottom: 0.5rem;
	letter-spacing: -0.01em;
}

.feature p:last-child {
	margin-bottom: 0;
}

.feature.signature {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-style: italic;
	color: #696969;
}

hr {
	display: flex;
	flex-direction: column;
	align-items: center;
	border: none;
}

hr::before {
	content: "•••";
	display: block;
	color: var(--color-highlight);
}

.feature.signature img {
	margin-top: 1rem;
	margin-bottom: 1rem;
	max-width: 150px;
	display: block;
}

/* Footer */
.footer {
	background-color: var(--color-bg-content);
	padding: 3rem 2rem;
	text-align: center;
	color: var(--color-text-secondary);
	font-size: 0.9rem;
}

.footer a {
	display: inline-block;
	text-decoration: none;
	transition: all 0.2s ease;
	color: var(--color-text-secondary);
}

.footer a:hover {
	color: var(--color-text-primary);
}

/* Animations */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero {
		padding: 3rem 1.5rem 1.5rem;
		padding-top: max(3rem, env(safe-area-inset-top, 0));
	}

	.hero-title {
		margin-bottom: 1rem;
	}

	.newsletter-form {
		padding: 0.25rem;
		gap: 0.25rem;
	}

	.newsletter-form-input {
		padding: 0.875rem 1rem;
		font-size: 0.95rem;
	}

	.newsletter-form-button,
	.newsletter-loading-button {
		padding: 0.875rem 1.5rem;
		font-size: 0.95rem;
	}

	.content {
		padding: 4rem 1.5rem;
	}

	.container {
		max-width: 400px;
	}

	.intro {
		margin-bottom: 4rem;
	}

	.features {
		gap: 3rem;
	}

	.footer {
		padding: 2rem 1.5rem;
	}
}

@media (max-width: 480px) {
	.app-icon {
		width: 80px;
		height: 80px;
	}
}

/* Roadmap Styles */
.roadmap-container {
	max-width: 700px;
}

.roadmap-nav {
	margin-bottom: 3rem;
	text-align: center;
}

.roadmap-nav:hover {
	cursor: pointer;
}

.back-link {
	display: inline-block;
	color: var(--color-text-secondary);
	text-decoration: none;
	font-size: 1rem;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	transition: all 0.2s ease;
}

.back-link:hover {
	color: var(--color-text-primary);
	background-color: rgba(255, 255, 255, 0.05);
	cursor: pointer;
}

.roadmap .hero {
	min-height: 40vh;
	background-image: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-top: 5rem;
}

.roadmap .hero .hero-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.roadmap-entries {
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

.roadmap-entry {
	border-left: 2px solid rgba(255, 255, 255, 0.1);
	padding-left: 2rem;
	position: relative;
}

.roadmap-entry::before {
	content: "";
	position: absolute;
	left: -6px;
	top: 0;
	width: 10px;
	height: 10px;
	background-color: var(--color-highlight);
	border-radius: 50%;
	box-shadow: 0 0 0 4px var(--color-bg-content);
}

.roadmap-header {
	margin-bottom: 1.5rem;
}

.roadmap-version {
	font-family: "CabinetGrotesk-Variable";
	font-size: clamp(1.8rem, 3vw, 2.2rem);
	font-weight: 800;
	color: var(--color-text-primary);
	margin-bottom: 0.25rem;
	margin-top: -1rem;
	letter-spacing: -0.01em;
}

.roadmap-date {
	font-size: 0.95rem;
	color: var(--color-text-secondary);
	opacity: 0.7;
	display: none;
}

.roadmap-content h3 {
	font-family: "CabinetGrotesk-Variable";
	font-size: clamp(1.2rem, 2.5vw, 1.5rem);
	font-weight: 700;
	color: var(--color-text-primary);
	margin-bottom: 1rem;
	letter-spacing: -0.01em;
}

.roadmap-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.roadmap-list li {
	font-size: clamp(1rem, 2vw, 1.1rem);
	color: var(--color-text-secondary);
	line-height: 1.7;
	padding-left: 1.5rem;
	margin-bottom: 0.75rem;
	position: relative;
}

.roadmap-list li::before {
	content: "→";
	position: absolute;
	left: 0;
	color: var(--color-highlight);
	font-weight: bold;
}

.roadmap-list li:last-child {
	margin-bottom: 0;
}

/* Print Styles */
@media print {
	.hero {
		background: none;
		min-height: auto;
	}

	.newsletter-form-container {
		display: none;
	}
}

/* URL Builder - Match Main Site Style */

/* Builder Form - Bear-inspired Two-Column Layout */
.builder-container {
	max-width: 1000px;
	margin: 0 auto 4rem;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 2.5rem;
}

.builder-form {
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* Form Field - Two Column Layout */
.form-field {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	padding: 1.75rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	align-items: start;
}

.form-field:first-of-type {
	padding-top: 0;
}

.form-field:last-of-type {
	border-bottom: none;
}

.field-info {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding-right: 1rem;
}

.field-label {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--color-text-primary);
	font-family: "SF Mono", "Menlo", "Monaco", "Courier New", monospace;
}

.required-badge {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 600;
	padding: 0.125rem 0.375rem;
	border-radius: 3px;
	background: rgba(239, 68, 68, 0.2);
	color: #fca5a5;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-left: 0.5rem;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.field-description {
	font-size: 0.875rem;
	color: var(--color-text-secondary);
	line-height: 1.5;
	margin: 0;
}

.field-input {
	display: flex;
	align-items: flex-start;
	padding-top: 0.125rem;
}

.builder-input {
	width: 100%;
	padding: 0.75rem 1rem;
	font-size: 0.95rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(0, 0, 0, 0.2);
	color: var(--color-text-primary);
	outline: none;
	font-family: inherit;
	border-radius: 8px;
	transition: all 0.2s ease;
}

.builder-input:focus {
	background: rgba(0, 0, 0, 0.3);
	border-color: rgba(255, 255, 255, 0.3);
}

.builder-input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

/* Select-specific styling */
select.builder-input {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.6)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 12px;
	padding-right: 2.5rem;
	cursor: pointer;
}

select.builder-input:hover {
	background-color: rgba(0, 0, 0, 0.25);
}

.builder-input option {
	background: #1a1a1a;
	color: var(--color-text-primary);
}

/* Toggle Switch */
.toggle-switch {
	position: relative;
	display: inline-block;
	width: 48px;
	height: 28px;
	cursor: pointer;
}

.toggle-switch input[type="checkbox"] {
	opacity: 0;
	width: 0;
	height: 0;
}

.toggle-slider {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 28px;
	transition: all 0.3s ease;
}

.toggle-slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 3px;
	bottom: 3px;
	background-color: var(--color-text-secondary);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.toggle-switch input:checked + .toggle-slider {
	background-color: var(--color-button-bg);
	border-color: var(--color-button-bg);
}

.toggle-switch input:checked + .toggle-slider:before {
	transform: translateX(20px);
	background-color: #fff;
}

/* X-Callback Fields */
.xcallback-field {
	display: none;
}

.xcallback-field.visible {
	display: grid;
}

/* Form Actions */
.form-actions {
	padding-top: 2rem;
	display: flex;
	justify-content: flex-end;
}

.builder-submit {
	padding: 0.875rem 2rem;
	font-size: 0.95rem;
	font-weight: 600;
	border: none;
	border-radius: 8px;
	background-color: var(--color-button-bg);
	color: var(--color-button-text);
	cursor: pointer;
	transition:
		transform 0.2s ease,
		opacity 0.2s ease;
}

.builder-submit:hover {
	transform: translateY(-1px);
	opacity: 0.9;
}

.builder-submit:active {
	transform: translateY(0);
}

/* Result Container */
.result-container {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 2rem;
	margin-top: 2rem;
	animation: fadeInUp 0.4s ease-out;
}

.result-url-wrapper {
	position: relative;
	margin-bottom: 1.25rem;
}

.result-url {
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 1rem 3.5rem 1rem 1.25rem;
	word-break: break-all;
	font-family: "SF Mono", "Menlo", "Monaco", "Courier New", monospace;
	font-size: 0.875rem;
	color: var(--color-text-primary);
	line-height: 1.6;
	cursor: pointer;
	transition: all 0.2s ease;
}

.result-url:hover {
	background: rgba(0, 0, 0, 0.4);
	border-color: rgba(255, 255, 255, 0.2);
}

.copy-icon-btn {
	position: absolute;
	top: 50%;
	right: 0.75rem;
	transform: translateY(-50%);
	padding: 0.5rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.copy-icon-btn:hover {
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.9);
	border-color: rgba(255, 255, 255, 0.2);
}

.copy-icon-btn.copied {
	background: var(--color-highlight);
	color: white;
	border-color: var(--color-highlight);
}

.open-url-btn {
	width: 100%;
	padding: 0.875rem 2rem;
	font-size: 0.95rem;
	font-weight: 600;
	border: none;
	border-radius: 8px;
	background-color: var(--color-button-bg);
	color: var(--color-button-text);
	cursor: pointer;
	transition: all 0.2s ease;
}

.open-url-btn:hover {
	transform: translateY(-1px);
	opacity: 0.9;
}

/* Notification Toast */
.notification-toast {
	position: fixed;
	top: 2rem;
	right: 2rem;
	transform: translateX(150%);
	background: rgba(0, 0, 0, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	padding: 0.875rem 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.625rem;
	color: white;
	font-size: 0.9rem;
	font-weight: 500;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	pointer-events: none;
}

.notification-toast.show {
	transform: translateX(0);
}

.notification-toast svg {
	color: var(--color-highlight);
	flex-shrink: 0;
}

.copy-url-btn {
	width: 100%;
	padding: 0.875rem 2rem;
	font-size: 0.95rem;
	font-weight: 600;
	border: none;
	border-radius: 8px;
	background-color: var(--color-button-bg);
	color: var(--color-button-text);
	cursor: pointer;
	transition: all 0.2s ease;
}

.copy-url-btn:hover {
	transform: translateY(-1px);
	opacity: 0.9;
}

.copy-url-btn.copied {
	background-color: var(--color-highlight);
}

/* Example URLs */
.example-url {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 1rem;
	margin-top: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.example-url code {
	font-family: "SF Mono", "Menlo", "Monaco", "Courier New", monospace;
	font-size: 0.85rem;
	color: var(--color-text-secondary);
	word-break: break-all;
	line-height: 1.6;
}

.copy-example-btn {
	align-self: flex-start;
	padding: 0.5rem 1.25rem;
	font-size: 0.85rem;
	font-weight: 600;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.05);
	color: var(--color-text-secondary);
	cursor: pointer;
	transition: all 0.2s ease;
}

.copy-example-btn:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--color-text-primary);
	transform: translateY(-1px);
}

.copy-example-btn.copied {
	background: rgba(74, 222, 128, 0.2);
	border-color: rgba(74, 222, 128, 0.3);
	color: #4ade80;
}

/* Section Titles */
.section-title {
	font-family:
		"CabinetGrotesk-Variable",
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		sans-serif;
	font-weight: 800;
	font-size: 2rem;
	margin-bottom: 1rem;
}

/* Parameters Section */
.parameters-section {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	margin-top: 2rem;
}

.parameter-group h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--color-text-primary);
}

.parameter-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.parameter-item {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 1.25rem;
}

.parameter-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

.parameter-name {
	font-family: "SF Mono", "Menlo", "Monaco", "Courier New", monospace;
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-text-primary);
	background: rgba(255, 255, 255, 0.08);
	padding: 0.25rem 0.625rem;
	border-radius: 6px;
}

.parameter-badge {
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.25rem 0.625rem;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.1);
	color: var(--color-text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.parameter-badge.required {
	background: rgba(239, 68, 68, 0.2);
	color: #fca5a5;
}

.parameter-description {
	color: var(--color-text-secondary);
	line-height: 1.6;
	font-size: 0.95rem;
}

.parameter-description code {
	font-family: "SF Mono", "Menlo", "Monaco", "Courier New", monospace;
	font-size: 0.875rem;
	background: rgba(255, 255, 255, 0.08);
	padding: 0.125rem 0.375rem;
	border-radius: 4px;
	color: var(--color-text-primary);
}

.parameter-values {
	list-style: none;
	padding: 0;
	margin: 0.75rem 0 0 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.parameter-values li {
	color: var(--color-text-secondary);
	font-size: 0.9rem;
	line-height: 1.5;
	padding-left: 1.25rem;
	position: relative;
}

.parameter-values li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--color-text-primary);
}

.parameter-values code {
	font-family: "SF Mono", "Menlo", "Monaco", "Courier New", monospace;
	font-size: 0.85rem;
	background: rgba(255, 255, 255, 0.08);
	padding: 0.125rem 0.375rem;
	border-radius: 4px;
	color: var(--color-text-primary);
}

/* Example Section */
.example-section {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-top: 2rem;
}

.example-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 2rem;
}

.example-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: var(--color-text-primary);
}

.example-description {
	color: var(--color-text-secondary);
	line-height: 1.6;
	margin-bottom: 1.25rem;
	font-size: 0.95rem;
}

/* Developer Section */
.developer-section {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-top: 2rem;
}

.developer-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 2rem;
}

.developer-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--color-text-primary);
}

.developer-card p {
	color: var(--color-text-secondary);
	line-height: 1.6;
	margin-bottom: 1rem;
}

.developer-card a {
	color: var(--color-text-primary);
	text-decoration: underline;
	transition: opacity 0.2s ease;
}

.developer-card a:hover {
	opacity: 0.7;
}

.code-block {
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	padding: 1rem 1.25rem;
	margin: 1rem 0;
	overflow-x: auto;
}

.code-block code {
	font-family: "SF Mono", "Menlo", "Monaco", "Courier New", monospace;
	font-size: 0.875rem;
	color: var(--color-text-primary);
	word-break: break-all;
	line-height: 1.6;
}

.note {
	background: rgba(59, 130, 246, 0.1);
	border-left: 3px solid rgba(59, 130, 246, 0.5);
	padding: 1rem;
	border-radius: 6px;
	font-size: 0.9rem;
	color: var(--color-text-secondary);
	margin-top: 1rem;
}

.note code {
	font-family: "SF Mono", "Menlo", "Monaco", "Courier New", monospace;
	font-size: 0.875rem;
	background: rgba(255, 255, 255, 0.08);
	padding: 0.125rem 0.375rem;
	border-radius: 4px;
	color: var(--color-text-primary);
}

.parameter-reference-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.parameter-reference-list li {
	color: var(--color-text-secondary);
	line-height: 1.6;
	padding-left: 1.5rem;
	position: relative;
}

.parameter-reference-list li::before {
	content: "→";
	position: absolute;
	left: 0;
	color: var(--color-text-primary);
}

.parameter-reference-list code {
	font-family: "SF Mono", "Menlo", "Monaco", "Courier New", monospace;
	font-size: 0.875rem;
	background: rgba(255, 255, 255, 0.08);
	padding: 0.125rem 0.375rem;
	border-radius: 4px;
	color: var(--color-text-primary);
}

.encoding-examples {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 1rem;
}

.encoding-example {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem;
	background: rgba(0, 0, 0, 0.2);
	border-radius: 8px;
}

.encoding-example .label {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--color-text-secondary);
	min-width: 70px;
}

.encoding-example code {
	font-family: "SF Mono", "Menlo", "Monaco", "Courier New", monospace;
	font-size: 0.875rem;
	color: var(--color-text-primary);
}

.shortcut-steps {
	padding-left: 1.25rem;
	margin: 1rem 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.shortcut-steps li {
	color: var(--color-text-secondary);
	line-height: 1.6;
	padding-left: 0.5rem;
}

.shortcut-steps code {
	font-family: "SF Mono", "Menlo", "Monaco", "Courier New", monospace;
	font-size: 0.875rem;
	background: rgba(255, 255, 255, 0.08);
	padding: 0.125rem 0.375rem;
	border-radius: 4px;
	color: var(--color-text-primary);
	word-break: break-all;
}

/* Responsive */
@media (max-width: 768px) {
	.form-field {
		grid-template-columns: 1fr;
		gap: 1rem;
		padding: 1.25rem 0;
	}

	.field-info {
		padding-right: 0;
	}

	.field-input {
		padding-top: 0;
	}
}

@media (max-width: 768px) {
	.url-hero {
		padding: 3rem 1.5rem 4rem;
	}

	.builder-container {
		max-width: 100%;
		padding: 2rem;
	}

	.section-title {
		font-size: 1.75rem;
	}

	.parameter-item,
	.example-card,
	.developer-card {
		padding: 1.5rem;
	}

	.encoding-example {
		flex-direction: column;
		align-items: flex-start;
	}

	.result-container {
		padding: 1.5rem;
	}
}

@media (max-width: 480px) {
	.url-hero {
		padding: 2rem 1.25rem 3rem;
	}

	.builder-container {
		padding: 1.5rem;
	}

	.form-field {
		padding: 1rem 0;
	}

	.field-label {
		font-size: 0.875rem;
	}

	.field-description {
		font-size: 0.8rem;
	}

	.builder-input {
		padding: 0.75rem 0.875rem;
		font-size: 0.9rem;
	}

	.builder-submit,
	.copy-url-btn,
	.open-url-btn {
		padding: 0.875rem 1.5rem;
		font-size: 0.95rem;
	}

	.form-actions {
		padding-top: 1.5rem;
	}

	.result-url {
		font-size: 0.8rem;
		padding: 0.875rem 3rem 0.875rem 1rem;
	}

	.result-container {
		padding: 1.25rem;
	}

	.notification-toast {
		top: auto;
		bottom: 1rem;
		right: 50%;
		transform: translateX(50%) translateY(150%);
		padding: 0.75rem 1.25rem;
		font-size: 0.85rem;
		max-width: calc(100% - 2rem);
	}

	.notification-toast.show {
		transform: translateX(50%) translateY(0);
	}

	.section-title {
		font-size: 1.5rem;
	}

	.parameter-item,
	.example-card,
	.developer-card {
		padding: 1.25rem;
	}

	.parameter-group h3,
	.example-card h3,
	.developer-card h3 {
		font-size: 1.1rem;
	}

	.code-block {
		padding: 0.875rem 1rem;
	}

	.code-block code,
	.parameter-name {
		font-size: 0.8rem;
	}
}
