/* AI updated, model - Claude Sonnet 4.5 */
:root {
	--primary: #1e90c8;
	--primary-dark: #156a9a;
	--primary-light: #3aa4d8;
	--bg: #0b1145;
	--bg-light: #1a2060;
	--bg-lighter: #252d70;
	--text: #ffffff;
	--text-dim: rgba(255, 255, 255, 0.7);
	--border: rgba(255, 255, 255, 0.1);
	--card-bg: rgba(255, 255, 255, 0.05);
	--hover-bg: rgba(255, 255, 255, 0.1);
	--success: #64ff64;
	--error: #ff6464;
	--warning: #ffaa64;
	--blue: #0b1145;
	--light-blue: #1e90c8;
	--pink: #1e90c8;
}

html, body {overflow-x: clip; scroll-behavior: smooth;}
* {margin: 0; padding: 0; box-sizing: border-box;}
body {font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; min-height: 100vh;}
.Container {max-width: 1200px; margin: 0 auto; padding: 0 20px;}
h1, h2, h3, h4, h5, h6 {font-weight: bold; line-height: 1.2;}
a {color: inherit; transition: opacity 0.3s ease;}
a:hover {opacity: 0.8;}
/* AI updated, model - Claude Sonnet 4.5 */
.Button {display: inline-block; padding: 12px 24px; background: var(--primary); color: #ffffff; border-radius: 8px; font-weight: bold; text-decoration: none; border: none; cursor: pointer; transition: all 0.3s ease; font-size: 16px;}
.Button:hover {background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(30, 144, 200, 0.4);}
.Button.Alt {background: transparent; color: var(--primary-light); border: 2px solid var(--primary);}
.Button.Alt:hover {background: var(--primary); color: #ffffff;}
input, textarea, select {font-family: inherit; font-size: inherit;}
.FormItem {margin-bottom: 16px;}
.FormItem input, .FormItem textarea, .FormItem select {width: 100%; padding: 12px; border-radius: 8px; background: var(--card-bg); border: 1px solid var(--border); color: var(--text);}
.FormItem input:focus, .FormItem textarea:focus, .FormItem select:focus {outline: none; border-color: var(--primary);}

/* AI created, model - Claude Sonnet 4.5 */
.ModalOverlay {position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.7); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.2s ease;}
.ModalOverlay.Show {opacity: 1; pointer-events: all;}
.Modal {background: var(--bg-light); border-radius: 12px; padding: 28px; max-width: 480px; width: calc(100% - 32px); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); border: 1px solid var(--border); transform: scale(0.9); transition: transform 0.2s ease;}
.ModalOverlay.Show .Modal {transform: scale(1);}
.Modal .ModalIcon {width: 56px; height: 56px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; border-radius: 50%;}
.Modal .ModalIcon svg {width: 32px; height: 32px; stroke-width: 2.5;}
.Modal.Success .ModalIcon {background: rgba(34, 197, 94, 0.15);}
.Modal.Success .ModalIcon svg {stroke: #22c55e;}
.Modal.Error .ModalIcon {background: rgba(239, 68, 68, 0.15);}
.Modal.Error .ModalIcon svg {stroke: #ef4444;}
.Modal.Info .ModalIcon {background: rgba(59, 130, 246, 0.15);}
.Modal.Info .ModalIcon svg {stroke: #3b82f6;}
.Modal .ModalMessage {text-align: center; font-size: 16px; line-height: 1.5; color: var(--text); margin-bottom: 24px; word-wrap: break-word;}
.Modal .ModalButton {width: 100%; padding: 12px; background: var(--primary); color: #fff; border: none; border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer; transition: background 0.2s ease;}
.Modal .ModalButton:hover {background: var(--primary-hover);}
.Modal .ModalButton:active {transform: scale(0.98);}
@media (max-width: 767px) {.Modal {padding: 24px; max-width: 360px;} .Modal .ModalIcon {width: 48px; height: 48px; margin-bottom: 16px;} .Modal .ModalIcon svg {width: 28px; height: 28px;} .Modal .ModalMessage {font-size: 15px; margin-bottom: 20px;}}

/* AI created, model - Claude Sonnet 4.5 - Utility classes for Solio */
.text-center {text-align: center;}
.text-left {text-align: left;}
.text-right {text-align: right;}
.mt-1 {margin-top: 8px;}
.mt-2 {margin-top: 16px;}
.mt-3 {margin-top: 24px;}
.mt-4 {margin-top: 32px;}
.mb-1 {margin-bottom: 8px;}
.mb-2 {margin-bottom: 16px;}
.mb-3 {margin-bottom: 24px;}
.mb-4 {margin-bottom: 32px;}
.p-1 {padding: 8px;}
.p-2 {padding: 16px;}
.p-3 {padding: 24px;}
.p-4 {padding: 32px;}
.hidden {display: none !important;}
.visible {display: block !important;}
@media (max-width: 768px) {.DesktopOnly {display: none !important;}}
@media (min-width: 769px) {.MobileOnly {display: none !important;}}
.flex {display: flex;}
.flex-col {flex-direction: column;}
.flex-wrap {flex-wrap: wrap;}
.items-center {align-items: center;}
.justify-center {justify-content: center;}
.justify-between {justify-content: space-between;}
.gap-1 {gap: 8px;}
.gap-2 {gap: 16px;}
.gap-3 {gap: 24px;}
.gap-4 {gap: 32px;}

/* AI updated, model - Claude Sonnet 4.5 */
.Intro {text-align: center; padding: 60px 20px 40px;}
.Intro h1 {font-size: 42px; line-height: 120%; margin-bottom: 16px; font-weight: bold;}
.Intro .Claim {font-size: 18px; opacity: 0.85; margin: 0;}
.VideosSection {padding: 40px 20px;}
.VideosGrid {display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px;}
.VideoCard {background: rgba(255, 255, 255, 0.05); border-radius: 12px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.3s ease; text-decoration: none; color: inherit; display: block;}
.VideoCard:hover {transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3); border-color: rgba(255, 255, 255, 0.2);}
.VideoCard .VideoThumb {position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; background: #000;}
.VideoCard .VideoThumb img {width: 100%; height: 100%; object-fit: cover;}
.VideoDuration {position: absolute; bottom: 8px; right: 8px; background: rgba(0, 0, 0, 0.8); color: #ffffff; padding: 4px 8px; border-radius: 4px; font-size: 12px; font-weight: 600;}
.PlayOverlay {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; background: rgba(255, 255, 255, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; backdrop-filter: blur(10px); transition: all 0.3s ease;}
.VideoCard:hover .PlayOverlay {background: var(--primary); transform: translate(-50%, -50%) scale(1.1);}
.VideoCard .VideoInfo {padding: 16px;}
.VideoCard .VideoInfo h3 {margin: 0; font-size: 16px; font-weight: 600; line-height: 1.4;}
.Info {padding: 60px 20px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px;}
.InfoBox {background: rgba(255, 255, 255, 0.05); border-radius: 12px; padding: 32px; border: 1px solid rgba(255, 255, 255, 0.1);}
.InfoBox h2 {font-size: 28px; margin: 0 0 16px 0; font-weight: bold;}
.InfoBox p {margin: 0; font-size: 16px; line-height: 1.6; opacity: 0.9;}


@media (max-width: 1023px) {
	.Intro h1 {font-size: 32px;}
	.Intro .Claim {font-size: 16px;}
	.VideosGrid {grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px;}
	.Info {grid-template-columns: 1fr; gap: 24px;}
}

@media (max-width: 767px) {
	.Intro {padding-top: 40px; padding-bottom: 32px;}
	.Intro h1 {font-size: 28px; line-height: 1.3;}
	.Intro .Claim {font-size: 15px;}
	.VideosSection {padding: 32px 20px;}
	.VideosGrid {grid-template-columns: 1fr; gap: 16px;}
	.Info {padding: 40px 20px;}
	.InfoBox {padding: 24px;}
	.InfoBox h2 {font-size: 24px;}
	.InfoBox p {font-size: 15px;}
}/* AI updated, model - Claude Sonnet 4.5 */
#Header {padding: 16px 0; background: var(--bg); position: sticky; top: 0; left: 0; right: 0; border-bottom: 1px solid var(--border); z-index: 100; margin-bottom: 60px; backdrop-filter: blur(10px);}
#Header .Container {display: flex; align-items: center; justify-content: space-between; gap: 20px;}
#Header .Logo img {height: 60px; width: auto;}
#Header nav {display: flex; align-items: center; gap: 8px; flex: 1; justify-content: center;}
#Header nav a:not(.Button) {font-weight: 500; font-size: 15px; line-height: normal; text-decoration: none; color: var(--text); padding: 10px 16px; border-radius: 8px;}
#Header .BurgerMenu {display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 101; position: relative;}
#Header .BurgerMenu svg {width: 28px; height: 28px; fill: var(--text);}
#Header .BurgerMenu rect {transition: transform 0.25s ease, opacity 0.25s ease; transform-origin: 12px 12px;}
#Header .BurgerMenu.Active rect:nth-child(1) {transform: translate(0,4px) rotate(45deg);}
#Header .BurgerMenu.Active rect:nth-child(2) {opacity: 0;}
#Header .BurgerMenu.Active rect:nth-child(3) {transform: translate(0,-7px) rotate(-45deg);}

@media (min-width: 1024px) {
	.MenuOverlay {display: none;}
}

/* AI updated, model - Claude Sonnet 4.5 */
@media (max-width: 1023px) {
	#Header {padding: 16px 0; margin-bottom: 40px;}
	#Header .Logo img {height: 48px;}
	#Header nav {position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--bg-light); flex-direction: column; justify-content: flex-start; padding: 80px 0 20px; gap: 0; box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5); transition: right 0.3s ease; border-left: 1px solid var(--border); z-index: 100;}
	#Header nav.Active {right: 0;}
	#Header nav a:not(.Button) {padding: 16px 24px; font-size: 15px; width: 100%; text-align: left; border-bottom: 1px solid var(--border); border-radius: 0;}
	#Header nav a:not(.Button):hover {background: var(--hover-bg);}
	#Header .Button {margin: 16px 24px 0; width: calc(100% - 48px);}
	#Header .BurgerMenu {display: block;}
	#Header .MenuOverlay {display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.6); z-index: 99; opacity: 0; transition: opacity 0.3s ease;}
	#Header .MenuOverlay.Active {display: block; opacity: 1;}
}

/* AI updated, model - Claude Sonnet 4.5 */
@media (max-width: 767px) {
	#Header {padding: 14px 0; margin-bottom: 24px;}
	#Header .Logo img {height: 42px;}
	#Header nav {width: 260px;}
	#Header .BurgerMenu svg {width: 26px; height: 26px;}
}