body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f9fa;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.domain-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.domain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-section {
    background: linear-gradient(45deg, #0d6efd, #6610f2);
    color: white;
    padding: 60px 0;
    border-radius: 0 0 20px 20px;
}

.btn-primary {
    background: #6610f2;
    border: none;
}

.btn-primary:hover {
    background: #5a0ed6;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}