/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    text-align: center;
    padding: 30px 10px;
}

.container {
    max-width: 500px;
    margin: auto;
}

.card {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

header h1 {
    font-size: 24px;
    color: #ffdf40;
}

.domain-name {
    font-size: 22px;
    font-weight: 600;
    margin: 10px 0;
}

.price {
    font-size: 18px;
    margin-bottom: 15px;
}

.price span {
    font-size: 24px;
    font-weight: bold;
    color: #ffdf40;
}

.buy-now {
    display: inline-block;
    text-decoration: none;
    background: #ffdf40;
    color: black;
    padding: 10px 50px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.buy-now:hover {
    background: #ffc107;
}

.offer-section h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

form input, form textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

form textarea {
    height: 100px;
    resize: none;
}

form button {
    background: #28a745;
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
    transition: 0.3s;
    font-weight: bold;
}

form button:hover {
    background: #218838;
}

.other-domains h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.domain-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.domain-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.check-btn {
    text-decoration: none;
    background: #17a2b8;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.3s;
    font-weight: bold;
}

.check-btn:hover {
    background: #138496;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--primary-light);
}