:root {
    --primary-color: #ffffff;
    --primary-dark: #f0f0f0;
    --secondary-color: #d4af37;
    --background-dark: #0a0a0a;
    --text-light: #ffffff;
    --text-muted: #b0b0b0;
    --border-color: #333333;
    --gradient-1: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--background-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0px);
    width: 100%;
}

.header.scrolled {
    background-color: #ffffff;
    border-bottom-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-brand {
    flex-shrink: 0;
}

.logo {
    display: inline-block;
    height: 40px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.logo-svg {
    height: 100%;
    width: auto;
    max-width: 140px;
}

.logo:hover .logo-svg path {
    opacity: 0.8;
}

.nav-list {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-link {
    font-size: 14px;
    color: #000000;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #d4af37;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.navbar-actions .btn-primary,
.navbar-actions .btn-sm {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
    display: block;
}

/* ==================== BUTTONS ==================== */
.btn {
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #000000;
}

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

.btn-outline {
    border: 1.5px solid #ffffff;
    color: #ffffff;
    background: transparent;
}

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

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    overflow: hidden;
    margin-top: 100px;
    background: linear-gradient(135deg, #0a0a1a 0%, #0f0f2e 50%, #1a0f3a 100%);
}

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

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: 10%;
    right: 10%;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    bottom: 10%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    z-index: 10;
    width: 100%;
}

.hero-title {
    font-size: 56px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 30px;
}

.text-gradient {
    background: linear-gradient(135deg, #d4af37, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-badges {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.hero-badge {
    display: inline-flex;
    flex-direction: column;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 12px 20px;
    background: rgba(26, 26, 46, 0.3);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    border-color: #d4af37;
    background: rgba(26, 26, 46, 0.6);
}

.hero-badge .badge-label {
    font-size: 12px;
    color: #b0b0b0;
    margin-bottom: 4px;
}

.hero-badge .badge-value {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #333333;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 4px;
}

.stat-desc {
    font-size: 13px;
    color: #b0b0b0;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 102, 255, 0.2));
}

.glow-effect {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.scroll-arrow {
    display: flex;
    justify-content: center;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ==================== FEATURES SECTION ==================== */
.features {
    padding: 100px 0;
    position: relative;
    z-index: 5;
}

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

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
}

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

.feature-card {
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: rgba(26, 26, 46, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    border-color: #d4af37;
    background: rgba(30, 30, 30, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ==================== PRODUCTS SECTION ==================== */
.products {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 102, 255, 0.05) 100%);
}

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

.product-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: rgba(26, 26, 46, 0.6);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: #d4af37;
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.2);
}

.product-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    background: #d4af37;
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    font-size: 24px;
    margin-top: 20px;
    padding: 0 20px;
}

.product-card p {
    font-size: 15px;
    color: var(--text-muted);
    padding: 10px 20px;
}

.product-specs {
    list-style: none;
    padding: 0 20px;
    margin: 15px 0;
    font-size: 14px;
    color: var(--text-muted);
}

.product-specs li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.product-specs li:last-child {
    border-bottom: none;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: #d4af37;
    padding: 20px;
}

.product-card .btn {
    margin: 0 20px 20px;
}

/* ==================== SECURITY SECTION ==================== */
.security {
    padding: 100px 0;
}

.security-timeline {
    position: relative;
    padding: 40px 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-marker {
    display: flex;
    justify-content: center;
    position: relative;
}

.timeline-marker::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: var(--primary-color);
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
}

.timeline-item:last-child .timeline-marker::after {
    display: none;
}

.marker-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #d4af37;
    border: 3px solid var(--background-dark);
    position: relative;
    z-index: 2;
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.timeline-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    font-size: 12px;
    color: #d4af37;
}

/* ==================== ECOSYSTEM SECTION ==================== */
.ecosystem {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(107, 33, 168, 0.05) 100%);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.ecosystem-card {
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: rgba(26, 26, 46, 0.5);
    transition: all 0.3s ease;
}

.ecosystem-card:hover {
    border-color: #d4af37;
    background: rgba(30, 30, 30, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.ecosystem-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.ecosystem-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.ecosystem-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how-it-works {
    padding: 100px 0;
}

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

.step-card {
    text-align: center;
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: rgba(26, 26, 46, 0.5);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    border-color: #d4af37;
    background: rgba(30, 30, 30, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 20px;
}

.step-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

.step-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ==================== TRUST SECTION ==================== */
.trust {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 102, 255, 0.05) 100%);
}

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

.trust-text h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

.trust-text p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.trust-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.metric {
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
}

.metric-number {
    font-size: 36px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 14px;
    color: var(--text-muted);
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.badge-item {
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: rgba(26, 26, 46, 0.5);
    transition: all 0.3s ease;
}

.badge-item:hover {
    border-color: #d4af37;
    background: rgba(30, 30, 30, 0.8);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}

.badge-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.badge-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #fff;
}

.badge-item p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1e 100%);
}

.testimonials-swiper {
    overflow: visible;
}

.swiper-slide {
    height: auto;
}

.testimonial-card {
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: rgba(26, 26, 46, 0.6);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    gap: 15px;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.author-avatar + div strong {
    color: #fff;
    font-size: 15px;
    display: block;
}

.author-avatar + div {
    font-size: 13px;
}

.swiper-pagination-bullet {
    background: var(--primary-color) !important;
}

/* ==================== FAQ SECTION ==================== -->
.faq {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f0f1e 0%, #1a1a2e 50%, #0f0f1e 100%);
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 60px;
    margin-top: 60px;
}

.faq-questions {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.faq-question-item {
    position: relative;
    border-left: 3px solid transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question-item input[type="radio"] {
    display: none;
}

.faq-question-item label {
    display: block;
    padding: 16px 0 16px 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    color: #b0b0b0;
    transition: all 0.2s ease;
    line-height: 1.6;
}

.faq-question-item:hover label {
    color: #ffffff;
    padding-left: 20px;
}

.faq-question-item input[type="radio"]:checked + label {
    color: #ffffff;
    border-left-color: #d4af37;
    background: rgba(212, 175, 55, 0.06);
    padding-left: 20px;
    font-weight: 500;
}

.faq-answers {
    position: relative;
    padding: 20px 30px;
    background: rgba(26, 26, 46, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.faq-answer-item {
    display: none;
    animation: fadeIn 0.3s ease;
}

.faq-answer-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.faq-answer-item p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 2;
    letter-spacing: -0.2px;
}

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

/* Radio input visibility binding */
#faq-1:checked ~ .faq-answers [data-faq="faq-1"],
#faq-2:checked ~ .faq-answers [data-faq="faq-2"],
#faq-3:checked ~ .faq-answers [data-faq="faq-3"],
#faq-4:checked ~ .faq-answers [data-faq="faq-4"],
#faq-5:checked ~ .faq-answers [data-faq="faq-5"],
#faq-6:checked ~ .faq-answers [data-faq="faq-6"],
#faq-7:checked ~ .faq-answers [data-faq="faq-7"],
#faq-8:checked ~ .faq-answers [data-faq="faq-8"],
#faq-9:checked ~ .faq-answers [data-faq="faq-9"],
#faq-10:checked ~ .faq-answers [data-faq="faq-10"] {
    display: block;
}

/* ==================== FOOTER ==================== */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
    background: rgba(10, 10, 20, 0.8);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section h4 {
    font-size: 14px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

.footer-section a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-links a:hover {
    border-color: var(--primary-color);
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px !important;
}

/* ==================== SVG ICONS ==================== */
.icon-feature {
    width: 48px;
    height: 48px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.icon-ecosystem {
    width: 64px;
    height: 64px;
    stroke: currentColor;
    fill: currentColor;
    stroke-width: 1.5;
    color: #d4af37;
}

.coin-icon {
    width: 64px;
    height: 64px;
    fill: currentColor;
}

.icon-badge {
    width: 48px;
    height: 48px;
    fill: currentColor;
}

.feature-icon {
    color: #ffffff;
    stroke: #ffffff;
}

.badge-icon {
    color: #d4af37;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    width: 48px;
    height: 48px;
    color: #d4af37;
    fill: #d4af37;
}

/* ==================== ANNOUNCEMENT BAR ==================== */
.announcement-bar {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%), #1a1a2e;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    animation: topBannerAnim 3s ease-in-out infinite;
    width: 100%;
}

@keyframes topBannerAnim {
    0% { background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%), #1a1a2e; }
    50% { background: linear-gradient(90deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%), #1f1f35; }
    100% { background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%), #1a1a2e; }
}

.announcement-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 12px;
    color: #ffffff;
    width: 100%;
    box-sizing: border-box;
}

.announcement-left {
    flex: 1;
}

.announcement-left strong {
    color: #ff5300;
}

.announcement-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #333333;
    border-radius: 4px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.announcement-cta:hover {
    background: rgba(255, 255, 255, 0.15);
}

.announcement-cta svg {
    transition: transform 0.3s ease;
}

.announcement-cta:hover svg {
    transform: translateX(3px);
}

/* ==================== NAVIGATION DROPDOWNS ==================== */
.nav-item.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '▼';
    display: inline-block;
    font-size: 8px;
    margin-left: 6px;
    color: currentColor;
    transition: transform 0.3s ease;
    transform-origin: center;
}

.nav-item.dropdown:hover .dropdown-toggle::after {
    transform: scaleY(-1);
}

.dropdown-menu {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    width: 100vw;
    background: rgba(10, 10, 20, 0.99);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333333;
    padding: 40px 0;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    border-top: 2px solid #d4af37;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
    z-index: 998;
}

.dropdown-menu > * {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-item.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.dropdown-column h4 {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 18px;
    letter-spacing: 0.8px;
    opacity: 0.9;
}

.dropdown-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-card-small {
    background: rgba(26, 26, 46, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card-small:hover {
    border-color: #d4af37;
    background: rgba(26, 26, 46, 0.6);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.15);
}

.product-card-small img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 14px;
}

.product-card-small h5 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.product-card-small p {
    font-size: 12px;
    color: #b0b0b0;
    line-height: 1.5;
}

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

.dropdown-column a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.25s ease;
    border-bottom: 1px solid transparent;
}

.dropdown-column a:hover {
    color: #ffffff;
    border-bottom-color: #d4af37;
}

/* ==================== VALUE PROPOSITIONS ==================== */
.value-props {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f0f1e 0%, #1a1a2e 100%);
}

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

.prop-card {
    background: rgba(26, 26, 46, 0.4);
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.prop-card:hover {
    border-color: #d4af37;
    background: rgba(26, 26, 46, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.prop-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.prop-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff;
}

.prop-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* ==================== CRYPTO CARD SECTION ==================== */
.crypto-card-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
}

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

.card-text h2 {
    font-size: 44px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.card-text p {
    font-size: 16px;
    color: #b0b0b0;
    margin-bottom: 30px;
    line-height: 1.8;
}

.card-mockup {
    perspective: 1000px;
    display: flex;
    justify-content: center;
}

.card-illustration {
    filter: drop-shadow(0 20px 40px rgba(212, 175, 55, 0.2));
    animation: float 3s ease-in-out infinite;
}

/* ==================== SECURITY WARNING ==================== */
.security-warning {
    padding: 80px 0;
    background: #0a0a0a;
}

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

.warning-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.warning-text h2 {
    font-size: 44px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.warning-text p {
    color: #b0b0b0;
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 16px;
}

.warning-visual img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15);
}

/* ==================== PRODUCTS GRID ==================== */
.products {
    padding: 80px 0;
    background: #0a0a0a;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.product-card {
    position: relative;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid #333333;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: #d4af37;
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #d4af37;
    color: #0a0a0a;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #ffffff;
}

.product-spec {
    font-size: 13px;
    color: #d4af37;
    margin-bottom: 12px;
}

.product-desc {
    font-size: 13px;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 13px;
}

.stars {
    color: #d4af37;
    letter-spacing: 2px;
}

.rating-value {
    color: #b0b0b0;
}

.product-card .btn {
    width: 100%;
}

/* ==================== SUPPORTED ASSETS ==================== */
.supported-assets {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a1a 0%, #1a1a3a 50%, #0f0f1e 100%);
}

.assets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.asset-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid #333333;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.asset-item:hover {
    border-color: #d4af37;
    background: rgba(26, 26, 46, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}

.asset-image {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.asset-item span {
    font-size: 14px;
    color: #b0b0b0;
    font-weight: 500;
}

/* ==================== WALLET FEATURES ==================== */
.wallet-features {
    padding: 80px 0;
    background: #0a0a0a;
}

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

.wallet-header h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.wallet-subtitle {
    font-size: 24px;
    color: #d4af37;
    margin-bottom: 20px;
}

.wallet-tagline {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 15px;
    line-height: 1.6;
}

.wallet-note {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.wallet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.wallet-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.wallet-card:hover {
    border-color: #d4af37;
    background: rgba(26, 26, 46, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.wallet-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.wallet-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #ffffff;
}

.wallet-card p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.testimonial-card {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #d4af37;
    background: rgba(26, 26, 46, 0.8);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.testimonial-text {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.author-handle {
    color: #d4af37;
    font-size: 12px;
}

/* FAQ Responsive Design */
@media (max-width: 1024px) {
    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-questions {
        order: 1;
    }

    .faq-answers {
        order: 2;
    }
}

@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }

    .faq-wrapper {
        gap: 20px;
    }

    .faq-question-item label {
        padding: 14px 16px;
        font-size: 13px;
    }

    .faq-answers {
        padding-left: 0;
    }

    .faq-answer-item {
        padding: 16px;
    }

    .faq-answer-item h4 {
        font-size: 14px;
    }
}

/* ==================== BOTTOM CTA ==================== */
.bottom-cta {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a3a 100%);
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 200px;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.bottom-cta h2 {
    font-size: 56px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bottom-cta p {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 30px;
}

/* ==================== NEWSLETTER ==================== */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
}

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

.newsletter-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.newsletter-content > p {
    font-size: 16px;
    color: #b0b0b0;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.newsletter-form input::placeholder {
    color: #666666;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #d4af37;
}

.newsletter-form button {
    padding: 14px 30px;
}

.newsletter-note {
    font-size: 12px;
    color: #666666;
    line-height: 1.6;
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-top: 1px solid #333333;
    padding: 60px 0 30px;
    color: #b0b0b0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-section a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 13px;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d4af37;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
    font-size: 12px;
}

.footer-left p {
    margin: 4px 0;
    color: #666666;
}

.footer-social a {
    display: inline-block;
    margin-left: 20px;
    color: #d4af37;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #ffffff;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .nav-list {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .navbar-menu.active {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .features-grid,
    .products-showcase,
    .ecosystem-grid,
    .steps-container {
        grid-template-columns: 1fr;
    }

    .trust-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-metrics {
        grid-template-columns: 1fr;
    }

    .security-timeline {
        padding-left: 20px;
    }

    .timeline-item {
        grid-template-columns: 50px 1fr;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* New responsive styles */
    .dropdown-menu {
        display: none !important;
    }

    .props-grid {
        grid-template-columns: 1fr;
    }

    .card-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .warning-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wallet-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .card-text h2,
    .warning-text h2,
    .bottom-cta h2 {
        font-size: 32px;
    }

    .wallet-header h2 {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .announcement-content {
        font-size: 12px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .wallet-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 28px;
    }

    .card-text h2,
    .warning-text h2,
    .bottom-cta h2 {
        font-size: 24px;
    }

    .newsletter-form input {
        font-size: 13px;
    }

    .product-image {
        height: 250px;
    }
}
