/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Embedded Helvetica for Launch Modal */
@font-face {
    font-family: 'HelveticaCustom';
    src: url('assets/helvetica.woff2') format('woff2'),
         url('assets/helvetica.woff') format('woff'),
         url('assets/helvetica.ttf') format('truetype'),
         url('assets/Helvetica.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(180deg, #0a0a0a 0%, #0c0c0c 50%, #0a0a0a 100%);
    overflow-x: hidden;
}

/* Fix safe area background color to match header */
@supports (padding: max(0px)) {
    body {
        padding-top: max(0px, env(safe-area-inset-top));
        padding-bottom: max(0px, env(safe-area-inset-bottom));
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
}

/* Ensure safe area background matches the dark theme */
html {
    background: #0a0a0a;
}

/* Additional safe area styling for mobile devices */
@supports (padding: max(0px)) {
    html {
        background: #0a0a0a;
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
}

/* Link styling */
a {
    color: #00a8ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0088cc;
}

a:visited {
    color: #00a8ff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.2);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 178, 0.1);
    z-index: 1000;
    padding: 16px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    position: relative;
}

.nav-left .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-center {
    display: flex;
    gap: 32px;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.nav-center a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-center a:hover {
    color: #00FFB2;
}

.duplicate-btn {
    background: #00FFB2;
    color: #0a0a0a;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.duplicate-btn:hover {
    background: #00D4FF;
    transform: translateY(-2px);
}

/* Navigation Right Section */
.nav-right {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: auto;
}

.telegram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.telegram-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.telegram-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nav-button {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dashboard-btn {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.login-btn {
    background: #00FFB2;
    color: #0a0a0a;
    border: 1px solid #00FFB2;
}

.login-btn:hover {
    background: #00D4FF;
    border-color: #00D4FF;
    transform: translateY(-1px);
}

/* Profile Icon Styles */
.profile-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 178, 0.1);
    border: 1px solid rgba(0, 255, 178, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #00FFB2;
}

.profile-icon:hover {
    background: rgba(0, 255, 178, 0.2);
    border-color: rgba(0, 255, 178, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 255, 178, 0.2);
}

.profile-icon svg {
    width: 20px;
    height: 20px;
}

/* Authentication element visibility */
.auth-element {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.auth-element.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.auth-element.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* Profile Dropdown Styles */
.profile-dropdown {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 178, 0.2);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: dropdownFadeIn 0.2s ease-out;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dropdown-header {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 4px;
}

.user-email {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    word-break: break-all;
}

.user-plan {
    color: #00FFB2;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.8;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: rgba(0, 255, 178, 0.1);
    color: #00FFB2;
}

.dropdown-item svg {
    color: inherit;
}

.dropdown-item:first-child {
    border-radius: 12px 12px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 12px 12px;
}

.dropdown-item:only-child {
    border-radius: 12px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: visible;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 0;
}

.blur-1 {
    width: 400px;
    height: 400px;
    background: #00FFB2;
    top: 10%;
    left: 10%;
}

.blur-2 {
    width: 300px;
    height: 300px;
    background: #00D4FF;
    top: 60%;
    right: 15%;
}

.blur-3 {
    width: 200px;
    height: 200px;
    background: #00FFB2;
    top: 20%;
    right: 30%;
}

.blur-4 {
    width: 250px;
    height: 250px;
    background: #00D4FF;
    bottom: 20%;
    left: 30%;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #00FFB2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
}

.cta-button {
    background: linear-gradient(135deg, #00FFB2, #00D4FF);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 255, 178, 0.3);
    position: relative;
    z-index: 10;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 255, 178, 0.4);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 18px;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #cccccc;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #FFD700;
    font-size: 16px;
}

.rating {
    font-weight: 600;
    color: #ffffff;
}

/* Dashboard Preview */
.dashboard-preview {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 255, 178, 0.1);
    border: 1px solid rgba(0, 255, 178, 0.2);
    animation: slideInRight 1s ease-out;
    pointer-events: none;
    user-select: none;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.dashboard-header {
    margin-bottom: 24px;
}

.dashboard-nav {
    display: flex;
    gap: 16px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item.active {
    background: #00FFB2;
    color: #0a0a0a;
}

.nav-item:hover:not(.active) {
    background: rgba(0, 255, 178, 0.1);
}

.new-badge {
    background: #00FFB2;
    color: #0a0a0a;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.balance-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 16px;
    padding: 20px;
    position: relative;
}

.trempis-image {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00FFB2;
}

.balance-card h3 {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 12px;
    font-weight: 500;
    padding-left: 45px;
}

.balance-amount {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.amount {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.change {
    font-size: 14px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
}

.change.positive {
    background: rgba(0, 255, 178, 0.1);
    color: #00FFB2;
}

.change.negative {
    background: rgba(255, 107, 107, 0.1);
    color: #FF6B6B;
}

.balance-chart {
    margin-bottom: 16px;
}

.time-filters {
    display: flex;
    gap: 8px;
}

.time-btn {
    background: none;
    border: 1px solid #333;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-btn.active,
.time-btn:hover {
    background: #00FFB2;
    color: #0a0a0a;
    border-color: #00FFB2;
}

.quick-swap-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #333;
}

.quick-swap-card h3 {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 12px;
    font-weight: 500;
}

.swap-input {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.swap-input input {
    flex: 1;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    background: #2a2a2a;
    color: #ffffff;
}

.token-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #00FFB2;
    color: #0a0a0a;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.token-icon {
    font-size: 16px;
    font-weight: bold;
}

.balance-info {
    font-size: 12px;
    color: #cccccc;
}

.action-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.action-btn {
    background: #00FFB2;
    border: 1px solid #00FFB2;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #0a0a0a;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.action-btn:hover {
    background: #00e6a0;
    border-color: #00e6a0;
    transform: translateY(-1px);
}

/* Section Styles */
section {
    padding: 100px 0;
}

/* Features Section */
.features {
    background: transparent;
    padding-top: 8px;
}

.features-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 4px 0;
}

/* Only two green edge lines at top and bottom for the whole row */
.features-grid::before,
.features-grid::after { content: none; }

.feature-card {
    background: transparent;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
}

/* Thin top and bottom edges per card */
.feature-card::before,
.feature-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.feature-card::before { top: 0; border-top-left-radius: 16px; border-top-right-radius: 16px; }
.feature-card::after { bottom: 0; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; }

.feature-icon {
    width: 66px;
    height: 66px;
    border-radius: 14px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00FFB2;
    background: transparent;
    border: none;
}

.feature-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

/* Glow effect for feature icons */
.feature-icon img,
.feature-icon svg {
    filter: drop-shadow(0 0 8px rgba(0, 255, 178, 0.5)) drop-shadow(0 0 16px rgba(0, 255, 178, 0.25));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.feature-icon:hover img,
.feature-icon:hover svg {
    filter: drop-shadow(0 0 14px rgba(0, 255, 178, 0.8)) drop-shadow(0 0 28px rgba(0, 255, 178, 0.45));
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

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

@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
}
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 32px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #00FFB2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.6;
}

.section-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00FFB2;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-top: 32px;
    transition: all 0.3s ease;
}

.section-cta:hover {
    transform: translateX(4px);
}

/* Why Cryptix Section */
.why-cryptix {
    background: transparent;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-card {
    background: rgba(0, 0, 0, 0.1);
    padding: 40px;
    padding-bottom: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 255, 178, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 178, 0.1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 255, 178, 0.2);
}

.benefit-icon {
    display: none;
}

.benefit-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.benefit-card p {
    color: #cccccc;
    line-height: 1.6;
    padding-left: 10px;
    padding-right: 10px;
}

.benefit-image {
    display: block;
    width: 100%;
    max-width: 520px;
    margin: 16px auto 0;
    border-radius: 12px;
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.benefit-image.animated {
    transform: translateY(0);
    opacity: 1;
}

/* Double-width benefit card (takes two columns on desktop) */
.benefit-card.benefit-wide { grid-column: span 2; }

@media (max-width: 1024px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .benefit-card.benefit-wide { grid-column: span 2; }
}

@media (max-width: 768px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .benefit-card.benefit-wide { grid-column: span 1; }
}

@media (max-width: 600px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .benefit-card.benefit-wide { grid-column: span 1; }
}

/* All Cryptos Section */
.all-cryptos {
    background: transparent;
}

.crypto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.crypto-text h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #00FFB2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.crypto-text p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 32px;
    line-height: 1.6;
}

.crypto-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00FFB2;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.crypto-cta:hover {
    transform: translateX(4px);
}

.crypto-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.crypto-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 178, 0.1);
}

.crypto-card:hover {
    background: #2a2a2a;
    box-shadow: 0 8px 32px rgba(0, 255, 178, 0.2);
    transform: translateY(-4px);
}

.crypto-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00FFB2, #00D4FF);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.crypto-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #ffffff;
}

.crypto-price {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.crypto-change {
    font-size: 12px;
    font-weight: 500;
}

.crypto-change.positive {
    color: #00FFB2;
}

.crypto-change.negative {
    color: #FF6B6B;
}

/* How It Works Section */
.how-it-works {
    background: transparent;
}

/* Launch Modal (force Helvetica) */
.launch-modal, .launch-modal * {
    font-family: 'HelveticaCustom', Helvetica, Arial, sans-serif !important;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    transform: perspective(1000px) rotateX(25deg);
    transform-origin: center bottom;
    transition: transform 0.3s ease-out;
}

.pricing-card {
    background: #1a1a1a;
    padding: 24px 24px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 255, 178, 0.1);
    border: 1px solid rgba(0, 255, 178, 0.1);
    transition: all 0.3s ease;
    max-width: 350px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 255, 178, 0.2);
}

.pricing-header {
    margin-bottom: 24px;
}

.product-name {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.price {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
}

.duration {
    background: #333333;
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 12px;
}

.features-list {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    justify-content: flex-start;
}

.feature-checkmark {
    width: 20px;
    height: 20px;
    background: #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cccccc;
    font-size: 12px;
    font-weight: bold;
}

.feature-item span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.purchase-button {
    width: auto;
    background: #00FFB2;
    color: #000000;
    border: none;
    padding: 12px 22px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    margin: 0 auto;
}

.purchase-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 255, 178, 0.3);
}

.button-text {
    color: #000000;
}

.purchase-button svg {
    color: #000000;
}

.commission-info {
    font-size: 12px;
    color: #888888;
    text-align: center;
    margin-top: 20px;
    line-height: 1.4;
    font-weight: 400;
}

/* Testimonials Section */
.testimonials {
    background: transparent;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 32px;
    border: 1px solid rgba(0, 255, 178, 0.1);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 24px;
    overflow: hidden;
}

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

.testimonial-card blockquote {
    font-size: 20px;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: #cccccc;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

/* Step Guide Section */
.step-guide {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.step-guide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 255, 178, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 219, 241, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.step-guide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 178, 0.05), transparent);
    transition: left 0.6s ease;
}

.step-item:hover::before {
    left: 100%;
}

.step-item:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 255, 178, 0.2);
    box-shadow: 0 8px 32px rgba(0, 255, 178, 0.1);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00ffb2 0%, #00dbf1 100%);
    color: #0a0a0a;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 255, 178, 0.3);
    position: relative;
    z-index: 1;
}

