/* ================================================
   INFO PAGE - Additional Styles
   Uses base styles from styles.css
   ================================================ */

html {
    scroll-behavior: smooth;
}

body {
    background: transparent;
}

/* ================================================
   VIDEO BACKGROUND
   ================================================ */

.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 11, 20, 0.91);
    pointer-events: none;
}

/* Stronger backgrounds for cards/buttons on video */
.info-card,
.info-step,
.info-stat-card,
.transparency-item,
.wallet-card,
.wallet-highlight,
.wallets-section {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.back-btn,
.info-nav a,
.info-badge {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.info-footer-btn {
    background: linear-gradient(135deg, var(--frost) 0%, var(--storm) 100%);
}

/* Sound Toggle Button */
.sound-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.sound-toggle:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--frost);
    transform: scale(1.1);
}

.sound-toggle svg {
    width: 22px;
    height: 22px;
    stroke: var(--text-primary);
}

.sound-toggle .sound-on {
    display: none;
}

.sound-toggle.unmuted .sound-off {
    display: none;
}

.sound-toggle.unmuted .sound-on {
    display: block;
}

/* ================================================
   PREMIUM HOVER ANIMATIONS
   ================================================ */

/* Ripple Effect */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.4) 0%, transparent 70%);
    transform: scale(0);
    animation: ripple 0.7s ease-out forwards;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(1);
        opacity: 0;
    }
}

/* Glow Follow Effect */
.info-card::before,
.wallet-card::before,
.transparency-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        600px circle at var(--glow-x, 50%) var(--glow-y, 50%),
        rgba(0, 212, 255, 0.1) 0%,
        transparent 40%
    );
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.info-card:hover::before,
.wallet-card:hover::before,
.transparency-item:hover::before {
    opacity: 1;
}

.info-card,
.wallet-card,
.transparency-item {
    position: relative;
}

/* Scroll Reveal Animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal for children */
.info-steps .reveal-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.info-steps .reveal-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.info-steps .reveal-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.info-steps .reveal-on-scroll:nth-child(4) { transition-delay: 0.4s; }
.info-steps .reveal-on-scroll:nth-child(5) { transition-delay: 0.5s; }

.transparency-grid .reveal-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.transparency-grid .reveal-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.transparency-grid .reveal-on-scroll:nth-child(3) { transition-delay: 0.3s; }

.wallets-grid .reveal-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.wallets-grid .reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.wallets-grid .reveal-on-scroll:nth-child(3) { transition-delay: 0.15s; }
.wallets-grid .reveal-on-scroll:nth-child(4) { transition-delay: 0.2s; }
.wallets-grid .reveal-on-scroll:nth-child(5) { transition-delay: 0.25s; }
.wallets-grid .reveal-on-scroll:nth-child(6) { transition-delay: 0.3s; }
.wallets-grid .reveal-on-scroll:nth-child(7) { transition-delay: 0.35s; }

/* Card hover enhancements */
.info-card,
.info-step,
.info-stat-card,
.transparency-item,
.wallet-card,
.wallet-highlight {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.info-card:hover,
.info-step:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.info-stat-card:hover {
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(0, 0, 0, 0.5);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.25),
        0 0 25px rgba(0, 212, 255, 0.15);
}

/* Floating animation for icons */
.info-section-icon {
    animation: float 3s ease-in-out infinite;
}

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

/* Shimmer effect on nav links */
.info-nav a {
    position: relative;
    overflow: hidden;
}

.info-nav a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.5s;
}

.info-nav a:hover::after {
    left: 100%;
}

/* Pulse effect on badges */
.info-badge {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
    }
}

/* Hero text gradient animation */
.info-hero h1 {
    background-size: 200% auto;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Button glow pulse */
.info-footer-btn {
    position: relative;
}

.info-footer-btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--frost), var(--storm));
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.3s;
}

.info-footer-btn:hover::before {
    opacity: 0.6;
    animation: button-glow 1.5s ease-in-out infinite;
}

@keyframes button-glow {
    0%, 100% { filter: blur(10px); opacity: 0.4; }
    50% { filter: blur(15px); opacity: 0.7; }
}

/* Wallet card border glow */
.wallet-card {
    position: relative;
}

