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

/* Responsive Images - General Rule */
img {
    max-width: 100%;
    height: auto;
}

:root {
    --primary-color: #5B67FF;
    --secondary-color: #fff;
    --text-color: #fff;
    --text-secondary: #a0a0a0;
    --bg-color: #0D0D0D;
    --bg-secondary: #141414;
    --bg-card: #1a1a1a;
    --dark-bg: #0D0D0D;
    --gray: #636d6d;
    --light-gray: #1a1a1a;
    --border-color: #2a2a2a;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Light Theme Variables */
.light-theme {
    --text-color: #1a1a1a;
    --text-secondary: #636d6d;
    --bg-color: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-card: #ffffff;
    --dark-bg: #ffffff;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
}

/* Light Theme Specific Styles */
.light-theme .header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}


.light-theme .hero-title {
    color: #1a1a1a !important;
}

.light-theme .hero-description {
    color: #636d6d !important;
}

.light-theme .hero-content {
    color: var(--text-color);
}

.light-theme .header-icon-btn img[src*="iphone"] {
    filter: brightness(0) !important;
}

.light-theme .header-icon-btn svg {
    color: var(--text-color);
}

.light-theme .nav-link {
    color: var(--text-color);
}

.light-theme .nav-link:hover {
    color: var(--primary-color);
}

.light-theme .wallet-name,
.light-theme .feature-title,
.light-theme .section-title,
.light-theme .feature-description,
.light-theme .review-text,
.light-theme .question-title,
.light-theme .stat-number {
    color: #1a1a1a !important;
    text-shadow: 
        0 0 10px rgba(138, 43, 226, 0.4),
        0 0 20px rgba(138, 43, 226, 0.3),
        0 0 30px rgba(138, 43, 226, 0.2),
        0 0 40px rgba(138, 43, 226, 0.1);
}

.light-theme .stat-label,
.light-theme .stat-description,
.light-theme .faq-question h3,
.light-theme .faq-answer p,
.light-theme .explorer-item span {
    color: var(--text-color) !important;
}

.light-theme .reviewer-name,
.light-theme .question-answer,
.light-theme .faq-answer p {
    color: var(--text-secondary) !important;
}

.light-theme .wallet-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

.light-theme .wallet-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(91, 103, 255, 0.15);
}

.light-theme .feature-item {
    background: transparent;
}

.light-theme .review-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

.light-theme .faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

.light-theme .question-item {
    background: var(--bg-secondary);
}

.light-theme .explorer-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

.light-theme .explorer-item:hover {
    border-color: var(--primary-color);
}

.light-theme .footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.light-theme .settings-dropdown {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.light-theme .language-dropdown {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.light-theme .language-search {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

.light-theme .language-option:hover,
.light-theme .language-option.selected {
    background: var(--bg-secondary);
}

.light-theme .language-list::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

.light-theme .language-list::-webkit-scrollbar-thumb {
    background: var(--border-color);
}

.light-theme .language-list::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

.light-theme .btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.light-theme .btn-secondary:hover {
    background: var(--border-color);
}

html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

* {
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Animated Background Icons */
.animated-bg-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    display: none;
}

@media (min-width: 1200px) {
    .animated-bg-icons {
        display: block;
    }
}

.bg-icon {
    position: absolute;
    opacity: 0.15;
    filter: blur(0.5px);
    animation: float 20s infinite ease-in-out;
    will-change: transform;
}

.bg-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0.5);
}

.light-theme .bg-icon {
    opacity: 0.12;
}

.light-theme .bg-icon img {
    filter: brightness(0.7);
}

/* Different positions and animations for each icon */
.bg-icon-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.bg-icon-2 {
    top: 20%;
    right: 8%;
    animation-delay: 2s;
    animation-duration: 30s;
}

.bg-icon-3 {
    top: 40%;
    left: 3%;
    animation-delay: 4s;
    animation-duration: 28s;
}

.bg-icon-4 {
    top: 50%;
    right: 5%;
    animation-delay: 1s;
    animation-duration: 32s;
}

.bg-icon-5 {
    top: 70%;
    left: 10%;
    animation-delay: 3s;
    animation-duration: 26s;
}

.bg-icon-6 {
    top: 15%;
    left: 50%;
    animation-delay: 5s;
    animation-duration: 29s;
}

.bg-icon-7 {
    top: 60%;
    right: 12%;
    animation-delay: 2.5s;
    animation-duration: 27s;
}

.bg-icon-8 {
    top: 80%;
    left: 20%;
    animation-delay: 1.5s;
    animation-duration: 31s;
}

.bg-icon-9 {
    top: 30%;
    right: 20%;
    animation-delay: 3.5s;
    animation-duration: 24s;
}

.bg-icon-10 {
    top: 55%;
    left: 15%;
    animation-delay: 4.5s;
    animation-duration: 33s;
}

.bg-icon-11 {
    top: 75%;
    right: 25%;
    animation-delay: 0.5s;
    animation-duration: 28s;
}

.bg-icon-12 {
    top: 25%;
    left: 30%;
    animation-delay: 6s;
    animation-duration: 30s;
}

.bg-icon-13 {
    top: 65%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 26s;
}

.bg-icon-14 {
    top: 35%;
    left: 25%;
    animation-delay: 4s;
    animation-duration: 29s;
}

.bg-icon-15 {
    top: 85%;
    right: 30%;
    animation-delay: 1s;
    animation-duration: 27s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -30px) rotate(5deg) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) rotate(-5deg) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) rotate(3deg) scale(1.05);
    }
}

