/* Activation Section Container */
.activation-container {
    max-width: 800px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: 'Montserrat', sans-serif;
}

/* Info Panel */
.info-panel {
    background: rgba(13, 29, 33, 0.6);
    /* Dark greenish/blue tint from image */
    border: 1px solid #1a3a3a;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #F3BA2F;
    /* Gold accent */
}

.info-panel h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-panel p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Steps Panel */
.steps-panel {
    background: #15151e;
    /* Dark blue-ish gray */
    border: 1px solid #2a2a35;
    border-radius: 12px;
    padding: 25px;
}

.steps-panel h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-row {
    background: #1f1f2b;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #ccc;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.step-text {
    display: flex;
    flex-direction: column;
}

.step-text strong {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.step-text span {
    color: #888;
    font-size: 0.85rem;
}

/* Warning Panel */
.warning-panel {
    background: rgba(40, 30, 20, 0.4);
    /* Brownish/Yellow tint */
    border: 1px solid #554422;
    border-radius: 8px;
    padding: 15px;
    color: #fff;
    font-size: 0.9rem;
    display: flex;
    align-items: start;
    gap: 10px;
}

.warning-panel strong {
    color: #ffd700;
}

/* Buttons */
.button-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .button-group {
        grid-template-columns: 1fr;
    }
}

.btn-primary-gradient {
    background: linear-gradient(90deg, #00ff88 0%, #00b8ff 100%);
    /* Green to Blue gradient */
    border: none;
    border-radius: 8px;
    padding: 18px;
    color: #000;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s;
    text-transform: uppercase;
}

.btn-primary-gradient:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 18px;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #666;
}

.crypto-footer {
    text-align: center;
    color: #666;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}