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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    background-image: 
        radial-gradient(circle at 25% 25%, #1a1a2e 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, #16213e 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #0f0f23 50%, #000000 100%);
    min-height: 100vh;
    color: #e0e0e0;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(0, 123, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(0, 123, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.header {
    text-align: center;
    margin-bottom: 4rem;
    color: white;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a0a0a 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 123, 255, 0.15),
        0 0 0 1px rgba(0, 123, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 123, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 123, 255, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(0, 123, 255, 0.02) 50%, transparent 70%);
    opacity: 0.8;
    pointer-events: none;
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(0, 123, 255, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(0, 123, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
}

.header > * {
    position: relative;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.logo-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2) 0%, rgba(0, 123, 255, 0.1) 100%);
    padding: 1rem;
    border-radius: 50%;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 123, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 123, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #007bff, #0056b3, #007bff);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffffff, #007bff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(0, 123, 255, 0.5);
    position: relative;
}

.subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #b0b0b0;
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.8;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.7;
    color: #a0a0a0;
}

.hero-button {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(0, 123, 255, 0.4),
        0 0 0 1px rgba(0, 123, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 123, 255, 0.3);
}

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

.hero-button:hover::before {
    left: 100%;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(0, 123, 255, 0.5),
        0 0 0 1px rgba(0, 123, 255, 0.4),
        0 0 20px rgba(0, 123, 255, 0.3);
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
}

.hero-button:active {
    transform: translateY(-1px);
    box-shadow: 
        0 8px 20px rgba(0, 123, 255, 0.4),
        0 0 0 1px rgba(0, 123, 255, 0.3);
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.issue-card {
    background: rgba(10, 10, 20, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 123, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 123, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.issue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3, #007bff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.issue-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 10%, rgba(0, 123, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(0, 123, 255, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.issue-card:hover::before {
    transform: scaleX(1);
}

.issue-card:hover::after {
    opacity: 1;
}

.issue-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 123, 255, 0.2),
        0 0 30px rgba(0, 123, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(15, 15, 25, 0.9);
}

.issue-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.8rem;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2), rgba(0, 123, 255, 0.1));
    border-radius: 16px;
    border: 1px solid rgba(0, 123, 255, 0.3);
    box-shadow: 
        0 4px 16px rgba(0, 123, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.issue-icon::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.3), transparent, rgba(0, 123, 255, 0.3));
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.issue-card:hover .issue-icon::before {
    opacity: 1;
}

.issue-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #ffffff;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.issue-card p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.connect-button {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 123, 255, 0.3);
    box-shadow: 
        0 4px 16px rgba(0, 123, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.connect-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.connect-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.connect-button:hover::before {
    left: 100%;
}

.connect-button:hover::after {
    opacity: 1;
}

.connect-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0, 123, 255, 0.4),
        0 0 0 1px rgba(0, 123, 255, 0.4),
        0 0 20px rgba(0, 123, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
}

.connect-button:active {
    transform: translateY(0);
    box-shadow: 
        0 4px 15px rgba(0, 123, 255, 0.3),
        0 0 0 1px rgba(0, 123, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .header {
        padding: 3rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .header h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .issues-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .issue-card {
        padding: 1.5rem;
    }
    
    .logo {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .logo-icon {
        font-size: 2rem;
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 2.5rem 1rem;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .issue-card {
        padding: 1.2rem;
    }
    
    .issue-card h3 {
        font-size: 1.2rem;
    }
    
    .issue-card p {
        font-size: 0.9rem;
    }
    
    .connect-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Animation for cards appearing */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.issue-card {
    animation: fadeInUp 0.6s ease forwards;
}

.issue-card:nth-child(even) {
    animation-delay: 0.1s;
}

.issue-card:nth-child(3n) {
    animation-delay: 0.2s;
}

/* Enhanced pulse animation for connect buttons */
@keyframes pulse {
    0% {
        box-shadow: 
            0 0 0 0 rgba(0, 123, 255, 0.4),
            0 4px 16px rgba(0, 123, 255, 0.3);
    }
    70% {
        box-shadow: 
            0 0 0 10px rgba(0, 123, 255, 0),
            0 4px 16px rgba(0, 123, 255, 0.3);
    }
    100% {
        box-shadow: 
            0 0 0 0 rgba(0, 123, 255, 0),
            0 4px 16px rgba(0, 123, 255, 0.3);
    }
}

.connect-button:focus {
    animation: pulse 1.5s infinite;
    outline: none;
}

/* Subtle floating animation for issue icons */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.issue-card:hover .issue-icon {
    animation: float 2s ease-in-out infinite;
}

/* Glowing text effect for headings */
@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 5px rgba(0, 123, 255, 0.5); }
    50% { text-shadow: 0 0 20px rgba(0, 123, 255, 0.8), 0 0 30px rgba(0, 123, 255, 0.6); }
}

.issue-card:hover h3 {
    animation: textGlow 2s ease-in-out infinite;
}

/* Supported Wallets Section */
.supported-wallets {
    margin: 6rem 0;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    border-radius: 24px;
    border: 1px solid rgba(0, 123, 255, 0.2);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 123, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.supported-wallets::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 123, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 123, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.supported-wallets h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffffff, #007bff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(0, 123, 255, 0.5);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(0, 123, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #007bff, #00d4ff, #007bff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.2);
    border-color: rgba(0, 123, 255, 0.4);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #007bff, #00d4ff, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% { text-shadow: 0 0 20px rgba(0, 123, 255, 0.5); }
    100% { text-shadow: 0 0 30px rgba(0, 123, 255, 0.8), 0 0 40px rgba(0, 123, 255, 0.3); }
}

.stat-label {
    font-size: 1.1rem;
    color: #b0b0b0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.9rem;
    color: #888;
    font-weight: 400;
    line-height: 1.4;
}

/* Popular Wallets Grid */
.popular-wallets {
    position: relative;
    z-index: 1;
}

.popular-wallets h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

.wallets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.wallet-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(0, 123, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.wallet-item:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 123, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.2);
    background: rgba(0, 123, 255, 0.05);
}

.wallet-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    padding: 0.8rem;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2), rgba(0, 123, 255, 0.1));
    border-radius: 50%;
    border: 1px solid rgba(0, 123, 255, 0.3);
}