/* Ensure content is above background */
.header,
.hero,
.features,
.download-app,
.reviews,
.explorers,
.questions,
.faq,
.stats,
.footer {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

/* Header */
.header {
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 32px;
    width: auto;
}

.nav {
    display: flex;
    gap: 24px;
    align-items: center;
    flex: 0 1 auto;
    margin-left: 40px;
    flex-wrap: nowrap;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-color);
    background: var(--bg-secondary);
}

.nav-link.active {
    background: var(--bg-secondary);
    color: var(--text-color);
}

.nav-more {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.3s;
    flex-shrink: 0;
}

.nav-more:hover {
    background: var(--bg-secondary);
}

.nav-more svg {
    width: 20px;
    height: 20px;
}

/* Header Search */
.header-search {
    flex: 1 1 auto;
    max-width: 400px;
    margin: 0 20px;
    min-width: 200px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 10px 16px;
    transition: border-color 0.3s;
    width: 100%;
}

.search-input-wrapper:focus-within {
    border-color: var(--primary-color);
}

.search-icon {
    color: var(--text-secondary);
    margin-right: 12px;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.header-search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text-color);
    font-size: 14px;
    font-family: var(--font-family);
    min-width: 0;
}

.header-search-input::placeholder {
    color: var(--text-secondary);
}

.search-shortcut {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 12px;
    color: var(--text-secondary);
    margin-left: 8px;
    font-family: monospace;
    flex-shrink: 0;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-icon-btn {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.3s;
}

.header-icon-btn:hover {
    background: var(--bg-secondary);
}

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

/* Settings Dropdown */
.settings-dropdown-wrapper {
    position: relative;
}

.settings-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 8px;
    min-width: 200px;
    max-width: calc(100vw - 32px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    z-index: 1001;
}

.settings-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.settings-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.settings-menu-item:hover {
    background: var(--bg-secondary);
}

.settings-menu-item.language-item {
    position: relative;
}

/* Language Dropdown */
.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 8px;
    min-width: 280px;
    width: 100%;
    max-height: 400px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-search {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: var(--bg-secondary);
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid var(--border-color);
}

.language-search svg {
    width: 16px;
    height: 16px;
    color: var(--text-secondary);
    margin-right: 8px;
    flex-shrink: 0;
}

.language-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-color);
    font-size: 14px;
    font-family: var(--font-family);
}

.language-search-input::placeholder {
    color: var(--text-secondary);
}

.language-list {
    overflow-y: auto;
    max-height: 320px;
    padding-right: 4px;
}

.language-list::-webkit-scrollbar {
    width: 6px;
}

.language-list::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 3px;
}

.language-list::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.language-list::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

.language-option {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    gap: 12px;
}

.language-option:hover {
    background: var(--bg-secondary);
}

.language-option.selected {
    background: var(--bg-secondary);
}

.language-flag-img {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
    display: block;
}

.language-name {
    flex: 1;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
}

.language-code {
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 500;
    flex-shrink: 0;
}

.current-language-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
    display: block;
}

.language-option[style*="display: none"] {
    display: none !important;
}

/* Currency Dropdown */
.settings-menu-item.currency-item {
    position: relative;
}

.currency-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 8px;
    min-width: 280px;
    width: 100%;
    max-height: 400px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.currency-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.currency-search {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: var(--bg-secondary);
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid var(--border-color);
}

