:root {
    --primary-color: #4a6cf7;
    --secondary-color: #6a7c94;
    --accent-color: #ff6b6b;
    --background-color: #f9fafc;
    --card-color: #ffffff;
    --text-color: #1d2a4d;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.card {
    background-color: var(--card-color);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.domain-name {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 10px;
    background-color: rgba(74, 108, 247, 0.05);
    display: inline-block;
    min-width: 80%;
}

.description {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.email-link {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 40px;
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.email-link:hover {
    background-color: var(--primary-color);
    color: white;
}

.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.feature {
    flex: 1;
    min-width: 150px;
    margin: 10px;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(74, 108, 247, 0.05);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.feature-text {
    font-weight: 600;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .domain-name {
        font-size: 2rem;
    }
    
    .features {
        flex-direction: column;
    }
    
    .feature {
        margin: 10px 0;
    }
}
