:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-contrast: #1d4ed8;
    --primary-contrast-hover: #1e40af;
    --secondary: #1f2937;
    --secondary-dark: #111827;
    --bg-black: #000000;
    --bg-gray: #0b0b0b;
    --bg-dark: #000000;
    --text-main: #ffffff;
    --text-muted: #cbd5e1;
    --text-muted-on-dark: #e2e8f0;
    --border-color: #1a1a1a;
    --footer-accent: #ffffff;
    --footer-muted: #94a3b8;
    --font-main: 'BebasNeue', system-ui, -apple-system, sans-serif;
    --font-title: 'BebasNeue', sans-serif;
    --max-width: 1200px;
}

@font-face {
    font-family: 'BebasNeue';
    src: url('/asset/Fonts/BebasNeue-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background: var(--bg-black);
    line-height: 1.5;
    overflow-x: hidden;
}

body.Landing-Page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.Landing-Page main {
    flex: 1;
}

li::marker {
    content: "";
}

ul,
li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

amp-img {
    display: block;
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 3rem 0;
    width: 100%;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.w-full {
    width: 100%;
}

.w-10 {
    width: 2.5rem;
}

.h-10 {
    height: 2.5rem;
}

.overflow-hidden {
    overflow: hidden;
}

.max-w-900 {
    max-width: 900px;
}

.max-w-prose {
    max-width: 75ch;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.flex-1 {
    flex: 1;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.max-w-prose {
    max-width: 900px;
}

.content-body ul,
.content-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-body li {
    margin-bottom: 0.5rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.content-body h2 {
    color: #3b82f6;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.content-body h3 {
    color: #10b981;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}

.content-body h4 {
    color: #f59e0b;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.content-body h5 {
    color: #8b5cf6;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.hero {
    width: 100%;
    max-height: clamp(220px, 50vh, 520px);
    object-fit: cover;
    display: block;
}

.bg-black {
    background: var(--bg-black);
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.d-grid {
    display: grid;
}

.d-block {
    display: block;
}

.aspect-1-1 {
    aspect-ratio: 1/1;
}

/*Flex&Grid*/
.d-flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

.p-0 {
    padding: 0;
}

.p-2 {
    padding: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-8 {
    padding: 2rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.m-0 {
    margin: 0;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

/*TypographyUtilities*/
.font-title {
    font-family: var(--font-title);
    letter-spacing: 1px;
    font-weight: 400;
}

.font-bold {
    font-weight: 700;
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-primary {
    color: var(--primary);
}

.text-muted {
    color: var(--text-muted);
}

.text-muted-on-dark {
    color: var(--text-muted-on-dark);
}

.text-white {
    color: #fff;
}

.opacity-7 {
    opacity: 0.7;
}

.bg-gray {
    background-color: var(--bg-gray);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.bg-primary {
    background-color: var(--primary);
}

.border-b {
    border-bottom: 1px solid var(--border-color);
}

.border-t {
    border-top: 1px solid var(--border-color);
}

.border-gray-800 {
    border-color: #1f2937;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.payment-card {
    width: 100%;
    max-width: 100px;
    padding: 1rem;
}

.grid-cols-4-mobile {
    display: flex;
    flex-wrap: wrap;
}

.icon-social {
    width: 32px;
    height: auto;
}

.icon-browser {
    width: 48px;
    height: 48px;
}

.icon-payment {
    max-width: 60px;
    height: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-family: var(--font-title);
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

.btn-primary {
    background: var(--primary-contrast);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-contrast-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary);
    color: #fff;
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.transition {
    transition: all 0.3s ease;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-contrast);
    color: white;
    padding: 8px;
    z-index: 9999;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

@media(max-width:640px) {
    .section {
        padding: 1.5rem 0;
    }

    .text-4xl {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }

    .grid-2-mobile {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .grid-2-mobile .w-archive-col,
    .grid-2-mobile .w-author-post-col {
        width: 100%;
    }

    .md-min-w-0 {
        min-width: 0;
    }
}

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.pt-6 {
    padding-top: 1.5rem;
}

.pb-1 {
    padding-bottom: 0.25rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.gap-6 {
    gap: 1.5rem;
}

.border {
    border: 1px solid var(--border-color);
}

.bg-white {
    background: #fff;
}

.uppercase {
    text-transform: uppercase;
}

.italic {
    font-style: italic;
}

.underline {
    text-decoration: underline;
}

.hover:text-primary:hover {
    color: var(--primary);
}

.hover:underline:hover {
    text-decoration: underline;
}

.relative {
    position: relative;
    z-index: 1;
}

/* Footer utilities */
.text-footer-accent {
    color: var(--footer-accent);
}

.text-footer-muted {
    color: var(--footer-muted);
}

.bg-footer-section {
    background-color: #1a1a1a;
}

.footer-section-title {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted-on-dark);
}

.footer-bullet {
    color: var(--footer-accent);
    font-size: 0.875rem;
    opacity: 0.9;
}

.footer-link {
    text-decoration: none;
    padding: 6px 0;
    min-height: 44px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--footer-accent);
    text-decoration: underline;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-input {
    border-color: #333;
}

.footer-input::placeholder {
    color: #64748b;
}

.footer-input:focus {
    border-color: var(--footer-accent);
    outline: none;
}

.footer-brand-link {
    color: var(--footer-accent);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-underline-offset: 2px;
    transition: color 0.2s, text-decoration-color 0.2s;
}

.footer-brand-link:hover {
    color: #fff;
    text-decoration-color: var(--footer-accent);
}

.footer-brand-link-visible {
    font-weight: 600;
}