* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Google Sans Mono', monospace;
}

:root {
    --background: #010101;
    --nav-bg: #010101;
    --card-bg: #0F0F0F;
    --hover-bg: #141414;
    --primary: #8833FF;
    --primary-hover: #9947FF;
    --gold: #B4842C;
    --gold-hover: #C99537;
    --text: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.4);
    --border: rgba(255, 255, 255, 0.06);
    --success: #00DC82;
    --transition: all 0.2s ease;
}

body {
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

body::before,
body::after {
    content: '';
    position: fixed;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    mix-blend-mode: screen;
    filter: blur(60px) saturate(150%);
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

body::before {
    top: 5%;
    left: 5%;
    background: radial-gradient(
        circle at center,
        rgba(136, 51, 255, 0.18) 0%,
        rgba(136, 51, 255, 0.15) 15%,
        rgba(136, 51, 255, 0.12) 25%,
        rgba(136, 51, 255, 0.08) 35%,
        rgba(136, 51, 255, 0.04) 50%,
        rgba(136, 51, 255, 0.02) 60%,
        rgba(136, 51, 255, 0) 75%
    );
}

body::after {
    bottom: 5%;
    right: 5%;
    background: radial-gradient(
        circle at center,
        rgba(51, 136, 255, 0.18) 0%,
        rgba(51, 136, 255, 0.15) 15%,
        rgba(51, 136, 255, 0.12) 25%,
        rgba(51, 136, 255, 0.08) 35%,
        rgba(51, 136, 255, 0.04) 50%,
        rgba(51, 136, 255, 0.02) 60%,
        rgba(51, 136, 255, 0) 75%
    );
}

nav {
    background: var(--nav-bg);
    padding: 1.5rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    height: 80px;
}

.nav_container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}

.logo {
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
}

.logo img {
    height: 30px;
    width: auto;
    max-width: 200px;
    display: block;
    object-fit: contain;
}

.nav_links {
    display: flex;
    align-items: center;
    gap: 2.8rem;
    list-style: none;
    height: 100%;
}

.nav_links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: var(--transition);
    padding: 0.6rem 1.2rem;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    letter-spacing: 0.2px;
    border-radius: 6px;
}

.nav_links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(136, 51, 255, 0.1);
    border-radius: 6px;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav_links a:hover::before,
.nav_links a.active::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.nav_links a:hover,
.nav_links a.active {
    color: var(--primary);
}

.live_counter {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1.2rem;
    background: rgba(136, 51, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(136, 51, 255, 0.2);
}

.live_dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    position: relative;
}

.live_dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: translate(-50%, -50%);
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.live_text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.live_count {
    color: var(--primary);
    font-weight: 600;
    min-width: 3ch;
    display: inline-block;
    text-align: left;
    transition: opacity 0.3s ease;
}

footer {
    background: var(--nav-bg);
    border-top: 1px solid var(--border);
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

.footer_container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer_brand img {
    height: 30px;
    width: auto;
    display: block;
    margin-bottom: 1rem;
}

.footer_brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 380px;
    line-height: 1.7;
}

.footer_section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--text);
}

.footer_links {
    list-style: none;
}

.footer_links li {
    margin-bottom: 0.8rem;
}

.footer_links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.footer_bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer_social {
    display: flex;
    gap: 1.5rem;
}

.footer_social a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition);
}

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

.hero_section {
    position: relative;
    padding: 8rem 2rem 6rem;
    margin-bottom: 2rem;
    background: linear-gradient(180deg, 
        rgba(136, 51, 255, 0.03) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    overflow: hidden;
}

.hero_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(136, 51, 255, 0.2),
        transparent
    );
}

.hero_content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero_title {
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero_subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    letter-spacing: 0.2px;
}

.hero_features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.feature_item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 4px;
}

.feature_item i {
    color: var(--primary);
    font-size: 1.1rem;
}

.feature_item span {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.hero_stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
}

.stat_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat_value {
    font-size: 2.5rem;
    font-weight: 600;
    background: linear-gradient(to right, var(--primary), var(--primary-hover));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.stat_label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.products_container {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    flex: 1;
}

.products_header {
    text-align: center;
    margin-bottom: 4rem;
}

.products_header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #A855FF, #BC70FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.products_header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.products_grid {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.why_choose_section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    text-align: center;
}

.why_choose_title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #A855FF, #BC70FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why_choose_subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.features_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature_card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.feature_card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature_card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

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

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

@media (max-width: 768px) {
    .features_grid {
        grid-template-columns: 1fr;
    }
}

.product_card {
    margin-bottom: 0;
    transition: all 0.3s ease;
}



.product_card {
    background: var(--card-bg);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.product_card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 5px;
    pointer-events: none;
}

.product_card:hover {
    transform: translateY(-2px);
}

.product_image {
    position: relative;
    width: 100%;
    padding-top: 66.67%;
    overflow: hidden;
}

.product_image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product_badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.product_content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product_content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.01em;
}

.product_content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.product_features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.product_features span {
    color: var(--text-secondary);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product_features i {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.duration_selector {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.duration_option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.875rem 1rem;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.duration_option:hover {
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.duration_option.selected {
    background: rgba(255, 255, 255, 0.02);
    border-color: var(--primary);
    color: var(--text);
}

.duration_label {
    letter-spacing: 0.02em;
}

.duration_price {
    color: var(--text);
    font-weight: 600;
}

.product_footer {
    display: flex;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.buy_button {
    background: var(--primary);
    color: white;
    border: none;
    width: 100%;
    padding: 0.875rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-radius: 4px;
}

.buy_button:hover {
    background: var(--primary-hover);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 2000;
    backdrop-filter: blur(0px);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.3s, opacity 0.3s ease, backdrop-filter 0.3s ease, background 0.3s ease;
}

.modal.active {
    visibility: visible;
    opacity: 1;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    transition-delay: 0s;
}

.modal-content {
    position: relative;
    width: 90%;
    height: 90%;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border);
    overflow: hidden;
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
    opacity: 1;
}

.instructions_dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}

.instructions_dialog.active {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.instructions_content {
    background: var(--background);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    width: 90%;
    max-width: 600px;
    opacity: 0;
    transition: opacity 0.2s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.instructions_dialog.active .instructions_content {
    opacity: 1;
}

.instructions_content h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: -0.02em;
}

.instructions_steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.step_icon {
    background: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step_icon i {
    color: white;
    font-size: 1.2rem;
}

.step_content {
    flex: 1;
}

.step_content h4 {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step_content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.instructions_note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    margin: 2.5rem 0;
    border: 1px solid var(--border);
}

.instructions_note i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.instructions_note p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.button_container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.confirm_button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    opacity: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.instructions_dialog.active .confirm_button {
    opacity: 1;
}

.confirm_button:hover {
    background: var(--primary-hover);
}

.modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close_modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: var(--text);
    cursor: pointer;
    z-index: 1;
    transition: var(--transition);
}

.close_modal:hover {
    color: var(--primary);
}

.coming_soon_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coming_soon_content {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
}

.coming_soon_content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #A855FF, #BC70FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.coming_soon_content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}