:root {
    --primary-color: #FFD700;
    --primary-hover: #FFC800;
    --background-dark: #1a1a1a;
    --card-background: #242424;
    --text-color: #ffffff;
    --error-color: #ff4444;
    --input-background: #333333;
    --input-border: #4a4a4a;
}

.honeycomb-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #0a0a0a;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: center center;
}

.honeycomb-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

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

body {
    background: var(--background-dark);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 500px;
}

.card {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

h1 i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

h1 .highlight {
    background: #007cd1;
    padding: 0 8px;
    border-radius: 4px;
}

.input-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.phone-input {
    display: flex;
    gap: 10px;
    position: relative;
}

/* Remove the old phone-input::after arrow since we'll use the native one */
.phone-input::after {
    display: none;
}

/* Add a custom arrow for the country select */
.country-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FFD700' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

input, select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--input-border);
    border-radius: 10px;
    background: var(--input-background);
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.country-select {
    width: 120px;
    flex-shrink: 0;
    position: relative;
    padding: 12px 16px;
    padding-right: 30px;
    appearance: none;
    cursor: pointer;
    font-size: 1rem;
}

.country-select option {
    padding: 8px;
    font-size: 1rem;
    background: var(--input-background);
}

.voice-select-wrapper {
    position: relative;
}

.voice-select {
    width: 100%;
    appearance: none;
    padding-right: 40px;
}

.voice-select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    pointer-events: none;
}

.assistant-select-wrapper {
    position: relative;
}

.assistant-select {
    width: 100%;
    appearance: none;
    padding-right: 40px;
    background: var(--input-background);
    color: var(--text-color);
    border: 2px solid var(--input-border);
}

.assistant-select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    pointer-events: none;
}

.golden-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border: none;
    border-radius: 10px;
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.golden-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, #ffcd00, #ffd700, #45bcd1, #ffcc00);
    border-radius: 12px;
    z-index: -1;
    animation: borderAnimation 4s linear infinite;
    background-size: 400% 400%;
}

.golden-btn::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 8px;
    z-index: -1;
}

@keyframes borderAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.golden-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.golden-btn:hover::before {
    animation: borderAnimation 2s linear infinite;
}

.golden-btn:active {
    transform: translateY(0);
}

.error-message {
    color: var(--error-color);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: block;
}

input.error {
    border-color: var(--error-color);
}

@media (max-width: 480px) {
    .card {
        padding: 1.5rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    .phone-input {
        flex-direction: column;
    }

    .country-select {
        width: 100%;
    }
}