* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #6A5ACD;
    --primary-hover: #483D8B;
    --primary-light: #7B68EE;
    --secondary: #87CEEB;
    --secondary-hover: #B0E0E6;
    --bg-start: #4B0082;
    --bg-end: #1E1E4B;
    --text-white: #ffffff;
    --text-muted: #cccccc;
    --glass-bg: rgba(47, 47, 95, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(180deg, var(--bg-start) 0%, var(--bg-end) 100%);
    min-height: 100vh;
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

h1, h2, h3, h4 {
    margin-bottom: 1rem;
}

.highlight {
    color: var(--secondary);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-primary.lg {
    padding: 16px 32px;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(106, 90, 205, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: rgba(106, 90, 205, 0.1);
}

.btn-outline.lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-white {
    background-color: white;
    color: var(--bg-start);
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background-color: #2F2F5F;
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.logo-icon.sm { width: 32px; height: 32px; }

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-text.sm { font-size: 1.2rem; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-top: 140px;
    padding-bottom: 80px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-end);
    margin-left: -12px;
}

.avatars img:first-child { margin-left: 0; }

.social-proof p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

.hero-image {
    flex: 2;
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.2;
    top: 0;
    left: 0;
    z-index: -1;
    filter: blur(40px);
}

.image-wrapper {
    border-radius: 24px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* Features Section */
.features-section {
    background-color: rgba(30, 30, 75, 0.5);
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background-color: rgba(47, 47, 95, 0.6);
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(106, 90, 205, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 25px;
}

.feature-card h3 {
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
}

.benefits-section {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 20px;
}

.benefits-image, .benefits-text {
    flex: 1;
}

.benefits-text h2 {
    font-size: 3rem;
    margin-bottom: 40px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 40px;
}

.benefits-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.check-icon {
    width: 32px;
    height: 32px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.benefits-list h4 {
    margin-bottom: 5px;
}

.benefits-list p {
    color: var(--text-muted);
}

.cta-section {
    padding: 100px 20px;
}

.cta-box {
    background: linear-gradient(90deg, var(--bg-start), var(--primary));
    padding: 80px 40px;
    border-radius: 40px;
    text-align: center;
}

.cta-box h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.store-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.5rem;
}

.store-icons span {
    font-size: 1rem;
    opacity: 0.7;
}

.footer {
    background-color: #1a1a40;
    padding: 80px 0 40px;
}

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

.mb-20 { margin-bottom: 20px; }

.footer-about p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #1E1E4B;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

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

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555588;
    font-size: 0.9rem;
}

.badges {
    display: flex;
    gap: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 0.75rem;
}

@media (max-width: 1024px) {
    .hero { flex-direction: column; text-align: center; }
    .hero-text h1 { font-size: 3.5rem; }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .cta-group { justify-content: center; }
    .social-proof { justify-content: center; }
    
    .benefits-section { flex-direction: column-reverse; text-align: center; }
    .benefits-list li { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #2F2F5F;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }
    .nav-links.active { display: flex; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cta-box h2 { font-size: 2.5rem; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 20px; }
    .hero-text h1 { font-size: 2.5rem; }
    .cta-group { flex-direction: column; }
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-text > * {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.5s ease forwards;
}

.hero-text > *:nth-child(1) { animation-delay: 0.05s; }
.hero-text > *:nth-child(2) { animation-delay: 0.1s; }
.hero-text > *:nth-child(3) { animation-delay: 0.15s; }

.hero-image {
    opacity: 0;
    transform: scale(0.96);
    animation: fadeScale 0.6s ease forwards 0.15s;
}

.feature-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.5s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.05s; }
.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.15s; }
.feature-card:nth-child(4) { animation-delay: 0.2s; }

.benefits-text > * {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.5s ease forwards;
}

.benefits-text > *:nth-child(1) { animation-delay: 0.05s; }
.benefits-text > *:nth-child(2) { animation-delay: 0.1s; }

.cta-box {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.6s ease forwards 0.1s;
}

.footer {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards 0.15s;
}

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

@keyframes fadeScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.accepted-crypto-section {
    padding: 80px 0 40px;
}

.accepted-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.accepted-crypto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.accepted-crypto-card {
    background: rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.accepted-crypto-card:hover {
    background: rgba(255,255,255,0.1);
}

.accepted-crypto-card img {
    width: 64px;
    margin-bottom: 20px;
}

.accepted-crypto-card h4 {
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.network-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
    background: rgba(255,255,255,0.15);
}

.tag.lightning { background: #7c13f7; }
.tag.btc       { background: #f2a900; color: #000; }
.tag.eth       { background: #627eea; }
.tag.tron      { background: #ff060a; }
.tag.sol       { background: linear-gradient(135deg,#00ffa3,#dc1fff); }

@media (max-width: 900px) {
    .accepted-crypto-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .accepted-crypto-card {
        padding: 32px 24px;
    }
}

.network-tags {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    justify-content: center;
    gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}

.social-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}