.stake-section {
    padding: 80px 0;
    text-align: center;
    background: #fff;
}

.stake-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.stake-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    font-family: 'Space Mono', monospace;
}

.stake-description {
    font-size: 18px;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.check-eligibility-container {
    background: rgba(130, 71, 229, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.address-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #8247E5;
    border-radius: 15px;
    font-size: 16px;
    margin-bottom: 20px;
    background: white;
    color: #000;
    font-family: 'Space Mono', monospace;
    transition: all 0.3s ease;
}

.address-input::placeholder {
    color: #666;
}

.address-input:focus {
    outline: none;
    border-color: #9747FF;
    box-shadow: 0 0 0 2px rgba(130, 71, 229, 0.2);
}

.address-input.error {
    border-color: #EF4444;
    background-color: rgba(239, 68, 68, 0.05);
}

.address-input.error:focus {
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

.address-error {
    color: #EF4444;
    font-size: 14px;
    margin-top: -15px;
    margin-bottom: 15px;
    text-align: left;
}

.small-button-container {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 5px 15px;
    margin: 0 auto 15px;
    display: inline-block;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(130, 71, 229, 0.2);
}

.check-eligibility-btn {
    background: none;
    border: none;
    color: #000;
    font-size: 16px;
    cursor: pointer;
    font-family: inherit;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.check-eligibility-btn:hover {
    color: #8247E5;
}

.check-eligibility-btn:disabled {
    color: #666;
    cursor: not-allowed;
}

.eligibility-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #8247E5;
    font-size: 16px;
    margin-top: 15px;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #8247E5;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.eligibility-result {
    color: #22C55E;
    font-size: 16px;
    font-weight: 500;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.checkmark {
    font-size: 20px;
    font-weight: bold;
}

.hidden {
    display: none;
}

.connect-box {
    background: #8247E5;
    border-radius: 20px;
    padding: 40px 20px;
    margin-top: 40px;
}

.connect-text {
    color: #fff;
    font-size: 24px;
    margin-bottom: 30px;
    padding: 0 20px;
}

.connect-wallet-btn {
    background: #1A1B23;
    color: #7FFFD4;
    border: none;
    border-radius: 12px;
    padding: 20px 40px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Mono', monospace;
}

.connect-wallet-btn:hover {
    background: #2A2B33;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #000;
}

.modal h2 {
    color: #8247E5;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 700;
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    border-bottom: 1px solid rgba(130, 71, 229, 0.2);
    padding-bottom: 20px;
}

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

.faq-item h3 {
    color: #000;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.faq-item ul {
    list-style-type: disc;
    margin-left: 20px;
    color: #666;
}

.faq-item li {
    margin-bottom: 5px;
    line-height: 1.6;
}

.hidden {
    display: none !important;
}

/* Scrollbar Styles */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #8247E5;
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #6d3bc3;
}

/* Responsive styles */
@media (max-width: 768px) {
    .stake-title {
        font-size: 36px;
    }
    
    .stake-description {
        font-size: 16px;
    }
    
    .connect-text {
        font-size: 20px;
    }
    
    .connect-wallet-btn {
        padding: 15px 30px;
        font-size: 18px;
    }
    
    .check-eligibility-container {
        margin: 0 20px 40px;
        padding: 20px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-content {
        padding: 20px;
        width: 95%;
    }

    .faq-item h3 {
        font-size: 16px;
    }

    .faq-item p, .faq-item li {
        font-size: 14px;
    }
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.tokenomics-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.tokenomics-item:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.1);
}

.tokenomics-item h3 {
    color: #22C55E;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.tokenomics-item p {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Space Mono', monospace;
}

@media (max-width: 768px) {
    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tokenomics-item {
        padding: 20px;
    }
    
    .tokenomics-item h3 {
        font-size: 16px;
    }
    
    .tokenomics-item p {
        font-size: 18px;
    }
}

.faq-section {
    padding: 80px 0;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section .section-title {
    color: white;
    margin-bottom: 50px;
}

.faq-item {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-item h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 16px;
}

@media (max-width: 768px) {
    .faq-item {
        padding: 15px;
    }
    
    .faq-item h3 {
        font-size: 18px;
    }
    
    .faq-item p {
        font-size: 14px;
    }
}

.social-btn.discord-btn {
    background: #5865F2;  /* Discord brand color */
}

.social-btn.discord-btn:hover {
    background: #4752C4;  /* Darker shade for hover */
}

.social-btn.discord-btn i {
    font-size: 24px;
}
