@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #ff6b00;
    --primary-dark: #e55e00;
    --primary-light: #ff8a3c;
    --secondary: #b5007c;
    --dark: #000000;
    --darker: #050505;
    --light: #ffffff;
    --red: #ff3333;
    --red-dark: #cc0000;
    --gradient-1: linear-gradient(135deg, #ff6b00, #ff3d00);
    --gradient-2: linear-gradient(135deg, #ff6b00, #ff8a3c);
    --gradient-3: linear-gradient(135deg, #ff6b00 0%, #ff8a3c 50%, #ff6b00 100%);
    --gradient-text: linear-gradient(90deg, #ff6b00, #ff9d5c);
    --accent: #ff3d00;
    --heading-font: 'Syne', sans-serif;
    --body-font: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    font-family: var(--body-font);
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 0, 0.04) 0%, transparent 50%);
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.4;
    background: linear-gradient(-45deg, rgba(0,0,0,1) 0%, rgba(20,20,20,1) 25%, rgba(15,15,15,1) 50%, rgba(10,10,10,1) 75%, rgba(0,0,0,1) 100%);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    overflow: hidden;
}

header::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b00, #ff8a3c, #ff6b00);
    animation: bulletStripe 2s linear infinite;
}

@keyframes bulletStripe {
    0% { left: -100%; }
    100% { left: 100%; }
}

header.scrolled {
    padding: 15px 50px;
    background: #000000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.logo {
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 0.05em;
    position: relative;
    padding: 5px 0;
}

.logo::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--gradient-1);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 60px;
}

nav ul li a {
    color: var(--light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient-1);
    transition: width 0.3s;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a:hover::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    display: flex;
    align-items: center;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wave-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #000000 0%, #0d0500 20%, #1a0a00 30%, #ff6b00 50%, #1a0a00 70%, #0d0500 80%, #000000 100%);
    background-size: 600% 600%;
    z-index: -1;
    animation: smoothColorFlow 15s ease-in-out infinite;
}

@keyframes smoothColorFlow {
    0% { 
        background-position: 0% 0%;
    }
    25% { 
        background-position: 100% 0%;
    }
    50% { 
        background-position: 100% 100%;
    }
    75% { 
        background-position: 0% 100%;
    }
    100% { 
        background-position: 0% 0%;
    }
}

.hero-container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero-content {
    flex: 1;
    max-width: 60%;
    padding-right: 80px;
    position: relative;
    z-index: 2;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 80px;
    bottom: 0;
    width: 33.333%;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    color: var(--primary);
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to {
        left: 100%;
    }
}

.hero-title {
    font-size: clamp(60px, 10vw, 120px);
    line-height: 0.9;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--light);
    position: relative;
}

.hero-title .highlight {
    display: block;
    color: var(--primary);
    font-size: clamp(70px, 12vw, 140px);
    letter-spacing: -0.03em;
    margin-top: 10px;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 5px;
    background: var(--gradient-1);
    bottom: -15px;
    left: 0;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 50px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    color: white;
    padding: 16px 40px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    z-index: -1;
    transition: opacity 0.4s ease-out;
    opacity: 0;
}

.button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.3);
}

.button:hover::before {
    opacity: 1;
}

.button-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.button:hover .button-icon {
    transform: translateX(5px);
}

.decorative-line {
    position: absolute;
    background: var(--gradient-1);
    opacity: 0.3;
    z-index: 1;
}

.line-1 {
    width: 2px;
    height: 200px;
    top: 20%;
    right: 10%;
    transform: rotate(-15deg);
}

.line-2 {
    width: 2px;
    height: 150px;
    bottom: 20%;
    right: 20%;
    transform: rotate(15deg);
}

.decorative-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    z-index: 1;
}

.dot-1 {
    top: 30%;
    right: 8%;
    animation: float 6s ease-in-out infinite alternate;
}

.dot-2 {
    bottom: 25%;
    right: 15%;
    animation: float 8s ease-in-out infinite alternate-reverse;
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

.person-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--darker);
    overflow: hidden;
}

.person-container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}

.person-content {
    width: 40%;
    padding-right: 80px;
}

