*,
::before,
::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: currentColor;
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    font-family: 'Open Sans', ui-sans-serif, system-ui, sans-serif;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    line-height: inherit;
    background-color: #0a0f1a;
    color: #ffffff;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: inherit;
}

img,
svg,
video,
canvas {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

button {
    cursor: pointer;
    background-color: transparent;
    background-image: none;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #00a8e8;
    --color-secondary: #007ea7;
    --color-accent: #00d4aa;
    --color-dark: #0a0f1a;
    --color-darker: #060a12;
    --color-light: #ffffff;
    --color-gray: #8b9cb5;
    --color-overlay: rgba(0, 168, 232, 0.85);
    --font-display: 'Oswald', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

h1 {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1.1;
}

h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
}

p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray);
}

section {
    padding: 6rem 2rem;
}

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

.section-title {
    margin-bottom: 2.5rem;
    text-align: center;
}

.section-subtitle {
    color: var(--color-gray);
    margin-bottom: 2rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.row {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}

.row::after {
    content: "";
    display: table;
    clear: both;
}

.col {
    float: left;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.col-half {
    width: 50%;
}

.col-third {
    width: 33.333%;
}

.col-quarter {
    width: 25%;
}

.col-full {
    width: 100%;
}

.overlay-section {
    position: relative;
    background-size: cover;
    background-position: center;
}

.overlay-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-overlay);
    z-index: 1;
}

.overlay-section>* {
    position: relative;
    z-index: 2;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo,
.sidebar-logo,
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.75rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-light);
}

.header-nav .nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--color-gray);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-light);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 6px;
    font-size: 0.9375rem;
    text-decoration: none;
    border: 2px solid transparent;
}

.primary-button {
    background: var(--color-primary);
    color: var(--color-light);
    border-color: var(--color-primary);
}

.primary-button:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}

.secondary-button {
    background: transparent;
    color: var(--color-light);
    border-color: var(--color-gray);
}

.secondary-button:hover {
    border-color: var(--color-light);
}

.large-button {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--color-light);
}

.sidebar {
    position: fixed;
    right: -280px;
    top: 0;
    height: 100vh;
    width: 280px;
    background: var(--color-darker);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-close {
    background: none;
    border: none;
    color: var(--color-gray);
    cursor: pointer;
    padding: 0.5rem;
}

.sidebar-close:hover {
    color: var(--color-light);
}

.sidebar-nav {
    flex: 1;
}

.sidebar-nav .nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-nav .nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 6px;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
    background: rgba(0, 168, 232, 0.1);
}

.nav-auth {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--color-gray);
}

.social-links a:hover {
    color: var(--color-primary);
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-plaza {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-darker) 100%);
    padding-top: 6rem;
    overflow: hidden;
}

.video-plaza::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%2300a8e8" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 200px;
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 168, 232, 0.2);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-title {
    margin-bottom: 1.5rem;
    color: var(--color-light);
}

.hero-title span {
    color: var(--color-primary);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stats-hub {
    background: var(--color-darker);
    padding: 4rem 2rem;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stats-hub .stat-item {
    flex: 1;
    min-width: 200px;
}

.content-spotlight {
    background: var(--color-dark);
}

.content-spotlight .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.video-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.video-card {
    background: var(--color-darker);
    border-radius: 12px;
    overflow: hidden;
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    background: #1a1f2e;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
}

.video-thumbnail:hover .play-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button svg {
    fill: white;
    margin-left: 4px;
}

.video-duration {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

.video-info {
    padding: 1.25rem;
}

.video-category {
    display: inline-block;
    background: rgba(0, 168, 232, 0.2);
    color: var(--color-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.video-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-light);
    margin-bottom: 0.5rem;
}

.video-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--color-gray);
}

.media-vault {
    background: var(--color-darker);
}

.categories-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.category-card {
    background: var(--color-dark);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
}

.category-card:hover {
    background: rgba(0, 168, 232, 0.1);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-name {
    font-weight: 600;
    color: var(--color-light);
    margin-bottom: 0.5rem;
}

.category-count {
    font-size: 0.875rem;
    color: var(--color-gray);
}

.pricing-zone {
    background: var(--color-dark);
}

.pricing-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: var(--color-darker);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid transparent;
}

.pricing-card.featured {
    border-color: var(--color-primary);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.plan-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.plan-description {
    color: var(--color-gray);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.plan-price {
    margin-bottom: 1.5rem;
}

.price-currency {
    font-size: 1.25rem;
    vertical-align: top;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-period {
    color: var(--color-gray);
    font-size: 0.875rem;
}

.plan-features {
    text-align: left;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-gray);
}

.plan-features li svg {
    flex-shrink: 0;
    color: var(--color-accent);
}

.plan-features li:last-child {
    border-bottom: none;
}

.pricing-card .action-button {
    width: 100%;
}

.expert-lounge {
    background: var(--color-darker);
}

.instructors-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.instructor-card {
    background: var(--color-dark);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
}

.instructor-image {
    aspect-ratio: 1;
    background: #1a1f2e;
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-info {
    padding: 1.5rem;
}

.instructor-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-light);
    margin-bottom: 0.25rem;
}

.instructor-title {
    color: var(--color-primary);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.instructor-bio {
    font-size: 0.875rem;
    color: var(--color-gray);
    line-height: 1.6;
}

.help-station {
    background: var(--color-dark);
}

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

.faq-item {
    background: var(--color-darker);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    color: var(--color-light);
    font-size: 1.0625rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-gray);
    line-height: 1.7;
}

.join-point {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    text-align: center;
}

.join-point h2 {
    color: white;
    margin-bottom: 1rem;
}

.join-point p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.connect-area {
    background: var(--color-darker);
}

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-grid::after {
    content: "";
    display: table;
    clear: both;
}

.contact-info-col {
    float: left;
    width: 40%;
    padding-right: 3rem;
}

.contact-form-col {
    float: left;
    width: 60%;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 168, 232, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary);
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-light);
    margin-bottom: 0.25rem;
}

