

.offer-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1rem;
}

.offer-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    margin-top: 1rem;
}

.alert {
    border-radius: 8px;
    margin-bottom: 1rem;
}

.domain-info {
    text-align: center;
    margin-bottom: 2rem;
}

.domain-name {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.stat-item {
    background: #f1f5f9;
    border-radius: 8px;
    padding: 0.1rem 1rem;
    text-align: center;
    transition: transform 0.2s ease;
}

.stats {
    display: ruby;
    justify-content: space-around;
    margin: 1rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}