.currency-search svg {
    width: 16px;
    height: 16px;
    color: var(--text-secondary);
    margin-right: 8px;
    flex-shrink: 0;
}

.currency-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-color);
    font-size: 14px;
    font-family: var(--font-family);
}

.currency-search-input::placeholder {
    color: var(--text-secondary);
}

.currency-list {
    overflow-y: auto;
    max-height: 320px;
    padding-right: 4px;
}

.currency-list::-webkit-scrollbar {
    width: 6px;
}

.currency-list::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 3px;
}

.currency-list::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.currency-list::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

.currency-option {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    gap: 12px;
}

.currency-option:hover {
    background: var(--bg-secondary);
}

.currency-option.selected {
    background: var(--bg-secondary);
}

.currency-flag-img {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
    display: block;
}

.currency-code {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 600;
    min-width: 50px;
    flex-shrink: 0;
}

.currency-symbol {
    color: var(--text-secondary);
    font-size: 14px;
    min-width: 40px;
    flex-shrink: 0;
}

.currency-name {
    flex: 1;
    color: var(--text-secondary);
    font-size: 13px;
}

.current-currency-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
    display: block;
}

.currency-option[style*="display: none"] {
    display: none !important;
}

.light-theme .currency-dropdown {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.light-theme .currency-search {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

.light-theme .currency-option:hover,
.light-theme .currency-option.selected {
    background: var(--bg-secondary);
}

.light-theme .currency-list::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

.light-theme .currency-list::-webkit-scrollbar-thumb {
    background: var(--border-color);
}

.light-theme .currency-list::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

.settings-menu-label {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
}

.settings-menu-value {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-size: 14px;
    gap: 6px;
}

.settings-menu-value .current-language-flag,
.settings-menu-value .current-currency-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
    display: block;
}

/* Theme Toggle */
.theme-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    cursor: pointer;
}

.theme-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-secondary);
    border-radius: 24px;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 2px;
}

.toggle-slider:before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 2px;
    background-color: var(--text-color);
    border-radius: 50%;
    transition: transform 0.3s;
    z-index: 2;
}

.theme-toggle input:checked + .toggle-slider {
    background-color: #FF875B;
}

.theme-toggle input:checked + .toggle-slider:before {
    transform: translateX(20px);
}

.toggle-icon {
    position: absolute;
    left: 4px;
    color: #fff;
    transition: left 0.3s, opacity 0.3s;
    z-index: 3;
    width: 16px;
    height: 16px;
}

.theme-toggle input:checked + .toggle-slider .toggle-icon {
    left: 24px;
    color: #fff;
}

.header-divider {
    width: 1px;
    height: 24px;
    background: var(--border-color);
    margin: 0 4px;
    flex-shrink: 0;
}

.btn-text {
    background: none;
    color: var(--text-color);
    border: none;
    padding: 10px 16px;
}

.btn-text:hover {
    background: var(--bg-secondary);
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    font-family: var(--font-family);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #4a54e6;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--bg-color);
}

.btn-secondary:hover {
    background: #e0e0e0;
}

.btn-connect {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    width: 100%;
    max-width: 140px;
    font-weight: 500;
    white-space: nowrap;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-connect:hover {
    background: #6b7aff;
    transform: translateY(-1px);
}

.btn-link {
    background: none;
    color: var(--primary-color);
    text-decoration: underline;
    padding: 0;
    border: none;
}

.btn-link:hover {
    color: #7b85ff;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.hero-title {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-color);
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Wallet Cards */
.wallet-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.wallet-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.wallet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(91, 103, 255, 0.2);
    border-color: var(--primary-color);
}

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

.wallet-icon img {
    width: 88px;
    height: 88px;
    object-fit: contain;
}

.wallet-card-other .wallet-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.wallet-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex: 1;
    justify-content: flex-end;
}

.wallet-name {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 13px;
    min-height: 20px;
}

.btn-connect {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    width: 100%;
    max-width: 140px;
    font-weight: 500;
    white-space: nowrap;
}

.btn-connect:hover {
    background: #6b7aff;
    transform: translateY(-1px);
}

/* Search Field */
.search-field {
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
    background: var(--bg-card);
    color: var(--text-color);
    font-family: var(--font-family);
}

.search-input:focus {
    border-color: var(--primary-color);
}

.search-input::placeholder {
    color: var(--text-secondary);
}