.wallet-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, var(--accent, var(--frost)) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

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

/* Step number hover effect */
.info-step-num {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.info-step:hover .info-step-num {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

/* Stat card value glow */
.info-stat-value {
    transition: all 0.3s;
}

.info-stat-card:hover .info-stat-value {
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    transform: scale(1.05);
}

/* Transparency item icon pulse */
.transparency-item-icon {
    transition: all 0.3s;
}

.transparency-item:hover .transparency-item-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.transparency-item:hover .transparency-item-icon svg {
    animation: icon-bounce 0.5s ease;
}

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

/* Wallet avatar glow on hover */
.wallet-card-avatar {
    transition: all 0.3s;
}

.wallet-card:hover .wallet-card-avatar {
    filter: drop-shadow(0 0 10px var(--accent, var(--frost)));
    transform: scale(1.08);
}

/* FAQ question hover */
.info-faq-item {
    transition: all 0.3s;
    padding-left: 0;
    border-radius: 8px;
}

.info-faq-item:hover {
    background: rgba(0, 0, 0, 0.2);
    padding-left: 12px;
}

/* Section icon rotation on hover */
.info-section-header:hover .info-section-icon {
    animation: none;
    transform: rotate(10deg) scale(1.1);
}

/* Highlight box shimmer */
.info-highlight {
    position: relative;
    overflow: hidden;
}

.info-highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Main wallet highlight glow */
.wallet-highlight {
    position: relative;
    overflow: hidden;
}

.wallet-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(250, 204, 21, 0.1) 0%,
        transparent 50%
    );
    animation: rotate-glow 10s linear infinite;
    pointer-events: none;
}

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

.info-container {
    padding: 0 24px 60px;
    position: relative;
    z-index: 1;
}

/* Header */
.info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    margin-bottom: 20px;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.back-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--frost);
    transform: translateX(-4px);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.back-btn svg {
    width: 18px;
    height: 18px;
}

/* Hero */
.info-hero {
    text-align: center;
    padding: 40px 0 60px;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--shadow);
    margin-bottom: 24px;
}

.info-badge svg {
    stroke: var(--shadow);
}

.info-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-hero p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* Navigation */
.info-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-bottom: 50px;
    flex-wrap: wrap;
}

.info-nav a {
    padding: 10px 18px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.info-nav a:hover {
    background: rgba(0, 0, 0, 0.5);
    color: var(--text-primary);
    border-color: var(--frost);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

/* Content */
.info-content {
    max-width: 800px;
    margin: 0 auto;
}

.info-section {
    margin-bottom: 60px;
}

.info-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.info-section-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-section-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.info-section-icon.blue { background: linear-gradient(135deg, var(--storm) 0%, #2563eb 100%); }
.info-section-icon.purple { background: linear-gradient(135deg, var(--shadow) 0%, #7c3aed 100%); }
.info-section-icon.cyan { background: linear-gradient(135deg, var(--frost) 0%, #0891b2 100%); }
.info-section-icon.green { background: linear-gradient(135deg, var(--glacier) 0%, #059669 100%); }
.info-section-icon.yellow { background: linear-gradient(135deg, var(--thunder) 0%, #d97706 100%); }

.info-section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

/* Cards */
.info-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.info-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.info-card p + p {
    margin-top: 10px;
}

.info-card p strong {
    color: var(--text-primary);
}

/* Steps */
.info-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-step {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    transition: all 0.3s;
}

.info-step:hover {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.info-step-num {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--frost) 0%, var(--storm) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
}

.info-step-content h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.info-step-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Stats Grid */
.info-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.info-stat-card {
    padding: 20px 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s;
}

.info-stat-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.05);
}

.info-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--frost);
    margin-bottom: 4px;
}

.info-stat-label {
    font-size: 11px;
    color: var(--text-secondary);
}

/* Highlight Box */
.info-highlight {
    padding: 20px;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.08) 0%, rgba(251, 191, 36, 0.04) 100%);
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: 14px;
    margin-top: 16px;
}

.info-highlight.warning {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(220, 38, 38, 0.04) 100%);
    border-color: rgba(239, 68, 68, 0.2);
}

.info-highlight.warning .info-highlight-title {
    color: #f87171;
}

.info-highlight.warning .info-highlight-title svg {
    stroke: #f87171;
}

.info-highlight-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--thunder);
    margin-bottom: 8px;
}

.info-highlight-title svg {
    width: 18px;
    height: 18px;
    stroke: var(--thunder);
}

.info-highlight p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FAQ */
.info-faq-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--glass-border);
}

.info-faq-item:first-child {
    padding-top: 0;
}

.info-faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-faq-q {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.info-faq-q::before {
    content: 'Q';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--shadow);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.info-faq-a {
    font-size: 14px;
    color: var(--text-secondary);
    padding-left: 32px;
    line-height: 1.6;
}

/* Footer */
.info-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    margin-top: 20px;
}

.info-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--frost) 0%, var(--storm) 100%);
    border-radius: 14px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.info-footer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.info-footer-btn svg {
    width: 18px;
    height: 18px;
}

