*,
*::before,
*::after {
    box-sizing: border-box;
    font-family: var(--font-sans);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-sans);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --rotation: 2.5rad;
    --primary: #d10000;
    --primary-glow: rgba(209, 0, 0, 0.15);
    --bg: #050505;
    --card-bg: #0a0a0a;
    --nav-height: 3.5rem;
    --nav-bg: rgba(10, 10, 10, 0.75);
    --border-color: rgba(255, 255, 255, 0.08);
    --gradient-primary: linear-gradient(90deg, #d10000, #ff4d4d);
    --gradient-dark: linear-gradient(to right, #111, #222);
    --glass-bg: rgba(15, 15, 15, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow-primary: 0 10px 30px rgba(209, 0, 0, 0.2);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.3);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --scroll-position: 0%;
    --font-title: 'Lexend', sans-serif;
    --font-body: 'Source Code Pro', monospace;
    --font-sans: 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-mono: 'Source Code Pro', monospace;
}

h1, h2, h3, h4, h5, h6, 
.nav-link, .nav-btn, 
.feature-title, .card h2, 
.price, .feature-label, 
.included-section h3, 
.download-btn {
    font-family: var(--font-title);
    font-weight: 400;
}

.nav-link, .nav-btn, .search-btn {
    font-family: var(--font-body);
    font-weight: 400;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: system-ui;
}

body {
  min-block-size: 100dvb;
  margin: 0;
  padding: 1rem;
  display: grid;
  grid-template-rows: 1fr auto;
  background: rgb(23 24 29);
}

main {
  display: grid;
  place-content: center;
  padding: 1rem 2rem;
}

main .btn {
  color: white;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-body);
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
}

main .btn:hover {
  filter: brightness(125%);
  opacity: 1;
}

main .btn:active {
  transition: transform .1s;
  transform: scale(.95);
}

main .btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: .2;
  filter: blur(2px);
}

footer {
  padding: 3rem 2rem;
  border: 1px solid #000;
  border-radius: 100vi;
  border: 1px solid rgb(234 178 84);
  color: rgb(234 178 84);
}

.description, 
.feature-description, 
.feature-value, 
.feature-detail, 
.included-list li, 
.card p:not(.price),
.footer-content {
    font-family: var(--font-body);
    font-weight: 400;
}