.wallet-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #e0e0e0;
    text-align: center;
}

/* How It Works Section */
.how-it-works {
    margin: 6rem 0;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffffff, #007bff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    text-shadow: 0 0 30px rgba(0, 123, 255, 0.5);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    font-weight: 400;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: rgba(10, 10, 20, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0, 123, 255, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 123, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3, #007bff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 123, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 123, 255, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card:hover::after {
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 123, 255, 0.2),
        0 0 30px rgba(0, 123, 255, 0.15);
    background: rgba(15, 15, 25, 0.9);
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(0, 123, 255, 0.2);
    z-index: 0;
    text-shadow: 0 0 20px rgba(0, 123, 255, 0.3);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2), rgba(0, 123, 255, 0.1));
    border-radius: 50%;
    border: 2px solid rgba(0, 123, 255, 0.3);
    box-shadow: 
        0 8px 25px rgba(0, 123, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 
        0 12px 35px rgba(0, 123, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.step-card p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.step-features {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2), rgba(0, 123, 255, 0.1));
    color: #007bff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 123, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* Testimonials Section */
.testimonials {
    margin: 6rem 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffffff, #007bff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    text-shadow: 0 0 30px rgba(0, 123, 255, 0.5);
}

.testimonials-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.testimonial-card {
    min-width: 100%;
    background: rgba(10, 10, 20, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(0, 123, 255, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 123, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 123, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 123, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.quote-icon {
    font-size: 4rem;
    color: rgba(0, 123, 255, 0.3);
    font-family: serif;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #e0e0e0;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 1.5rem;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.star {
    font-size: 1.2rem;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2), rgba(0, 123, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 2px solid rgba(0, 123, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 123, 255, 0.2);
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.author-title {
    font-size: 0.9rem;
    color: #007bff;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.author-location {
    font-size: 0.8rem;
    color: #888;
    font-weight: 400;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 123, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.slider-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.slider-btn:hover::before {
    left: 100%;
}

.slider-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.5);
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 123, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.dot.active::before {
    width: 20px;
    height: 20px;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .supported-wallets {
        margin: 4rem 0;
        padding: 3rem 1.5rem;
    }
    
    .supported-wallets h2 {
        font-size: 2rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .wallets-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .wallet-item {
        padding: 1rem 0.8rem;
    }
    
    .wallet-icon {
        font-size: 1.5rem;
        padding: 0.6rem;
    }
    
    .how-it-works h2,
    .testimonials h2 {
        font-size: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-card {
        padding: 2.5rem 2rem;
    }
    
    .testimonial-content p {
        font-size: 1.1rem;
    }
    
    .slider-controls {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .supported-wallets {
        padding: 2.5rem 1rem;
    }
    
    .supported-wallets h2 {
        font-size: 1.8rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .wallets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .how-it-works h2,
    .testimonials h2 {
        font-size: 1.8rem;
    }
    
    .step-card {
        padding: 1.5rem 1rem;
    }
    
    .step-number {
        font-size: 3rem;
        top: -10px;
        right: 15px;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}