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

:root {
    --gold: #d4af37;
    --dark: #0f0f0f;
    --card: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
    --text: #eaeaea;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    height: 100vh;
    overflow: hidden;
}

/* Background Glow */
.background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, #d4af3720, transparent 40%),
                radial-gradient(circle at 70% 70%, #ffffff10, transparent 40%);
    z-index: 0;
}

/* Center Layout */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 1;
}

/* Card */
.card {
    backdrop-filter: blur(20px);
    background: var(--card);
    border: 1px solid var(--border);
    padding: 50px 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    max-width: 400px;
    width: 90%;
}

/* Title */
.title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Subtitle */
.subtitle {
    font-size: 0.95rem;
    opacity: 0.7;
}

/* Divider */
.divider {
    height: 1px;
    width: 60%;
    margin: 25px auto;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* Phone */
.phone {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

.phone:hover {
    transform: scale(1.05);
    opacity: 0.85;
}

/* Note */
.note {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Mobile */
@media (max-width: 480px) {
    .card {
        padding: 35px 25px;
    }

    .title {
        font-size: 1.6rem;
    }

    .phone {
        font-size: 1.4rem;
    }
}