.step-content h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
}

.step-content p {
    color: #a0aec0;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.step-content strong {
    color: #00ffb2;
    font-weight: 600;
}

.video-container {
    position: sticky;
    top: 120px;
}

.video-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 20px;
    overflow: hidden;
}

.video-wrapper iframe {
    border-radius: 12px;
    width: 100%;
    height: 315px;
    border: none;
}

.step-guide-cta {
    text-align: center;
    margin-top: 60px;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid #333;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    color: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #00FFB2;
    color: #0a0a0a;
    border-color: #00FFB2;
}

.nav-indicator {
    font-size: 14px;
    color: #cccccc;
    font-weight: 500;
}

/* FAQ Section */
.faq {
    background: transparent;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #1a1a1a;
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 178, 0.1);
    flex-direction: column;
    min-height: 80px;
}

.faq-item.active {
    background: #2a2a2a;
    align-items: flex-start;
}

.faq-item.active {
    background: #2a2a2a;
}

.faq-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #cccccc;
    line-height: 1.6;
}

.faq-item.active .faq-content {
    max-height: 200px;
    padding-top: 16px;
}

.faq-item:hover {
    box-shadow: 0 8px 32px rgba(0, 255, 178, 0.2);
    transform: translateY(-2px);
}

.faq-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.faq-toggle {
    background: none;
    border: none;
    font-size: 20px;
    color: #cccccc;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-toggle:hover {
    color: #00FFB2;
}