@keyframes border-glow {
    0% {
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    }
    100% {
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-30px) translateX(20px);
    }
    50% {
        transform: translateY(0) translateX(40px);
    }
    75% {
        transform: translateY(30px) translateX(20px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.6;
        filter: blur(80px);
    }
    50% {
        opacity: 0.8;
        filter: blur(100px);
    }
    100% {
        opacity: 0.6;
        filter: blur(80px);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

body {
    min-height: 100vh;
    background: var(--bg);
    color: white;
    position: relative;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.5;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle at calc(20% + var(--scroll-position)) 10%, rgba(255, 0, 0, 0.05), transparent 20%),
        radial-gradient(circle at calc(80% - var(--scroll-position)) 90%, rgba(209, 0, 0, 0.06), transparent 30%),
        radial-gradient(circle at calc(40% - var(--scroll-position)) 60%, rgba(255, 0, 0, 0.04), transparent 25%);
    pointer-events: none;
    z-index: -1;
    transition: background-position 0.3s ease;
}

.cursor-glow {
    display: none;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
}

.stats-section {
    display: flex;
    justify-content: center;
    gap: 200px;
    padding: 40px 80px;
    background: #000000;
    border-radius: 16px;
    margin: 60px auto;
    margin-top: -50px; 
    max-width: 1400px;
    border: 1px solid rgba(128, 128, 128, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    font-family: 'Lexend', sans-serif;
}

.stat-container {
    text-align: center;
    position: relative;
    padding: 10px 0;
}

.stat-container:not(:last-child):after {
    content: '';
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    width: 1px;
    background: rgba(128, 128, 128, 0.2);
}

.stat-number {
    font-family: 'Lexend', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.9rem;
    color: #9ca3af;
    letter-spacing: 1.5px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .stats-section {
        flex-direction: column;
        gap: 40px;
        padding: 30px 40px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-container:not(:last-child):after {
        display: none;
    }
}

nav {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--nav-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 1rem;
    text-decoration: none;
    height: 40px;
    background-color: transparent;
    padding: 0;
    border: none;
}

.logo-img {
    height: 36px;
    width: auto;
    margin-right: 0px;
    position: relative;
    top: 0;
}
.logo-img {
    width: 220%;
    height: 50%;
}

.logo-text {
    display: block;
    color: white;
    font-family: 'Lexend', sans-serif;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.02em;
    text-transform: none;
    background: linear-gradient(to bottom, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: -4px;
    position: relative;
    top: -0.5px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-body);
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link.active:hover::after {
    width: 30px;
}

.nav-btn {
    color: white;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-body);
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn .material-icons {
    font-size: 16px;
    line-height: 1;
    display: inline-block;
}

.nav-btn:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.status-btn {
    background: rgba(39, 174, 96, 0.2);
}

.status-btn i {
    color: #27AE60;
}

.bypass-btn {
    background: rgba(252, 59, 59, 0.2);
}

.bypass-btn i {
    color: var(--primary);
}

.discord-btn {
    background: rgba(150, 0, 0, 0.15);
    border-color: rgba(150, 0, 0, 0.2);
    padding: 6px 12px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
}

.discord-btn:hover {
    background: rgba(150, 0, 0, 0.25);
    border-color: rgba(150, 0, 0, 0.3);
    box-shadow: 0 5px 15px rgba(150, 0, 0, 0.15);
}

.nav-right .discord-nav-btn {
    color: white !important;
    background: rgba(150, 0, 0, 0.2);
}

.nav-right .discord-nav-btn:hover {
    background: rgba(150, 0, 0, 0.3) !important;
}

.nav-right .discord-nav-btn i {
    color: white !important;
}

.login-btn, .buy-key-btn {
    background: rgba(150, 0, 0, 0.15);
    border-color: rgba(150, 0, 0, 0.2);
    padding: 6px 12px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
}

.login-btn:hover, .buy-key-btn:hover {
    background: rgba(150, 0, 0, 0.25);
    border-color: rgba(150, 0, 0, 0.3);
    box-shadow: 0 5px 15px rgba(150, 0, 0, 0.15);
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: calc(var(--nav-height) + 4rem);
    position: relative;
    z-index: 1;
}

.warning-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.warning {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.warning .material-icons {
    font-size: 18px;
    color: var(--primary);
}

.hero {
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    margin-top: 1rem;
    position: relative;
}

.title-container {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.title-container h1 {
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.1;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
    letter-spacing: -0.03em;
    font-family: var(--font-title);
}

.title-container .accent {
    background: linear-gradient(90deg, #d10000, #ff4d4d);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s 0.2s ease forwards, gradientShift 5s ease infinite;
    opacity: 0;
    transform: translateY(20px);
}

.description {
    font-size: 1.2rem;
    color: #888888;
    max-width: 700px;
    line-height: 1.7;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 0.8s 0.4s ease forwards;
    opacity: 0;
    transform: translateY(20px);
    font-weight: 400;
}

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

.video-section {
    width: 100%;
    max-width: 1200px;
    margin: 3rem auto 5rem;
    position: relative;
    animation: fadeInUp 0.8s 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #000000;
    border: 1px solid rgba(209, 0, 0, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(209, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.video-container:hover {
    transform: scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 50px rgba(209, 0, 0, 0.2);
}

.video-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent 20%, transparent 80%, rgba(0, 0, 0, 0.2));
    z-index: 1;
    pointer-events: none;
}

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

.screenshot-gallery {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    perspective: 1000px;
    height: 400px;
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.screenshot {
    position: absolute;
    width: 100%;
    height: 33.33%;
    transform: translateZ(calc(var(--index) * -100px));
}

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

.card-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 2rem 0 8rem;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

@keyframes glassGlow {
    0% {
        box-shadow: 0 0 20px rgba(209, 0, 0, 0.1), 0 0 30px rgba(209, 0, 0, 0.05);
        border-color: rgba(209, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(209, 0, 0, 0.15), 0 0 50px rgba(209, 0, 0, 0.1);
        border-color: rgba(209, 0, 0, 0.3);
    }
    100% {
        box-shadow: 0 0 20px rgba(209, 0, 0, 0.1), 0 0 30px rgba(209, 0, 0, 0.05);
        border-color: rgba(209, 0, 0, 0.2);
    }
}

.card {
    position: relative;
    height: auto;
    min-height: 650px;
    width: 350px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    align-items: stretch;
    background: #000000;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.07) 50%,
        rgba(255, 255, 255, 0.03) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    background: rgba(40, 40, 40, 0.5);
    box-shadow: 
        0 0 50px rgba(255, 255, 255, 0.3),
        0 0 100px rgba(255, 255, 255, 0.2),
        inset 0 0 50px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

.card:hover::before {
    opacity: 1;
}

.card-content {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.card-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.card:hover .card-icon {
    transform: scale(1.1);
}

.card h2 {
    font-size: 1.8rem;
    margin: 0 0 1rem;
    color: white;
    transition: all 0.3s ease;
    font-weight: 700;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 2;
}

.card p {
    color: #888888;
    line-height: 1.5;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.card:hover p {
    color: #aaaaaa;
}

.card p.price {
    font-size: 4.5rem;
    font-weight: 800;
    margin: 0.5rem 0;
    color: white;
    line-height: 1;
    letter-spacing: -0.03em;
}

.card-features {
    margin: 0 0 1.5rem;
    text-align: left;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.card-features h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ddd;
    text-align: left;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.feature-label {
    color: #888888;
    font-weight: 500;
}

.feature-value {
    color: white;
    font-weight: 600;
    text-align: right;
}

.feature-detail {
    color: #aaa;
    font-weight: normal;
    opacity: 0.7;
}

.feature-highlight {
    color: var(--primary);
    font-weight: 700;
}

.included-section {
    position: relative;
    z-index: 2;
}

.included-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ddd;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.included-list {
    list-style: none;
    padding: 0;
}

.included-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #888888;
    line-height: 1.4;
    position: relative;
}

.included-list .material-icons.check {
    color: var(--primary);
    font-size: 1rem;
    min-width: 1rem;
    margin-top: 0.2rem;
}

.download-btn {
    position: relative;
    z-index: 2;
}

.download-btn {
    padding: 12px 20px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    margin-top: auto;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    background: var(--primary);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(209, 0, 0, 0.3);
    transform: translateY(-5px);
}

.download-btn .material-icons {
    font-size: 18px;
}

.download-btn.red-btn {
    background: var(--primary);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(209, 0, 0, 0.3);
}

.download-btn.red-btn:hover {
    background: #ff3333;
    box-shadow: 0 10px 30px rgba(209, 0, 0, 0.4);
}

#card {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    transform: translateY(-10px) scale(1.03);
    z-index: 2;
    transition: all 0.3s ease;
}

#card:hover {
    transform: translateY(-15px) scale(1.03);
    background: rgba(50, 50, 50, 0.5);
    box-shadow: 
        0 0 70px rgba(255, 255, 255, 0.35),
        0 0 120px rgba(255, 255, 255, 0.25),
        inset 0 0 60px rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.card:first-child .card-icon .material-icons {
    color: #ff4d4d;
    font-size: 3.5rem;
}

.code-brackets {
    color: #ff4d4d;
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 10px;
}

.card:last-child .card-icon .material-icons {
    color: #ff4d4d;
    font-size: 3.5rem;
}

.blur-circle {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.blur-circle-1 {
    width: 400px;
    height: 400px;
    background: rgba(209, 0, 0, 0.15);
    top: 10%;
    right: 10%;
    animation: pulse 8s infinite alternate;
}

.blur-circle-2 {
    width: 300px;
    height: 300px;
    background: rgba(209, 0, 0, 0.12);
    bottom: 20%;
    left: 10%;
    animation: pulse 10s infinite alternate-reverse;
}

.blur-circle-3 {
    width: 250px;
    height: 250px;
    background: rgba(209, 0, 0, 0.08);
    top: 40%;
    left: 30%;
    animation: pulse 12s infinite alternate;
}

.blur-circle-4 {
    width: 350px;
    height: 350px;
    background: rgba(209, 0, 0, 0.1);
    bottom: 30%;
    right: 25%;
    animation: pulse 15s infinite alternate-reverse;
}

.btn {
    padding: 1.25ch 2.5ch;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 0.5ch;
    text-decoration: none;
    font-weight: lighter;
    position: relative;
    transition: filter .35s, transform .35s, opacity .35s;
    opacity: 0.9;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn i {
    font-size: 1.1em;
    color: inherit;
}

.btn:hover {
    filter: brightness(125%);
    opacity: 1;
}

.btn:active {
    transition: transform .1s;
    transform: scale(.95);
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: .2;
    filter: blur(2px);
}

.hero-btn {
    font-size: 13px;
    font-weight: 500;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.01em;
}

.version-badge {
    display: inline-block;
    background: rgba(23, 23, 23, 0.5);
    border: 1px solid rgba(90, 90, 90, 0.2);
    border-radius: 4px;
    padding: 2px 8px;
    backdrop-filter: blur(10px);
    margin: 0.1rem 0;
}
.version-badge .description {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-btn.primary-btn {
    background: linear-gradient(90deg, #d10000, #ff4d4d);
    background-size: 200% auto;
    border: none;
    box-shadow: 0 8px 25px rgba(209, 0, 0, 0.3);
    animation: gradientShift 5s ease infinite;
}

.hero-btn.primary-btn:hover {
    background: linear-gradient(90deg, #b80000, #ff3333);
    box-shadow: 0 12px 30px rgba(209, 0, 0, 0.4);
    transform: translateY(-2px);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.hero-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.hero-btn:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.hero-btn .material-icons {
    font-size: 20px;
}

.button-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 2.5rem 0;
    animation: fadeInUp 0.8s 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@media screen and (max-width: 1200px) {
    nav {
        width: 95%;
        padding: 0 1rem;
    }
    
    .nav-left, .nav-right {
        gap: 0.75rem;
    }
    
    .logo {
        margin-right: 1rem;
    }
    
    .search-btn {
        min-width: 150px;
    }
}

@media screen and (max-width: 1024px) {
    .card-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin-bottom: 6rem;
    }
    
    .card {
        width: 100%;
        max-width: 400px;
        min-height: 500px;
    }
    
    #card {
        transform: none;
        z-index: 1;
    }
    
    #card:hover, #card.hovered {
        transform: translateY(-10px) scale(1.02);
    }
}

@media screen and (max-width: 900px) {
    nav {
        padding: 0 1.5rem;
    }
    
    .nav-left {
        width: 30%;
    }
    
    .nav-right {
        width: 70%;
        gap: 0.75rem;
    }
    
    .nav-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    .title-container h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .card-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .card {
        width: 100%;
        max-width: 400px;
        padding: 1.5rem;
        min-height: auto;
    }
    
    .card p.price {
        font-size: 3.5rem;
    }
    
    .hero-btn {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-right {
        gap: 2rem;
    }
}

@media screen and (max-width: 600px) {
    .title-container h1 {
        font-size: 2.5rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .button-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .nav-btn span {
        display: none;
    }
    
    .nav-btn {
        padding: 8px;
    }
    
    .nav-right {
        gap: 0.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
}

i.fas, i.fab, i.far, i.fa {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "FontAwesome" !important;
    font-style: normal;
    display: inline-block;
}

i.fas {
    font-weight: 900;
}

i.fab {
    font-family: "Font Awesome 6 Brands", "FontAwesome" !important;
    font-weight: 400;
}

i.far {
    font-weight: 400;
}

.btn i {
    display: inline-block;
    line-height: 1;
}

.material-icons {
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    vertical-align: middle;
    width: auto;
    height: auto;
    font-weight: normal;
}

.warning .material-icons {
    font-size: 18px;
    color: var(--primary);
}

.card-icon .material-icons {
    font-size: 3rem;
    color: var(--primary);
}

.card button .material-icons {
    font-size: 20px;
}

footer {
    width: 100%;
    padding: 3rem 2rem;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    margin-top: 4rem;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(252, 59, 59, 0.3) 50%, 
        transparent 100%);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.footer-logo {
    height: 36px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo .logo-img {
    height: 30px;
    margin-right: 4px;
}

.footer-logo .logo-text {
    margin-left: -4px;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-copyright {
    color: #888888;
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.footer-link {
    color: #888888;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    font-weight: 400;
    font-family: var(--font-body);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-family: var(--font-body);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-status:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.status-icon {
    color: #27AE60;
    font-size: 16px;
}

@media screen and (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-left, .footer-right {
        align-items: center;
    }
    
    .footer-links, .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media screen and (max-width: 600px) {
    .footer-links, .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
}

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

.hero-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.hero-btn:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.features-section {
    width: 100%;
    max-width: 1200px;
    padding: 6rem 2rem 4rem;
    margin: 3rem auto;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-family: var(--font-title);
    font-weight: 600;
    background: linear-gradient(45deg, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
    letter-spacing: -0.03em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-card {
    background: #000000;
    border: 1px solid rgba(128, 128, 128, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg,
        rgba(209, 0, 0, 0.03) 0%,
        rgba(209, 0, 0, 0.07) 50%,
        rgba(209, 0, 0, 0.03) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(39, 2, 2, 0.5);
    box-shadow: inset 0 0 50px rgba(255, 8, 8, 0.2);
    border: 1px solid rgba(250, 5, 5, 0.4);
    backdrop-filter: blur(5px);
}

.feature-icon {
    position: relative;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.3s ease;
    z-index: 2;
}

.feature-icon::before {
    display: none;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card:hover .feature-icon::before {
    opacity: 0;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-title);
    font-weight: 500;
    color: white;
    letter-spacing: -0.02em;
    text-align: left;
}

.feature-description {
    color: #888888;
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 400;
    text-align: left;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

#main {
    background: var(--primary);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(252, 59, 59, 0.3);
}

#main:hover {
    background: #ff5252;
    box-shadow: 0 10px 30px rgba(252, 59, 59, 0.4);
}

@media screen and (max-width: 1200px) {
    nav {
        width: 95%;
        padding: 0 1rem;
    }
    
    .nav-left, .nav-right {
        gap: 0.75rem;
    }
    
    .logo {
        margin-right: 1rem;
    }
    
    .search-btn {
        min-width: 150px;
    }
}

@media screen and (max-width: 992px) {
    .search-btn {
        min-width: auto;
    }
    
    .search-text {
        display: none;
    }
    
    .search-shortcut {
        display: none;
    }
    
    .search-btn {
        padding: 8px;
    }
}

@media screen and (max-width: 768px) {
    nav {
        padding: 0 0.75rem;
    }
    
    .nav-link:not(.active) {
        display: none;
    }
    
    .nav-left, .nav-right {
        gap: 0.5rem;
    }
    
    .logo {
        margin-right: 0;
    }
    
    .search-container {
        margin-right: 0.5rem;
    }
}

.search-container {
    display: flex;
    align-items: center;
    margin-right: 0.5rem;
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 6px 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.search-shortcut {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(40, 40, 40, 0.8);
    border-radius: 4px;
    padding: 1px 4px;
    font-size: 10px;
    margin-left: 6px;
}

@media screen and (max-width: 1024px) {
    .search-text {
        display: none;
    }
    
    .search-shortcut {
        display: none;
    }
    
    .search-btn {
        padding: 6px;
    }
}

.github-btn {
    display: none;
}

.search-btn:hover {
    background: rgba(30, 30, 30, 0.7);
    color: rgba(255, 255, 255, 0.9);
}

.search-btn .material-icons {
    font-size: 15px;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 100px;
}

.search-container-overlay {
    width: 90%;
    max-width: 600px;
    background: #111;
    border-radius: 8px;
    padding: 20px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.search-input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 16px;
    border-radius: 6px;
    outline: none;
}

.search-input:focus {
    border-color: #d10000;
    box-shadow: 0 0 0 2px rgba(209, 0, 0, 0.2);
}

.search-controls {
    position: absolute;
    right: 60px;
    top: 20px;
    display: flex;
    gap: 5px;
}

.search-nav-btn {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s ease;
}

.search-nav-btn:hover {
    background: rgba(209, 0, 0, 0.2);
    border-color: rgba(209, 0, 0, 0.4);
}

.search-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.search-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.search-highlight {
    background: rgba(209, 0, 0, 0.3);
    color: white;
    border-radius: 2px;
    padding: 0 2px;
    box-shadow: 0 0 0 2px rgba(209, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.search-highlight-active {
    background: rgba(209, 0, 0, 0.7);
    color: white;
    box-shadow: 0 0 0 3px rgba(209, 0, 0, 0.5), 0 0 10px rgba(209, 0, 0, 0.5);
}

.search-info {
    margin-top: 15px;
    color: #888888;
    font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.03em;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    line-height: 1.7;
}

.card, 
#card, 
.feature-card, 
.feature-card:hover, 
.stats-section, 
.video-container {
    background: #000000 !important;
}

.card:hover, 
#card:hover, 
#card.hovered {
    background: #000000 !important;
}

@keyframes redBorderPulse {
    0% {
        box-shadow: 0 0 0 1px rgba(209, 0, 0, 0.4), 0 20px 40px rgba(255, 0, 0, 0.4), 0 0 20px rgba(250, 1, 1, 0.1);
    }
    50% {
        box-shadow: 0 0 0 1px rgba(209, 0, 0, 0.6), 0 20px 40px rgba(248, 1, 1, 0.4), 0 0 30px rgba(247, 2, 2, 0.2);
    }
    100% {
        box-shadow: 0 0 0 1px rgba(209, 0, 0, 0.4), 0 20px 40px rgba(255, 2, 2, 0.4), 0 0 20px rgba(253, 3, 3, 0.1);
    }
}

#card {
    animation: redBorderPulse 4s infinite ease-in-out;
}
