﻿:root {
    --primary-color: #6482AD;
    --secondary-color: #F5EDED;
    --bubble-blue: #6482AD;
    --bubble-white: #ffffff;
    --accent-color: #B8001F;
    --shadow: 0 0 15px 2px;
    --bg-blue-white: linear-gradient(135deg, #f6f7f9 0%, #e9ecef 100%);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.new-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f6f7f9 0%, #e9ecef 100%);
}

.card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow) var(--primary-color);
    width: 100%;
    max-width: 480px;
    text-align: center;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sparkle-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.title {
    color: #1a1a1a;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
}

    .btn.primary {
        background: #0070f3;
        color: white;
    }

        .btn.primary:hover {
            background: #0051cc;
            transform: translateY(-2px);
        }

    .btn.secondary {
        background: transparent;
        border: 2px solid #0070f3;
        color: #0070f3;
    }

        .btn.secondary:hover {
            background: rgba(0, 112, 243, 0.1);
            transform: translateY(-2px);
        }

    .btn.clicked {
        transform: scale(0.95);
    }

.icon {
    font-size: 1.2rem;
}

.terms {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 480px) {
    .card {
        padding: 2rem;
    }

    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }
}