/* Final CTA Section */
.final-cta {
    background: transparent;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: transparent;
    color: white;
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer-logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-credit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.creator-avatar {
    width: 24px;
    height: 24px;
    background: #00FFB2;
    border-radius: 50%;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00FFB2;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .crypto-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .crypto-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-center {
        display: none;
    }
    
    .telegram-link {
        width: 36px;
        height: 36px;
    }
    
    .telegram-icon {
        width: 28px;
        height: 28px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 24px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .crypto-text h2 {
        font-size: 36px;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .dashboard-preview {
        padding: 16px;
    }
    
    .dashboard-nav {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .nav-item {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .crypto-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
        margin-top: 50px;
    }
    
    .pricing-card {
        padding: 28px 20px;
    }
    
    .price {
        font-size: 40px;
    }
    
    .product-name {
        font-size: 22px;
    }
    
    .feature-item span {
        font-size: 15px;
    }
    
    .step-item {
        padding: 24px;
        gap: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .step-content h3 {
        font-size: 18px;
    }
    
    .step-content p {
        font-size: 15px;
    }
    
    .step-guide-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .video-container {
        position: static;
        order: -1;
    }
    
    .video-wrapper iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .crypto-text h2 {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .dashboard-preview {
        padding: 12px;
    }
    
    .balance-card,
    .quick-swap-card {
        padding: 16px;
    }
    
    .pricing-card {
        padding: 20px 16px;
        max-width: 100%;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .price {
        font-size: 32px;
    }
    
    .product-name {
        font-size: 18px;
    }
    
    .duration {
        padding: 6px 16px;
        font-size: 12px;
        margin-bottom: 16px;
    }
    
    .feature-item {
        margin-bottom: 10px;
    }
    
    .feature-item span {
        font-size: 14px;
    }
    
    .step-guide-content {
        gap: 30px;
    }
    
    .video-wrapper iframe {
        height: 200px;
    }
    
    .step-item {
        padding: 16px;
        gap: 12px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .step-content h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .step-content p {
        font-size: 13px;
    }
    
    .commission-info {
        font-size: 11px;
        margin-top: 4px;
    }
    
    .purchase-button {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .balance-card h3 {
        padding-left: 45px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .faq-item {
        padding: 16px;
    }
    
    .step-guide {
        padding: 60px 0;
    }
    
    .steps-container {
        gap: 20px;
        margin-top: 40px;
    }
    
    .step-item {
        padding: 20px;
        gap: 16px;
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
        align-self: center;
    }
    
    .step-content h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .step-content p {
        font-size: 14px;
    }
    
    .step-guide-cta {
        margin-top: 40px;
    }
}

/* Custom Alert Styles */
.custom-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.custom-alert-overlay.show {
    opacity: 1;
    visibility: visible;
}

.custom-alert {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid rgba(0, 255, 178, 0.2);
    border-radius: 16px;
    padding: 32px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    position: relative;
}

.custom-alert-overlay.show .custom-alert {
    transform: scale(1);
}

.custom-alert-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.custom-alert-icon img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
}

.custom-alert-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.custom-alert-message {
    font-size: 16px;
    color: #b0b0b0;
    line-height: 1.5;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

.custom-alert-button {
    background: linear-gradient(135deg, #00FFB2, #00D4FF);
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    color: #000000;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    min-width: 120px;
}

.custom-alert-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 178, 0.3);
}

.custom-alert-button:active {
    transform: translateY(0);
}

.custom-alert-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.custom-alert-download-btn {
    background: linear-gradient(135deg, #00FFB2, #00D4FF);
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    color: #000000;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    min-width: 120px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.custom-alert-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 178, 0.3);
    color: #000000;
    text-decoration: none;
}

.custom-alert-download-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .custom-alert {
        padding: 24px;
        margin: 20px;
    }
    
    .custom-alert-title {
        font-size: 18px;
    }
    
    .custom-alert-message {
        font-size: 14px;
    }
    
    .custom-alert-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }
    
    .custom-alert-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .custom-alert-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .custom-alert-button,
    .custom-alert-download-btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Mobile Overflow Prevention - Critical for preventing sideways scroll */
@media (max-width: 768px) {
    /* Prevent horizontal overflow on body and html */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Ensure main containers don't overflow */
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    /* Fix navigation overflow */
    .navbar {
        width: 100%;
        overflow-x: hidden;
    }
    
    .nav-container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    /* Ensure pricing grid doesn't overflow */
    .pricing-grid {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    /* Fix any potential overflow with hero section */
    .hero {
        width: 100%;
        overflow-x: hidden;
    }
    
    /* Fix common overflow culprits */
    .pricing-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .step-item {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .faq-item {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Ensure buttons don't cause overflow */
    .purchase-button, .section-cta {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}
