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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #1a1410 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #e4e4e7;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(26, 20, 16, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #fbbf24;
}

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

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

.nav-links a:hover {
    color: #fbbf24;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fbbf24;
    border-radius: 3px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 80px);
        background: rgba(26, 20, 16, 0.98);
        flex-direction: column;
        padding: 30px;
        border-left: 1px solid rgba(245, 158, 11, 0.2);
        transition: right 0.3s ease;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

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

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(234, 179, 8, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 24px;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #eab308 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 18px;
    color: #9ca3af;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-large {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #eab308 100%);
    color: #1a1a1a;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.3);
}

.btn-register {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fbbf24;
    border: 2px solid #f59e0b;
}

.btn-secondary:hover {
    background: rgba(245, 158, 11, 0.1);
    transform: translateY(-2px);
}

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

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

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(26, 20, 16, 0.9), rgba(15, 15, 15, 0.9));
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 5%;
    animation-delay: 2s;
}

.card-3 {
    top: 70%;
    right: 20%;
    animation-delay: 4s;
}

.card-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.card-title {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 8px;
}

.card-value {
    font-size: 24px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 4px;
}

.card-subtitle {
    font-size: 12px;
    color: #6b7280;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: rgba(15, 15, 15, 0.5);
}

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

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
}

.section-header p {
    font-size: 18px;
    color: #9ca3af;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(26, 20, 16, 0.6), rgba(15, 15, 15, 0.6));
    border: 1px solid rgba(245, 158, 11, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.15);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fbbf24;
}

.feature-card p {
    color: #9ca3af;
    line-height: 1.7;
}

/* Payment Section */
.payment-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.8), rgba(26, 20, 16, 0.6));
}

.payment-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 40px;
}

.wallet-address-card {
    background: linear-gradient(135deg, rgba(26, 20, 16, 0.9), rgba(15, 15, 15, 0.9));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.card-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fbbf24;
}

.network-badge {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.address-display {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.address-display code {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    padding: 16px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #fbbf24;
    word-break: break-all;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.copy-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #eab308 100%);
    color: #1a1a1a;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.warning-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 16px;
    color: #fca5a5;
    font-size: 14px;
}

.qr-card {
    background: linear-gradient(135deg, rgba(26, 20, 16, 0.9), rgba(15, 15, 15, 0.9));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin-bottom: 24px;
}

.qr-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 20px;
}

.qr-code {
    display: inline-block;
    padding: 16px;
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
}

.qr-subtitle {
    font-size: 14px;
    color: #9ca3af;
}

.payment-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-wallet-btn {
    background: linear-gradient(135deg, #3375bb 0%, #2563eb 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
    border: none;
}

.trust-wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.secondary-btn {
    background: transparent;
    color: #fbbf24;
    border: 2px solid #f59e0b;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.secondary-btn:hover {
    background: rgba(245, 158, 11, 0.1);
    transform: translateY(-2px);
}

.payment-features h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 24px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #f59e0b 0%, #eab308 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.6;
}

/* Tokens Section */
.tokens-section {
    padding: 80px 0;
    background: rgba(15, 15, 15, 0.5);
}

/* CoinMarketCap-Style Token Table */
.tokens-table-wrapper {
    background: linear-gradient(135deg, rgba(26, 20, 16, 0.6), rgba(15, 15, 15, 0.6));
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.tokens-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.tokens-table thead {
    background: rgba(245, 158, 11, 0.1);
    border-bottom: 2px solid rgba(245, 158, 11, 0.3);
}

.tokens-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tokens-table th:first-child {
    width: 5%;
    text-align: center;
}

.tokens-table th:nth-child(2) {
    width: 35%;
}

.tokens-table th:nth-child(3) {
    width: 20%;
    text-align: right;
}

.tokens-table th:nth-child(4) {
    width: 15%;
    text-align: right;
}

.tokens-table th:nth-child(5) {
    width: 25%;
    text-align: right;
}

.tokens-table tbody tr {
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
    transition: all 0.3s ease;
}

.tokens-table tbody tr:hover {
    background: rgba(245, 158, 11, 0.05);
    transform: scale(1.01);
}

.tokens-table tbody tr:last-child {
    border-bottom: none;
}

.tokens-table td {
    padding: 20px;
    font-size: 14px;
    color: #ffffff;
}

.tokens-table td.rank {
    text-align: center;
    font-weight: 600;
    color: #9ca3af;
}

.tokens-table td.name {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    min-width: 150px;
    max-width: 300px;
}

.tokens-table .token-logo {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px;
    min-height: 32px;
    max-width: 32px;
    max-height: 32px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.2));
}