/* ================================================
   TRANSPARENCY SECTION - Info Page
   ================================================ */

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.transparency-item {
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s;
}

.transparency-item:hover {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.transparency-item-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-radius: 12px;
}

.transparency-item-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--glacier);
}

.transparency-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.transparency-item p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Wallets Section */
.wallets-section {
    padding: 24px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-bottom: 20px;
}

.wallets-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

/* ================================================
   WALLET SECTION - Info Page
   ================================================ */

.wallet-highlight {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.08) 0%, rgba(250, 204, 21, 0.03) 100%);
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 20px;
}

.wallet-highlight-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--thunder);
    margin-bottom: 10px;
}

.wallet-highlight-label svg {
    width: 16px;
    height: 16px;
    stroke: var(--thunder);
}

.wallet-highlight-address {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--text-primary);
    word-break: break-all;
    line-height: 1.6;
    margin-bottom: 12px;
}

.wallet-highlight-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--thunder);
    text-decoration: none;
    transition: all 0.2s;
}

.wallet-highlight-link svg {
    width: 14px;
    height: 14px;
}

.wallet-highlight-link:hover {
    color: #fde047;
}

/* Penguin Wallets Grid */
.wallets-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.wallet-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.wallet-card:hover {
    border-color: var(--accent, rgba(255, 255, 255, 0.15));
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.wallet-card-avatar {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.wallet-card-info {
    flex: 1;
    min-width: 0;
}

.wallet-card-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.wallet-card-address {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wallet-card-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    flex-shrink: 0;
    transition: color 0.2s;
}

.wallet-card-link svg {
    width: 14px;
    height: 14px;
    stroke: var(--text-muted);
    transition: stroke 0.2s;
}

.wallet-card:hover .wallet-card-link {
    color: var(--accent, var(--frost));
}

.wallet-card:hover .wallet-card-link svg {
    stroke: var(--accent, var(--frost));
}

/* Responsive */
@media (max-width: 768px) {
    .info-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .transparency-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .info-header {
        flex-direction: column;
        gap: 16px;
    }

    .info-hero {
        padding: 30px 0 40px;
    }

    .info-hero h1 {
        font-size: 26px;
    }

    .info-nav {
        padding-bottom: 40px;
    }

    .info-nav a {
        padding: 8px 14px;
        font-size: 12px;
    }

    .info-section {
        margin-bottom: 50px;
    }

    .info-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

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

    .info-card {
        padding: 20px;
    }

    .info-step {
        flex-direction: column;
        gap: 12px;
    }

    .info-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .info-stat-card {
        padding: 16px 12px;
    }

    .info-stat-value {
        font-size: 20px;
    }

    .wallet-highlight {
        padding: 16px 18px;
    }

    .wallet-highlight-address {
        font-size: 11px;
    }

    .wallet-card {
        padding: 14px 16px;
        gap: 12px;
    }

    .wallet-card-avatar {
        width: 40px;
        height: 40px;
    }

    .wallet-card-name {
        font-size: 14px;
    }

    .wallet-card-address {
        font-size: 10px;
    }

    .wallet-card-link span {
        display: none;
    }

    .transparency-item {
        padding: 16px;
    }

    .transparency-item-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .transparency-item h4 {
        font-size: 13px;
    }

    .wallets-section {
        padding: 18px;
    }

    .wallets-title {
        font-size: 14px;
        margin-bottom: 16px;
    }
}
