/* Key Map Page Styles */
:root {
    --primary-color: #009922;
    --secondary-color: #00cc2d;
    --text-color: #1a1a1a;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --bitcoin-color: #f7931a;
    --ethereum-color: #627eea;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.keymap-main {
    margin-top: 80px;
}

/* Hero Section */
.keymap-hero {
    padding: 0;
    background: linear-gradient(135deg, rgba(0, 153, 34, 0.03), rgba(0, 204, 45, 0.05));
    position: relative;
    overflow: hidden;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.keymap-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 153, 34, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-grid {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    background: rgba(0, 153, 34, 0.1);
    border: 1px solid rgba(0, 153, 34, 0.2);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
}

.stat-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.key-visualization {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.hex-display {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.hex-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.hex-value {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: var(--primary-color);
    background: var(--bg-light);
    padding: 1.2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    word-break: break-all;
    border: 2px solid rgba(0, 153, 34, 0.2);
}

.hex-arrow {
    text-align: center;
    margin-bottom: 2rem;
}

.hex-arrow i {
    font-size: 2rem;
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

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

.address-outputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.output-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.output-item:hover {
    border-color: var(--primary-color);
    background: rgba(0, 153, 34, 0.05);
}

.output-item i {
    font-size: 1.5rem;
}

.output-item span {
    font-weight: 600;
    color: var(--text-color);
}

.viz-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 153, 34, 0.1) 0%, transparent 70%);
    z-index: 0;
}

/* Section Common Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-title i {
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.6);
}

/* Generator Section */
.generator-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.generator-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Main Grid Container - PC: Left-Right, Mobile: Vertical */
.main-grid-container {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Left Side: Crypto Results */
.crypto-results-side {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Right Side: Input & Display */
.input-display-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 100px;
}

.generator-input-area {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    width: 100%;
}

.generator-input-area h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.generator-input-area .subtitle {
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 2rem;
}

.network-selector {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.network-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.network-btn i {
    font-size: 1.5rem;
}

.network-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.network-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.input-group {
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.8rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    gap: 0.8rem;
}

.input-wrapper input {
    flex: 1;
    padding: 1rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 153, 34, 0.1);
}

.btn-random {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-random:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.input-footer {
    margin-top: 0.5rem;
    text-align: right;
}

.input-footer .char-count {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.5);
}

.char-count {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.5);
}

.btn-generate {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-generate:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 153, 34, 0.3);
}

/* Generator Result Area - Removed, not used in new structure */

