.more-content-section {
    position: relative;
    z-index: 10;
    padding-top: 80px;
    padding-bottom: 80px;
}

.more-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Mini Navigation */
.more-nav {
    position: sticky;
    top: 120px;
    display: flex;
    gap: 10px;
    margin-bottom: 60px;
    padding: 8px 15px;
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    overflow-x: auto;
    scrollbar-width: none;
    z-index: 100;
}

.more-nav::-webkit-scrollbar {
    display: none;
}

.more-nav-link {
    white-space: nowrap;
    padding: 10px 20px;
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.more-nav-link i {
    font-size: 0.85rem;
}

.more-nav-link:hover, .more-nav-link.active {
    background: rgba(255, 202, 4, 0.1);
    color: #FFCA04;
}

/* Step Cards */
.step-section {
    margin-bottom: 80px;
    scroll-margin-top: 215px;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
    border-color: rgba(255, 202, 4, 0.3);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 8rem;
    font-weight: 900;
    font-family: 'Syne', sans-serif;
    color: rgba(255, 202, 4, 0.03);
    line-height: 1;
    pointer-events: none;
}

.step-header {
    margin-bottom: 25px;
    position: relative;
}

.step-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 202, 4, 0.1);
    border: 1px solid rgba(255, 202, 4, 0.2);
    border-radius: 8px;
    color: #FFCA04;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.step-title {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    color: #fff;
    margin: 0;
}

.step-description {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    max-width: 600px;
}

.step-description p {
    margin-bottom: 10px;
}

.step-list {
    margin-bottom: 30px;
    padding-left: 20px;
}

.step-list li {
    font-family: 'Space Grotesk', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    list-style: none;
    position: relative;
}

.step-list li::before {
    content: "→";
    position: absolute;
    left: -25px;
    color: #FFCA04;
}

.step-warning {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 68, 68, 0.05);
    border: 1px solid rgba(255, 68, 68, 0.15);
    border-radius: 16px;
    margin-top: 20px;
}

.step-warning i {
    color: #FF4444;
    font-size: 1.2rem;
    margin-top: 3px;
}

.step-warning span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Demo Snippets Styles */
.demo-snippet {
    margin-top: 30px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.demo-snippet::before {
    content: "DEMO PREVIEW";
    position: absolute;
    top: 10px;
    right: 15px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 202, 4, 0.4);
    letter-spacing: 1px;
}

/* MetaMask Snippet */
.snippet-metamask {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.snippet-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.snippet-logo {
    width: 32px;
    height: 32px;
}

.snippet-header span {
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
}

.snippet-network-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 15px;
}

.snippet-network-badge .dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 10px #2ecc71;
}

.snippet-balances-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.snippet-balance {
    display: flex;
    flex-direction: column;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.snippet-balance .label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.snippet-balance .value {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
}

/* Connect Modal Snippet */
.snippet-connect {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.snippet-modal h3 {
    font-family: 'Syne', sans-serif;
    color: #fff;
    margin-bottom: 20px;
}

.snippet-wallet-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 202, 4, 0.05);
    border: 1px solid rgba(255, 202, 4, 0.2);
    border-radius: 12px;
    color: #fff;
}

.snippet-wallet-option img {
    width: 30px;
}

.snippet-wallet-option i {
    margin-left: auto;
    color: #FFCA04;
}

/* Dashboard User Snippet */
.snippet-id {
    max-width: 500px;
}

.snippet-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.snippet-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.snippet-user .avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
}

.snippet-user .info {
    display: flex;
    flex-direction: column;
}

.snippet-user .name {
    color: #fff;
    font-weight: 600;
}

.snippet-user .id {
    color: #FFCA04;
    font-size: 0.85rem;
}

