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

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    color: white;
    background: linear-gradient(-45deg, #0a0e1a, #141e30, #1a1a3e, #0f2027);
    background-size: 400% 400%;
    animation: gradientBG 20s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.container {
    text-align: center;
    width: 90%;
    max-width: 420px;
    padding: 30px 0;
}

h1 {
    font-size: 40px;
    margin-bottom: 5px;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3s ease infinite;
}

@keyframes shimmerText {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.subtitle {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
    font-weight: 300;
    font-size: 15px;
    letter-spacing: 1px;
}

.info-box {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
    border-radius: 22px;
    margin-bottom: 30px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.info-box h2 {
    margin: 5px 0 15px 0;
    font-size: 26px;
    font-weight: 700;
    position: relative;
}

.info-box p {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    margin-bottom: 8px;
    position: relative;
    font-size: 14px;
}

/* Apple Watch QR Styling */
.qr-apple-style {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 250px;
    margin: 20px auto;
    animation: qrBreathe 4s ease-in-out infinite;
}

@keyframes qrBreathe {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

.qr-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(102, 126, 234, 0.4);
    box-shadow: 0 0 15px rgba(118, 75, 162, 0.3), inset 0 0 15px rgba(102, 126, 234, 0.2);
    animation: spinRotate 10s linear infinite;
    pointer-events: none;
}

.qr-ring-1 {
    width: 100%;
    height: 100%;
    border-top: 2px solid rgba(240, 147, 251, 0.8);
    animation-duration: 8s;
}

.qr-ring-2 {
    width: 115%;
    height: 115%;
    border-bottom: 2px solid rgba(102, 126, 234, 0.8);
    animation-duration: 12s;
    animation-direction: reverse;
}

.qr-ring-3 {
    width: 85%;
    height: 85%;
    border-right: 2px solid rgba(118, 75, 162, 0.8);
    animation-duration: 6s;
}

@keyframes spinRotate {
    100% {
        transform: rotate(360deg);
    }
}

.qr-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.note {
    margin-top: 25px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 300;
    letter-spacing: 0.5px;
}