.result-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.result-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.result-network {
    padding: 0.4rem 1rem;
    background: rgba(0, 153, 34, 0.1);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.result-item {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.result-item label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-value {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.result-value code {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--text-color);
    word-break: break-all;
}

.btn-copy {
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-copy:hover {
    transform: scale(1.2);
}

.balance-item {
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.balance-display {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.balance-value {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-explorer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-explorer:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Visualization Section */
.visualization-section {
    padding: 6rem 8rem;
    background: var(--bg-light);
}

.viz-controls {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.control-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.viz-select {
    padding: 0.6rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.viz-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-refresh {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.5rem;
    margin-left: auto;
    background: var(--primary-color);
    border: none;
    border-radius: 6px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.visualization-container {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.viz-canvas {
    width: 100%;
    height: 600px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viz-placeholder {
    text-align: center;
}

.viz-placeholder i {
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.viz-placeholder p {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(250%); }
}

.viz-legend {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
}

.legend-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.legend-dot.high {
    background: linear-gradient(135deg, #f7931a, #ffb84d);
}

.legend-dot.medium {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.legend-dot.low {
    background: linear-gradient(135deg, #627eea, #8fa5f5);
}

.legend-line {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.viz-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.viz-stat {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.viz-stat i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.viz-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.viz-stat-label {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.6);
}

/* Wallets Section */
.wallets-section {
    padding: 6rem 8rem;
    background: #ffffff;
}

.wallets-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.control-tabs {
    display: flex;
    gap: 1rem;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn i {
    font-size: 1.2rem;
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.control-search {
    position: relative;
}

.control-search input {
    padding: 0.8rem 2.5rem 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    width: 300px;
    transition: all 0.3s ease;
}

.control-search input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 153, 34, 0.1);
}

.control-search i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(0, 0, 0, 0.4);
}

.table-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 2rem;
}

.wallets-table {
    width: 100%;
    border-collapse: collapse;
}

.wallets-table thead {
    background: var(--bg-light);
}

.wallets-table th {
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--border-color);
}

.wallets-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.wallets-table tbody tr:hover {
    background: rgba(0, 153, 34, 0.02);
}

.wallets-table td {
    padding: 1.2rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-color);
}

.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
}

.rank-badge.rank-1 {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #8b6914;
}

.rank-badge.rank-2 {
    background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
    color: #666666;
}

.rank-badge.rank-3 {
    background: linear-gradient(135deg, #cd7f32, #e8a87c);
    color: #6b3e1a;
}

.wallet-address {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.wallet-address code {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--text-color);
}

.btn-mini-copy {
    padding: 0.3rem 0.5rem;
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.btn-mini-copy:hover {
    opacity: 1;
    transform: scale(1.1);
}

.btn-explorer-mini {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.8rem;
    background: var(--primary-color);
    border: none;
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-explorer-mini:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover:not(:disabled) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.page-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
}

.page-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-num:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.page-num.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.page-dots {
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    color: rgba(0, 0, 0, 0.4);
}

/* CTA Section */
.cta-section {
    padding: 6rem 8rem;
    background: linear-gradient(135deg, #fff4e6 0%, #ffe8cc 100%);
    text-align: center;
}

.cta-icon {
    font-size: 4rem;
    color: #ff9800;
    margin-bottom: 1.5rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
}

.btn-outline:hover {
    background: var(--text-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

/* ========================================
   New Wallet Generator Styles
   ======================================== */

/* Hex Key Display */
.hex-key-display {
    background: linear-gradient(135deg, rgba(0, 153, 34, 0.1), rgba(0, 153, 34, 0.05));
    border: 2px solid rgba(0, 153, 34, 0.2);
    border-radius: 16px;
    padding: 2.2rem 2rem;
    text-align: center;
    overflow: hidden;
    max-width: 100%;
}

.hex-key-label {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hex-key-value {
    font-size: 1.2rem;
    font-family: 'Courier New', monospace;
    color: var(--primary-color);
    font-weight: 700;
    word-break: break-all;
    margin-bottom: 0.5rem;
}

.decimal-value {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.5);
    font-family: 'Courier New', monospace;
    word-break: break-all;
    overflow-wrap: break-word;
    max-width: 100%;
    line-height: 1.6;
}

.decimal-value span {
    word-break: break-all;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%;
}

/* Crypto Sections Container - Vertical on PC, stays vertical on mobile */
.crypto-sections-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Crypto Sections */
.crypto-section {
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

/* PC: Ethereum section extra padding for height balance */
.ethereum-section {
    padding: 2.5rem 2rem;
}

.crypto-section:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 153, 34, 0.1);
}

.bitcoin-section .crypto-header i {
    color: #f7931a;
}

.ethereum-section .crypto-header i {
    color: #627eea;
}

.crypto-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.crypto-header i {
    font-size: 2rem;
}

.crypto-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

/* Address Grid */
.address-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* PC: Increase Bitcoin address items gap for height balance */
.bitcoin-section .address-grid {
    gap: 1.8rem;
}

.address-item {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

/* PC: Increase Bitcoin address item padding for height balance */
.bitcoin-section .address-item {
    padding: 1.7rem 1.5rem;
}

.address-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 153, 34, 0.15);
    transform: translateY(-2px);
}

.address-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.label-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-color);
}

.label-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.address-value {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: var(--primary-color);
    word-break: break-all;
    background: rgba(0, 153, 34, 0.05);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.key-value {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.key-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
    min-width: 80px;
}

.key-text {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.7);
    word-break: break-all;
    flex: 1;
}