.icon-search {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="11" cy="11" r="8"/><path d="m21 21-4.35-4.35"/></svg>') no-repeat center;
    background-size: contain;
    pointer-events: none;
}

/* Features Section */
.features {
    padding: 100px 0;
    width: 100%;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    width: 100%;
}

.feature-item.reverse {
    direction: rtl;
}

.feature-item.reverse > * {
    direction: ltr;
}

.feature-title {
    font-size: 41px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.feature-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.feature-description strong {
    color: var(--text-color);
}

.feature-image {
    position: relative;
    width: 100%;
    height: 400px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
    image-rendering: -webkit-optimize-contrast;
}

/* Download App Section */
.download-app {
    padding: 100px 0;
    background: var(--bg-secondary);
    width: 100%;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.download-info {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.download-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
}

.download-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.download-image {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
}

.download-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.download-badge {
    display: inline-block;
    max-width: 100%;
    flex-shrink: 0;
}

.download-badge img {
    height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.trustpilot-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding: 12px 16px;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    flex-wrap: wrap;
    text-decoration: none;
    color: inherit;
}

.trustpilot-rating:hover {
    text-decoration: none;
    opacity: 0.9;
}

.tp-widget-trustscore {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

.tp-widget-stars {
    display: inline-block;
    width: 150px;
    min-width: 150px;
}

.tp-stars {
    width: 100%;
}

.tp-star {
    display: inline-block;
}

.tp-star__canvas {
    rx: 4;
    ry: 4;
}

.tp-star__canvas--half {
    rx: 4;
    ry: 4;
}

.tp-star__shape {
    fill: #FFFFFF;
}

.widget-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tp-widget-rating {
    font-size: 14px;
    color: var(--text-secondary);
}

.tp-link-underlined {
    text-decoration: underline;
}

.tp-widget-rating strong {
    font-weight: 600;
    color: var(--text-color);
}

.tp-widget-logo {
    display: inline-block;
    width: 100px;
    min-width: 100px;
}

.tp-logo__text {
    fill: var(--text-color);
}

.light-theme .tp-logo__text {
    fill: #191919;
}

.light-theme .trustpilot-rating {
    background: var(--bg-card);
    border-color: var(--border-color);
}

.light-theme .qr-code-content {
    background: var(--bg-card);
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    width: 100%;
}

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

.section-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-description {
    font-size: 16px;
    color: var(--text-secondary);
}

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

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.reviewer-name {
    font-weight: 600;
    font-size: 20px;
    display: block;
    margin-bottom: 12px;
}

.review-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.reviews-cta {
    text-align: center;
    margin: 40px 0;
}

.platform-reviews {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.platform-review {
    text-align: center;
}

.platform-logo {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.platform-rating {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.platform-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.platform-stars img {
    height: 20px;
}

/* Questions Section */
.questions {
    padding: 100px 0;
    background: var(--bg-secondary);
    width: 100%;
}

.question-item {
    margin-bottom: 60px;
}

.question-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.question-answer {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.benefits-list {
    list-style: none;
    margin-top: 20px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 500;
}

.benefits-list li img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Statistics Section */
.statistics {
    padding: 100px 0;
    width: 100%;
}

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

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

.stat-number {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(138, 43, 226, 0.5),
        0 0 20px rgba(138, 43, 226, 0.4),
        0 0 30px rgba(138, 43, 226, 0.3),
        0 0 40px rgba(138, 43, 226, 0.2);
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(138, 43, 226, 0.5),
            0 0 20px rgba(138, 43, 226, 0.4),
            0 0 30px rgba(138, 43, 226, 0.3),
            0 0 40px rgba(138, 43, 226, 0.2);
    }
    50% {
        text-shadow: 
            0 0 15px rgba(138, 43, 226, 0.6),
            0 0 25px rgba(138, 43, 226, 0.5),
            0 0 35px rgba(138, 43, 226, 0.4),
            0 0 45px rgba(138, 43, 226, 0.3);
    }
}

.stat-label {
    font-size: 23px;
    font-weight: 500;
    margin-bottom: 8px;
}

.stat-description {
    font-size: 14px;
    color: var(--text-secondary);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--bg-secondary);
    width: 100%;
}

.faq-list {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-answer p strong {
    color: var(--text-color);
}

/* Explorers Section */
.explorers {
    padding: 100px 0;
    width: 100%;
}

.explorers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.explorer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.explorer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(91, 103, 255, 0.2);
    border-color: var(--primary-color);
}

.explorer-item img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.explorer-item span {
    font-size: 20px;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 40px 0;
    text-align: center;
    width: 100%;
}

/* Responsive - Desktop First Approach */
@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .header-search {
        max-width: 300px;
    }
    
    .nav {
        gap: 16px;
        margin-left: 20px;
    }
    
    .nav-link {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .feature-title {
        font-size: 36px;
    }
    
    .hero-title {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .header {
        padding: 12px 0;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .nav {
        gap: 12px;
        margin-left: 16px;
    }
    
    .header-search {
        max-width: 280px;
        margin: 0 16px;
    }
    
    .feature-item {
        gap: 40px;
    }
    
    .feature-title {
        font-size: 32px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero {
        padding: 80px 0;
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .logo-img {
        height: 28px;
    }
    
    .nav {
        order: 3;
        width: 100%;
        margin-left: 0;
        margin-top: 12px;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
        scrollbar-width: thin;
    }
    
    .nav::-webkit-scrollbar {
        height: 4px;
    }
    
    .nav::-webkit-scrollbar-track {
        background: var(--bg-secondary);
    }
    
    .nav::-webkit-scrollbar-thumb {
        background: var(--border-color);
        border-radius: 2px;
    }
    
    .nav-link {
        white-space: nowrap;
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .header-search {
        order: 2;
        max-width: 100%;
        margin: 0;
        flex: 1 1 100%;
        min-width: 0;
    }
    
    .header-actions {
        order: 1;
        margin-left: auto;
        gap: 8px;
        flex-wrap: nowrap;
    }
    
    /* Ensure settings button is visible on mobile */
    .header-actions .settings-btn {
        display: flex !important;
        flex-shrink: 0;
    }
    
    /* Hide other icon buttons but keep settings */
    .header-actions .header-icon-btn:not(.settings-btn) {
        display: none;
    }
    
    .header-actions .btn-text {
        display: none;
    }
    
    .header-actions .btn-primary {
        padding: 10px 16px;
        font-size: 13px;
        white-space: nowrap;
    }
    
    /* Adjust settings dropdown position on mobile */
    .settings-dropdown {
        right: 0;
        left: auto;
        min-width: 260px;
        max-width: calc(100vw - 32px);
    }
    
    /* Adjust language and currency dropdowns on mobile */
    .language-dropdown,
    .currency-dropdown {
        right: 0;
        left: auto;
        min-width: 240px;
        max-width: calc(100vw - 32px);
        width: auto;
    }
    
    .hero {
        padding: 60px 0;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .wallet-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .wallet-card {
        padding: 20px;
    }
    
    .wallet-icon img {
        width: 64px;
        height: 64px;
        max-width: 100%;
    }
    
    .wallet-card-other .wallet-icon img {
        width: 90px;
        height: 90px;
        max-width: 100%;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .feature-item {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .feature-item.reverse {
        direction: ltr;
    }
    
    .feature-title {
        font-size: 28px;
    }
    
    .feature-description {
        font-size: 15px;
    }
    
    .feature-image {
        height: 250px;
        max-height: 350px;
    }
    
    .feature-image img {
        max-height: 350px;
        width: 100%;
        height: auto;
    }
    
    .download-app {
        padding: 60px 0;
    }
    
    .download-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 40px;
        text-align: center;
        align-items: center;
    }
    
    .download-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .download-image {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        order: 1;
    }
    
    .download-image img {
        max-width: 100%;
        width: 100%;
        height: auto;
        max-height: 450px;
        object-fit: contain;
    }
    
    .download-info {
        order: 2;
    }
    
    .download-badges {
        justify-content: center;
    }
    
    .download-badge img {
        height: 50px;
        width: auto;
        max-width: 100%;
    }
    
    .download-title {
        font-size: 28px;
    }
    
    .download-description {
        max-width: 600px;
    }
    
    .explorer-item img {
        width: 22px;
        height: 22px;
        max-width: 100%;
    }
    
    .trustpilot-rating {
        justify-content: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .reviews {
        padding: 60px 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .statistics {
        padding: 60px 0;
    }
    
    .explorers {
        padding: 60px 0;
    }
    
    .explorers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .questions {
        padding: 60px 0;
    }
    
    .faq {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    /* Hide mobile icon button but keep settings button visible */
    .header-actions .header-icon-btn:not(.settings-btn) {
        display: none;
    }
    
    /* Ensure settings button is always visible on mobile */
    .header-actions .settings-btn {
        display: flex !important;
    }
    
    .header-divider {
        display: none;
    }
    
    .nav-more {
        display: none;
    }
    
    /* Make settings dropdown responsive on mobile */
    .settings-dropdown {
        right: 0;
        left: auto;
        min-width: 280px;
        max-width: calc(100vw - 32px);
    }
    
    /* Adjust header actions for mobile */
    .header-actions {
        gap: 8px;
    }
    
    .header-actions .btn-primary {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .search-shortcut {
        display: none;
    }
    
    .hero {
        padding: 40px 0;
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .wallet-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .wallet-card {
        padding: 16px;
    }
    
    .wallet-icon img {
        width: 56px;
        height: 56px;
    }
    
    .wallet-card-other .wallet-icon img {
        width: 80px;
        height: 80px;
    }
    
    .features {
        padding: 40px 0;
    }
    
    .feature-item {
        margin-bottom: 40px;
    }
    
    .feature-title {
        font-size: 24px;
    }
    
    .feature-description {
        font-size: 14px;
    }
    
    .feature-image {
        height: auto;
        min-height: 180px;
        max-height: 280px;
    }
    
    .feature-image img {
        max-height: 280px;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .download-app {
        padding: 40px 16px;
        background: var(--bg-secondary);
    }
    
    .download-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        align-items: center;
        gap: 32px;
        text-align: center;
        width: 100%;
    }
    
    .download-image {
        width: 100%;
        max-width: 100%;
        order: 1;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
    }
    
    .download-image img {
        max-width: 100%;
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
        display: block;
    }
    
    .download-info {
        text-align: center;
        width: 100%;
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
    
    .download-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 16px;
        word-wrap: break-word;
        hyphens: auto;
        font-weight: 600;
        color: var(--text-color);
        width: 100%;
        text-align: center;
    }
    
    .download-description {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 24px;
        word-wrap: break-word;
        color: var(--text-secondary);
        max-width: 100%;
        width: 100%;
        text-align: center;
    }
    
    .download-badges {
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 12px;
        margin-top: 0;
        margin-bottom: 0;
        flex-wrap: nowrap;
        display: flex;
    }
    
    .download-badge {
        flex: 0 0 auto;
        width: auto;
        max-width: 180px;
        min-width: 140px;
    }
    
    .download-badge img {
        height: 50px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }
    
    .trustpilot-rating {
        display: none !important;
    }
    
    .explorers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .explorer-item {
        padding: 16px;
    }
    
    .explorer-item img {
        width: 20px;
        height: 20px;
        max-width: 100%;
    }
    
    .explorer-item span {
        font-size: 14px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-label {
        font-size: 16px;
    }
    
    .stat-description {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .reviewer-name {
        font-size: 18px;
    }
    
    .review-text {
        font-size: 14px;
    }
    
    .question-title {
        font-size: 20px;
    }
    
    .question-answer {
        font-size: 14px;
    }
    
    .benefits-list li {
        font-size: 14px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    .trustpilot-rating {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 8px;
    }
    
    .reviews {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .question-title {
        font-size: 24px;
    }
    
    .question-answer {
        font-size: 16px;
    }
    
    .statistics {
        padding: 40px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .faq {
        padding: 40px 0;
    }
    
    .explorers {
        padding: 40px 0;
    }
    
    .explorers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .benefits-list li {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    /* Ensure settings button is visible even on very small screens */
    .header-actions .settings-btn {
        display: flex !important;
        padding: 6px;
    }
    
    .settings-dropdown {
        right: 0;
        left: auto;
        min-width: 240px;
        max-width: calc(100vw - 24px);
    }
    
    .language-dropdown,
    .currency-dropdown {
        right: 0;
        left: auto;
        min-width: 220px;
        max-width: calc(100vw - 24px);
    }
    
    .hero-title {
        font-size: 20px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .explorers-grid {
        grid-template-columns: 1fr;
    }
    
    .download-app {
        padding: 32px 12px;
    }
    
    .download-content {
        gap: 24px;
    }
    
    .download-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .download-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .download-image img {
        max-height: none;
        width: 100%;
    }
    
    .download-badges {
        gap: 10px;
        margin-top: 0;
        margin-bottom: 0;
        flex-wrap: wrap;
    }
    
    .download-badge {
        max-width: 160px;
        min-width: 130px;
        flex: 0 0 calc(50% - 5px);
    }
    
    .download-badge img {
        height: 45px;
        width: 100%;
    }
}