.snippet-status .badge {
    padding: 5px 12px;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 50px;
    color: #2ecc71;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Deposit Snippet */
.snippet-deposit {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.snippet-modal .modal-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #fff;
}

.snippet-modal .input-group label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.snippet-modal .input-wrap {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0 15px;
    margin-bottom: 20px;
}

.snippet-modal .input-wrap .currency {
    color: #FFCA04;
    font-weight: 700;
}

.snippet-modal .input-wrap input {
    background: none;
    border: none;
    padding: 12px;
    color: #fff;
    width: 100%;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.snippet-btn {
    width: 100%;
    padding: 12px;
    background: #FFCA04;
    border: none;
    border-radius: 12px;
    color: #000;
    font-weight: 700;
    cursor: default;
}

/* Cycle Card Snippet */
.snippet-cycle-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 20px;
}

.cycle-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.cycle-amount {
    color: #fff;
    font-weight: 700;
}

.cycle-days {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.progress-container {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #FFCA04, #FF8A00);
}

.cycle-stats {
    display: flex;
    gap: 30px;
}

.cycle-stats .stat {
    display: flex;
    flex-direction: column;
}

.cycle-stats .label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.cycle-stats .value {
    color: #fff;
    font-weight: 600;
}

.cycle-stats .value.green {
    color: #2ecc71;
}

/* Wallet Card Snippet */
.snippet-wallet-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 20px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #fff;
}

.card-header .balance {
    margin-left: auto;
    font-weight: 700;
    color: #FFCA04;
}

.card-actions {
    display: flex;
    gap: 10px;
}

.card-actions .snippet-btn {
    flex: 1;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.card-actions .withdraw {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Referral Snippet */
.snippet-referral-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 20px;
}

.referral-input-group {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin: 15px 0;
    overflow: hidden;
}

.referral-input-group input {
    flex: 1;
    background: none;
    border: none;
    padding: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    width: 100%;
}

.snippet-btn-copy {
    background: #FFCA04;
    border: none;
    padding: 0 20px;
    color: #000;
    font-weight: 700;
    font-size: 0.85rem;
}

.card-footer-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

@media (max-width: 480px) {
    .demo-snippet {
        padding: 20px;
    }
    
    .snippet-id .snippet-dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .cycle-stats {
        gap: 15px;
    }
}


/* Security Block */
.security-block {
    background: linear-gradient(135deg, rgba(255, 202, 4, 0.05) 0%, rgba(255, 138, 0, 0.05) 100%);
    border: 1px solid rgba(255, 202, 4, 0.2);
    border-radius: 24px;
    padding: 50px;
    margin-top: 40px;
    text-align: center;
}

.security-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 202, 4, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #FFCA04;
    margin: 0 auto 30px;
}

.security-title {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 15px;
}

.security-desc {
    font-family: 'Space Grotesk', sans-serif;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: left;
}

.security-item {
    padding: 25px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    gap: 20px;
}

.security-item i {
    color: #FFCA04;
    font-size: 1.5rem;
    margin-top: 5px;
}

.security-item p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media (max-width: 768px) {
    .more-content-section {
        padding-top: 40px;
    }

    .more-nav {
        top: 100px;
        padding: 5px;
    }
    
    .more-nav-link {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .step-title {
        font-size: 1.6rem;
    }
    
    .step-number {
        font-size: 5rem;
        top: -10px;
    }
    
    .security-block {
        padding: 30px 20px;
    }
    
    .security-title {
        font-size: 1.8rem;
    }
}

/* Step Navigation Buttons */
.step-navigation-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    margin-bottom: 20px;
    padding: 0 20px;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 16px;
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-home {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-home:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-dashboard {
    background: #FFCA04;
    border: 1px solid #FFCA04;
    color: #000;
}

.btn-dashboard:hover {
    background: #ffdb4d;
    border-color: #ffdb4d;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 202, 4, 0.2);
}

.nav-btn i {
    font-size: 1.2rem;
}

@media (max-width: 600px) {
    .step-navigation-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-btn {
        justify-content: center;
        width: 100%;
    }
}