.person-image-container {
    width: 45%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.person-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.section-title {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.stats-section {
    padding: 120px 0;
    position: relative;
    background-color: var(--dark);
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-card:hover::after {
    transform: scaleX(1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.stat-card:hover::before {
    transform: scale(1.5);
    opacity: 1;
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.6);
}

.stat-value {
    font-family: var(--heading-font);
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
}

.wallets-section {
    padding: 150px 0;
    position: relative;
    background-color: var(--darker);
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-header::before, .section-header::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    top: 30px;
}

.section-header::before {
    left: calc(50% - 100px);
}

.section-header::after {
    right: calc(50% - 100px);
}

.wallets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.wallet-card {
    background: rgba(15, 15, 15, 0.9);
    border-radius: 8px;
    padding: 30px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 30px;
    min-height: 200px;
}

.wallet-qr-section {
    flex-shrink: 0;
}

.wallet-qr {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.wallet-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wallet-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.wallet-icon {
    width: 40px;
    height: 40px;
}

.wallet-name {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--light);
    margin: 0;
}

.wallet-title {
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 10px;
    line-height: 1.3;
}

.wallet-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    line-height: 1.4;
}

.wallet-address-container {
    background-color: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.wallet-address {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    word-break: break-all;
    overflow-wrap: break-word;
    line-height: 1.4;
    display: block;
    width: 100%;
}

.copy-button {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.copy-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.payment-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
}

.status-indicator::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.faq-section {
    padding: 150px 0;
    position: relative;
    background-color: var(--dark);
    overflow: hidden;
}

.faq-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-table {
    flex: 1;
    max-width: 600px;
}

.faq-container {
    flex: 1;
    max-width: 500px;
}

#liveTransactionsTable {
    width: 100%;
    border-collapse: collapse;
    background: rgba(15, 15, 15, 0.9);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

#liveTransactionsTable thead {
    background: rgba(255, 107, 0, 0.1);
    border-bottom: 2px solid var(--primary);
}

#liveTransactionsTable th {
    padding: 20px 15px;
    text-align: left;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#liveTransactionsTable td {
    padding: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Courier New', monospace;
}

#liveTransactionsTable tr:hover {
    background: rgba(255, 107, 0, 0.05);
}

.coin-cell {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--heading-font);
    font-weight: 600;
}

.coin-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.address-cell {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 11px;
}

.status-ok {
    color: #28a745;
    font-weight: 700;
    text-transform: uppercase;
}

.new-transaction {
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    background-color: rgba(15, 15, 15, 0.7);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.faq-question {
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 600;
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 30px;
}

footer {
    background-color: var(--darker);
    padding: 60px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile-specific fixes */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: clamp(50px, 8vw, 100px);
    }
    
    .hero-title .highlight {
        font-size: clamp(60px, 10vw, 110px);
    }

    .section-title {
        font-size: clamp(40px, 5vw, 54px);
    }

    .stat-value {
        font-size: clamp(35px, 5vw, 60px);
    }

    .person-container {
        flex-direction: column;
    }

    .person-content, .person-image-container {
        width: 100%;
    }

    .person-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .stat-card {
        padding: 40px 30px;
    }
}

