.crypto-presale-widget {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 480px;
    margin: 0 auto;
}

.token-logo {
    display: block;
    max-width: 64px;
    height: auto;
    margin: 0 auto 16px;
}

.crypto-presale-widget h2 {
    text-align: center;
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 600;
}

.token-price {
    text-align: center;
    margin-bottom: 24px;
    color: #666;
}

.progress-container {
    margin-bottom: 24px;
}

.progress-bar {
    height: 8px;
    background: #E5E7EB;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress {
    height: 100%;
    background: #4461F2;
    transition: width 0.3s ease;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
}

.input-group {
    margin-bottom: 16px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
}

.accepted-payments {
    margin: 24px 0;
    text-align: center;
}

.accepted-payments p {
    color: #666;
    margin-bottom: 12px;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.payment-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.buy-button {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 8px;
    background: #4461F2;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.buy-button:hover {
    opacity: 0.9;
}