.tokens-table .token-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tokens-table .token-symbol {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.tokens-table .token-name {
    font-size: 13px;
    color: #9ca3af;
}

.tokens-table td.price {
    text-align: right;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.tokens-table td.change {
    text-align: right;
    font-weight: 600;
    font-size: 14px;
}

.tokens-table td.change.positive {
    color: #10b981;
}

.tokens-table td.change.negative {
    color: #ef4444;
}

.tokens-table td.market-cap {
    text-align: right;
    font-size: 14px;
    color: #9ca3af;
}

/* Price update flash animation */
@keyframes priceFlash {
    0%, 100% {
        background: transparent;
    }
    50% {
        background: rgba(245, 158, 11, 0.3);
    }
}

.tokens-table td.price.updating {
    animation: priceFlash 0.5s ease-in-out;
    border-radius: 4px;
}

.tokens-table td.change.updating {
    animation: priceFlash 0.5s ease-in-out;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tokens-table th,
    .tokens-table td {
        padding: 12px 10px;
        font-size: 12px;
    }

    .tokens-table .token-logo {
        width: 24px;
        height: 24px;
    }

    .tokens-table .token-symbol {
        font-size: 14px;
    }

    .tokens-table .token-name {
        font-size: 11px;
    }

    .tokens-table td.price {
        font-size: 14px;
    }

    .hide-mobile {
        display: none;
    }
}

/* Chains Section */
.chains-section {
    padding: 80px 0;
}

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

.chain-card {
    background: linear-gradient(135deg, rgba(26, 20, 16, 0.6), rgba(15, 15, 15, 0.6));
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}

.chain-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.2);
}

.chain-logo {
    font-size: 48px;
    margin-bottom: 16px;
}

.chain-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.chain-type {
    font-size: 14px;
    color: #fbbf24;
    font-weight: 600;
}

/* API Section */
.api-section {
    padding: 80px 0;
    background: rgba(15, 15, 15, 0.5);
}

.api-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.api-info h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fbbf24;
}

.api-info p {
    font-size: 16px;
    color: #9ca3af;
    margin-bottom: 24px;
    line-height: 1.7;
}

.api-features {
    list-style: none;
    margin-bottom: 32px;
}

.api-features li {
    padding: 12px 0;
    color: #d1d5db;
    font-size: 16px;
}

.code-example {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.code-header {
    background: rgba(245, 158, 11, 0.1);
    padding: 12px 20px;
    font-weight: 600;
    color: #fbbf24;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.code-example pre {
    padding: 24px;
    overflow-x: auto;
}

.code-example code {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #d1d5db;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: rgba(10, 10, 10, 0.8);
    border-top: 1px solid rgba(245, 158, 11, 0.1);
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: #6b7280;
    line-height: 1.7;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #fbbf24;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(245, 158, 11, 0.1);
    color: #6b7280;
}

.disclaimer {
    margin-top: 12px;
    font-size: 14px;
    color: #fca5a5;
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-container {
        grid-template-columns: 1fr;
    }
    
    .api-preview {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        gap: 16px;
        font-size: 14px;
    }
}
/* Download App Section */
.download-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.app-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-placeholder {
    animation: float 6s ease-in-out infinite;
}

.download-buttons h3 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 16px;
}

.download-buttons p {
    color: #94a3b8;
    font-size: 18px;
    margin-bottom: 32px;
}

.store-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.store-btn:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: #f59e0b;
    transform: translateY(-2px);
}

.store-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-text .small {
    font-size: 11px;
    color: #94a3b8;
}

.store-text .large {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.download-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.download-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
    color: #f59e0b;
    transition: all 0.3s;
    margin-bottom: 0 !important;
}

.social-links a:hover {
    background: #f59e0b;
    color: #0f172a;
    transform: translateY(-3px);
}

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

/* Responsive adjustments for download section */
@media (max-width: 968px) {
    .download-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .download-features {
        grid-template-columns: 1fr;
    }
    
    .store-buttons {
        flex-direction: column;
    }
    
    .store-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Web3 Wallet Connect Styles */
.btn-wallet {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.btn-wallet:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.btn-wallet.connected {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.btn-wallet.connected:hover {
    box-shadow: 0 8px 16px rgba(251, 191, 36, 0.3);
}

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

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

.btn-large.btn-wallet svg {
    width: 24px;
    height: 24px;
}

/* Wallet Info Display */
.wallet-info {
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    padding: 30px;
    animation: slideDown 0.5s ease;
}

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

.wallet-connected {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wallet-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.wallet-details {
    flex: 1;
}

.wallet-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
}

.wallet-address {
    font-size: 18px;
    font-weight: 700;
    color: #fbbf24;
    font-family: 'Courier New', monospace;
}

.wallet-balance {
    text-align: center;
}

.balance-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.balance-amount {
    font-size: 36px;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 16px;
}

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

.balance-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.balance-token {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.balance-value {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.balance-usd {
    font-size: 13px;
    color: #10b981;
    margin-top: 4px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .wallet-info {
        padding: 20px;
    }
    
    .wallet-connected {
        flex-direction: column;
        text-align: center;
    }
    
    .balance-amount {
        font-size: 28px;
    }
    
    .balance-breakdown {
        grid-template-columns: 1fr;
    }
}