@media (max-width: 992px) {
    header {
        padding: 20px 30px;
    }

    .logo {
        font-size: 24px;
    }

    nav ul {
        gap: 30px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        padding-right: 0;
    }

    .hero-image {
        display: none;
    }

    .hero-title {
        font-size: clamp(45px, 7vw, 80px);
        word-wrap: break-word;
    }
    
    .hero-title .highlight {
        font-size: clamp(55px, 9vw, 90px);
        word-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: clamp(32px, 5vw, 44px);
        word-wrap: break-word;
    }

    .wallets-grid {
        grid-template-columns: 1fr;
    }

    .wallet-card {
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }

    .wallet-qr-section {
        margin-bottom: 20px;
    }

    .wallet-qr {
        width: 100px;
        height: 100px;
    }

    .section-header::before, .section-header::after {
        display: none;
    }

    .stats-section, .wallets-section, .faq-section {
        padding: 100px 0;
    }

    .faq-layout {
        flex-direction: column;
        gap: 40px;
        max-width: 100%;
    }

    .faq-table, .faq-container {
        max-width: 100%;
    }

    .faq-table {
        width: 100%;
    }

    #liveTransactionsTable {
        width: 100%;
    }

    #liveTransactionsTable th,
    #liveTransactionsTable td {
        padding: 12px 10px;
        font-size: 12px;
    }

    .address-cell {
        max-width: 100px;
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    nav ul {
        gap: 20px;
    }

    nav ul li a {
        font-size: 14px;
    }

    .hero {
        padding-top: 60px;
    }

    .hero-container {
        flex-direction: column;
        padding: 0 20px;
    }

    .hero-content {
        max-width: 100%;
        padding-right: 0;
    }

    .hero-image {
        display: none;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: clamp(40px, 10vw, 60px);
        margin-bottom: 30px;
    }
    
    .hero-title .highlight {
        font-size: clamp(48px, 12vw, 70px);
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .section-title {
        font-size: clamp(28px, 8vw, 36px);
    }

    .button {
        padding: 14px 30px;
        font-size: 14px;
    }

    .stat-card {
        padding: 35px 25px;
    }

    .stat-value {
        font-size: clamp(32px, 8vw, 50px);
        margin-bottom: 15px;
    }

    .stat-label {
        font-size: 14px;
    }

    .wallet-card {
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }

    .wallet-qr-section {
        margin-bottom: 20px;
    }

    .wallet-qr {
        width: 100px;
        height: 100px;
    }

    .wallet-title {
        font-size: 18px;
    }

    .wallet-address {
        font-size: 12px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .decorative-line, .decorative-dot {
        display: none;
    }

    .faq-layout {
        flex-direction: column;
        gap: 40px;
        max-width: 100%;
    }

    .faq-table, .faq-container {
        max-width: 100%;
    }

    .faq-table {
        width: 100%;
    }

    #liveTransactionsTable {
        width: 100%;
    }

    #liveTransactionsTable th,
    #liveTransactionsTable td {
        padding: 10px 8px;
        font-size: 12px;
    }

    .address-cell {
        max-width: 80px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    header {
        padding: 10px 15px;
    }

    nav ul {
        gap: 15px;
    }

    nav ul li a {
        font-size: 12px;
        letter-spacing: 0.05em;
    }

    .hero-title {
        font-size: clamp(36px, 12vw, 48px);
        letter-spacing: -0.01em;
    }
    
    .hero-title .highlight {
        font-size: clamp(42px, 14vw, 56px);
        margin-top: 5px;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.6;
    }

    .button {
        padding: 12px 24px;
        font-size: 13px;
        letter-spacing: 0.05em;
    }

    .section-title {
        font-size: clamp(24px, 10vw, 32px);
        margin-bottom: 20px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .stats-section, .wallets-section, .faq-section {
        padding: 80px 0;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stat-value {
        font-size: clamp(28px, 10vw, 40px);
    }

    .wallets-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .wallet-card {
        padding: 25px 15px;
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }

    .wallet-qr-section {
        margin-bottom: 20px;
    }

    .wallet-icon {
        width: 40px;
        height: 40px;
    }

    .wallet-name {
        font-size: 20px;
    }

    .wallet-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .wallet-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .wallet-address-container {
        padding: 12px 10px;
    }

    .wallet-address {
        font-size: 11px;
        line-height: 1.6;
    }

    .copy-button {
        padding: 10px 16px;
        font-size: 12px;
    }

    .faq-question {
        font-size: 18px;
        padding: 20px 20px;
    }

    .faq-answer {
        font-size: 14px;
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding-bottom: 20px;
    }

    footer {
        padding: 40px 0;
    }

    .footer-logo {
        font-size: 20px;
    }

    .footer-text {
        font-size: 12px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

html {
    scroll-behavior: smooth;
}

.dot-pattern {
    position: fixed;
    width: 200px;
    height: 200px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
    background-image: radial-gradient(circle, var(--primary) 2px, transparent 2px);
    background-size: 20px 20px;
    background-repeat: repeat;
    animation: float 8s ease-in-out infinite alternate;
}

.dot-pattern-1 {
    top: 10%;
    left: -50px;
    transform: rotate(-15deg);
    animation-delay: 0s;
}

.dot-pattern-2 {
    top: 60%;
    right: -50px;
    transform: rotate(15deg);
    animation-delay: -2s;
}

.dot-pattern-3 {
    bottom: 20%;
    left: -80px;
    transform: rotate(25deg);
    animation-delay: -4s;
    width: 150px;
    height: 150px;
}

.dot-pattern-4 {
    top: 30%;
    right: -80px;
    transform: rotate(-25deg);
    animation-delay: -6s;
    width: 150px;
    height: 150px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary), var(--primary-dark));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--primary-light), var(--primary));
}

.ribbon-section {
    background: var(--gradient-1);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 80px 0;
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.3);
}

.ribbon-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><line x1="0" y1="100" x2="100" y2="0" stroke="rgba(0,0,0,0.1)" stroke-width="2"></line></svg>') repeat;
    background-size: 20px 20px;
    opacity: 0.3;
}

.ribbon-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.ribbon-title {
    font-family: var(--heading-font);
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--light);
}

.ribbon-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.ribbon-section .button {
    background: var(--light);
    color: var(--dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ribbon-section .button:hover {
    background: var(--light);
    color: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.ribbon-section .button::before {
     background: var(--light);
}

.ribbon-section .button:hover::before {
    opacity: 0.8; /* Slightly less opaque on hover */
}
