:root {
    --primary-dark: #092F20;
    --bg-light: #C4F3E0;
    --accent-green: #66B76F;
    --vibrant-green: #65E0AF;
    --text-color: #0d422e;
    --white: #ffffff;
}

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background: var(--bg-light);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
}

.main-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0faf0 100%);
}

.card-custom {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px;
    box-shadow: 0 15px 35px rgba(9, 47, 32, 0.1);
    max-width: 600px;
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.brand-text {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1;
    filter: drop-shadow(0 5px 10px rgba(9, 47, 32, 0.1));
}

@media (max-width: 576px) {
    .brand-text {
        font-size: 2.5rem;
    }
}

h1 {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.domain-name {
    font-weight: 400;
    color: var(--accent-green);
    font-size: 1.25rem;
    margin-bottom: 30px;
    display: block;
}

footer {
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--primary-dark);
    border-top: 1px solid rgba(102, 183, 111, 0.2);
}

.decoration-circle {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--vibrant-green), var(--accent-green));
    opacity: 0.1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.card-custom {
    animation: fadeIn 1s ease-out;
}
