/* Whitelist page specific styles */
.section {
    padding: 120px 0 60px;
    min-height: calc(100vh - 100px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.title {
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 30px;
    height: auto;
    min-height: 200px;
    overflow: visible;
    position: relative;
    z-index: 1;
}

.steps-list {
    position: relative;
    counter-reset: step;
    height: auto;
    min-height: 400px;
    overflow: visible;
}

.step {
    margin-bottom: 40px;
    padding: 20px;
    padding-left: 70px;
    position: relative;
    opacity: 0.4;
    transition: all 0.3s ease;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    overflow: visible;
}

.step.active {
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.step:before {
    content: counter(step);
    counter-increment: step;
    position: absolute;
    left: 20px;
    top: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary-color, #007bff);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.step:not(.active) {
    cursor: not-allowed;
}

.step:not(.active):before {
    background: #666;
}

.step-content.hidden {
    display: none;
}

.step:not(:last-child):after {
    content: '';
    position: absolute;
    left: 37px;
    bottom: -30px;
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.communication-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.method-option {
    width: 100%;
}

.method-select-btn {
    width: 100%;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.method-select-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #007508;
}

.method-select-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.method-content {
    margin-top: 10px;
    display: none;
}

.method-content.visible {
    display: block;
}

.balance-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-right: 20px;
    width: 100%;
}

.btn-buy {
    display: none;
    align-items: center;
    padding: 8px 16px;
    background: #007508 !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s ease;
    margin-left: 0;
    position: relative;
    z-index: 1;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    transform: none !important;
    top: 0 !important;
    left: 0 !important;
}

.btn-buy:hover {
    background: #005906 !important;
    color: #007508 !important;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    transform: none !important;
    top: 0 !important;
    left: 0 !important;
}

#rwrdBalance {
    display: none;
    margin-right: 15px;
}

/* Add max-width to the step content to ensure proper containment */
.step-content {
    width: 100%;
    max-width: 100%;
    overflow: visible;
    padding-right: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section {
        padding: 80px 0 40px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .card {
        padding: 20px;
    }
} 

/* Add this to handle any other buttons */
.btn:hover,
.btn-cta:hover,
button:hover {
    color: #007508 !important;
}

/* Specific style for wallet button hover */
#wallet:hover {
    color: #007508 !important;
}

/* Telegram verification styles */
.telegram-verification {
    width: 100%;
    margin-top: 15px;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    width: 100%;
}

.input-group input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 10px 15px;
    color: white;
    font-size: 14px;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.input-group button {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.input-group button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.verification-code-section {
    margin-top: 15px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.verification-code-section.hidden {
    display: none;
    opacity: 0;
}

.text-muted {
    color: #888;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.alert {
    padding: 12px 15px;
    border-radius: 4px;
    margin: 10px 0;
}

.alert-success {
    background: rgba(0, 117, 8, 0.1);
    border: 1px solid rgba(0, 117, 8, 0.2);
    padding: 25px;
    border-radius: 8px;
    margin: 15px 0;
    height: auto;
    overflow: visible;
}

.alert-success h4 {
    color: #007508;
    margin-bottom: 15px;
}

.alert-success p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.alert-success p:last-child {
    margin-bottom: 0;
}

/* Disabled method button styles */
.method-select-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

/* Responsive adjustments for telegram verification */
@media (max-width: 768px) {
    .input-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .input-group button {
        width: 100%;
    }
} 

/* Telegram verification instructions */
.verification-instructions {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.verification-instructions h4 {
    margin-bottom: 12px;
    color: var(--primary-color);
}

.instruction-list {
    padding-left: 20px;
    margin-bottom: 0;
}

.instruction-list li {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.instruction-list li:last-child {
    margin-bottom: 0;
}

.instruction-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.instruction-list a:hover {
    text-decoration: underline;
}

/* Ensure step 4 is always visible without animation */
#step4 {
    opacity: 1;
    transform: none !important;
    visibility: visible !important;
}

#step4.active .step-content {
    height: auto;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.method-select-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    position: relative;
}

.coming-soon-badge {
    font-size: 0.8em;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
} 