.main-content {
    flex: 1 0 auto; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    padding: 5px 20px 60px 20px; 
    width: 100%;
    box-sizing: border-box;
}

.section-block {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
    box-sizing: border-box;
}

.section-title {
    text-align: center;
    color: white;
    font-size: 20px;
    letter-spacing: 2px;
}

.section-title span {
    color: #00f2ff;
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
}

.title-icon-after {
    color: #00f2ff;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px #03c2a8);
    margin-left: 10px;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { opacity: 0.7; }
    50% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 0.7; }
}

.faucet-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 3px;
}

.faucet-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    text-transform: uppercase;
}

.faucet-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.faucet-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 242, 255, 0.2);
    color: #00f2ff;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.faucet-chip:hover {
    background: rgba(0, 242, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
    transform: translateY(-2px);
}

.glass-card {
    background: rgba(15, 18, 24, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-top: 20px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
    
}

.price-info {
    text-align: center;
    color: white;
    font-size: 18px;
    margin-bottom: 25px;
}

#priceDisplay {
    color: #00f2ff;
    font-weight: bold;
}

.progress-container {
    margin-bottom: 25px;
}

.progress-label {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
    color: #00f2ff;
    font-size: 12px;
    font-weight: bold;
}

.progress-bar-bg {
    background: rgba(255, 255, 255, 0.05);
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mint-stats {
    margin-top: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
    text-align: center;
}

#mintedAmount {
    color: #00f2ff;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00f2ff, #00ff88);
    transition: width 1.5s ease-in-out;
    border-radius: inherit;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

.progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

.input-container {
    margin-bottom: 20px;
}

.input-container label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 10px;
    margin-left: 5px;
}

.web3-input {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 5px 15px;
    transition: border 0.3s;
}

.web3-input:focus-within {
    border-color: #00f2ff;
}

.web3-input input {
    background: transparent;
    border: none;
    color: white;
    padding: 12px 0;
    width: 100%;
    font-size: 18px;
    outline: none;
}

.token-tag {
    color: #00f2ff;
    font-size: 12px;
    font-weight: bold;
    background: rgba(0, 242, 255, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
}

.max-badge {
    background: #00f2ff;
    color: #000;
    border: none;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}

.max-badge:hover { 
    transform: scale(1.05); 
}

.result-calc {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 25px;
}

.action-btn {
    display: block;
    width: 200px;
    margin: 20px auto 0;
    padding: 12px 24px;
    border-radius: 12px;
    border: none;
    background: #00f2ff;
    color: #000;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.action-btn:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
}

.action-btn:not(:disabled):hover {
    box-shadow: 0 0 25px #00f2ff;
    transform: translateY(-2px);
}

.add-token-btn {
    width: 100%;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    margin-top: 15px;
    cursor: pointer;
    transition: color 0.3s;
}

.add-token-btn:hover { 
    color: #00f2ff; 
}

@media (max-width: 480px) {

    .action-btn {
        width: 180px;
        padding: 14px;
        font-size: 13px;
    }

    .glass-card {
        padding: 20px;
    }
    .section-title {
        font-size: 20px;
    }
}