.contact-details p,
.contact-details a {
    color: var(--color-gray);
    font-size: 0.9375rem;
}

.contact-details a:hover {
    color: var(--color-primary);
}

.contact-form {
    background: var(--color-dark);
    padding: 2.5rem;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-light);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--color-darker);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-light);
    font-size: 1rem;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.form-success {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    background: var(--color-dark);
}

.auth-container {
    width: 100%;
    max-width: 440px;
}

.auth-card {
    background: var(--color-darker);
    padding: 3rem;
    border-radius: 16px;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.auth-header p {
    font-size: 1rem;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--color-gray);
    font-size: 0.875rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--color-gray);
}

.auth-footer a {
    color: var(--color-primary);
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
}

.forgot-link {
    color: var(--color-primary);
    font-size: 0.875rem;
}

.dashboard-section {
    padding-top: 6rem;
    min-height: 100vh;
    background: var(--color-dark);
}

.dashboard-header {
    background: var(--color-darker);
    padding: 2rem;
    margin-bottom: 2rem;
}

.dashboard-header h1 {
    font-size: 2rem;
}

.dashboard-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
}

.dashboard-sidebar {
    background: var(--color-darker);
    border-radius: 12px;
    padding: 1.5rem;
    height: fit-content;
}

.dashboard-nav li {
    margin-bottom: 0.5rem;
}

.dashboard-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--color-gray);
}

.dashboard-nav a:hover,
.dashboard-nav a.active {
    background: rgba(0, 168, 232, 0.1);
    color: var(--color-light);
}

.dashboard-content {
    background: var(--color-darker);
    border-radius: 12px;
    padding: 2rem;
}

.user-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.user-stat-card {
    background: var(--color-dark);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.user-stat-card .stat-number {
    font-size: 2rem;
}

.site-footer {
    background: var(--color-darker);
    padding-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-about {
    color: var(--color-gray);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray);
}

.footer-social a:hover {
    background: var(--color-primary);
    color: white;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-light);
    margin-bottom: 1.25rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-gray);
    font-size: 0.9375rem;
}

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

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--color-gray);
    font-size: 0.9375rem;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-primary);
}

.footer-contact a {
    color: var(--color-gray);
}

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

.footer-bottom {
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: var(--color-gray);
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 0.5rem;
    color: var(--color-gray);
    font-size: 0.875rem;
}

.footer-legal a {
    color: var(--color-gray);
}

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

.footer-legal .separator {
    opacity: 0.5;
}

.page-header {
    background: var(--color-darker);
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    max-width: 600px;
    margin: 0 auto;
}

.legal-section {
    padding-top: 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-light);
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--color-light);
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    color: var(--color-gray);
    margin-bottom: 0.5rem;
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

.legal-updated {
    color: var(--color-gray);
    font-style: italic;
    margin-bottom: 2rem;
}

.zigzag-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.zigzag-row:nth-child(odd) .zigzag-content {
    order: 1;
}

.zigzag-row:nth-child(odd) .zigzag-image {
    order: 2;
}

.zigzag-row:nth-child(even) .zigzag-content {
    order: 2;
}

.zigzag-row:nth-child(even) .zigzag-image {
    order: 1;
}

.zigzag-content,
.zigzag-image {
    flex: 1;
}

.zigzag-image img {
    border-radius: 16px;
}

@media (max-width: 768px) {
    section {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header-actions .action-button {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .video-grid,
    .categories-grid,
    .pricing-grid,
    .instructors-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-col,
    .contact-form-col {
        float: none;
        width: 100%;
        padding-right: 0;
    }

    .contact-info-col {
        margin-bottom: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .user-stats {
        grid-template-columns: 1fr;
    }

    .zigzag-row {
        flex-direction: column;
        gap: 2rem;
    }

    .zigzag-row:nth-child(odd) .zigzag-content,
    .zigzag-row:nth-child(odd) .zigzag-image,
    .zigzag-row:nth-child(even) .zigzag-content,
    .zigzag-row:nth-child(even) .zigzag-image {
        order: unset;
    }
}

@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instructors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.text-center {
    text-align: center;
}

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

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
/* Fix: prevent content overflow on mobile */
html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    width: 100%;
}

.site-header {
    max-width: 100vw;
}

.header-container {
    max-width: 1400px;
    width: 100%;
    overflow: hidden;
}

.video-grid,
.categories-grid,
.pricing-grid,
.instructors-grid,
.stats-grid {
    max-width: 100%;
}

.video-card,
.category-card,
.instructor-card,
.pricing-card {
    min-width: 0;
    overflow: hidden;
}

.video-thumbnail img,
.instructor-image img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .video-plaza {
        overflow-x: hidden;
        padding-top: 5rem;
    }

    .hero-content {
        overflow-x: hidden;
        max-width: 100%;
    }

    section {
        overflow-x: hidden;
    }
}
