:root {
    --bg-dark: #07090f;
    --bg-card: #12141c;
    --bg-accent: #1c1f2b;
    --primary: #ffd700;
    --primary-depth: #ffae00;
    --primary-glow: rgba(255, 215, 0, 0.4);
    --secondary: #00f2ff;
    --text: #ffffff;
    --text-dim: #9499a8;
    --success: #00e676;
    --danger: #ff4747;
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Orbitron', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--bg-dark);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 9, 15, 0.85);
    /* Dark overlay */
    z-index: -1;
}

.hidden {
    display: none !important;
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateY(20px);
    transition: transform 0.4s;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.age-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

/* Header */
.bet-header {
    background: rgba(18, 20, 28, 0.95);
    backdrop-filter: blur(15px);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 2000;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.logo-text .highlight {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.balance-pill {
    background: var(--bg-accent);
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: right;
}

.balance-pill .label {
    display: block;
    font-size: 0.55rem;
    color: var(--primary);
    font-weight: 800;
}

.balance-pill .value {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

/* Sections */
main {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

section {
    padding: 40px 20px;
    text-align: center;
}

/* Welcome Lobby */
.lobby-banner {
    padding-top: 20px;
    text-align: center;
}

.banner-badge {
    background: var(--primary);
    color: #000;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.lobby-banner h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.neon-text {
    color: var(--secondary);
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
}

.welcome-gift {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), rgba(0, 0, 0, 0));
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    padding: 15px 20px;
    margin: 25px 0 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    animation: slideIn 0.8s ease-out;
}

.welcome-gift::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    animation: shine 3s infinite;
}

.gift-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.gift-text {
    text-align: left;
}

.gift-text span {
    display: block;
    font-size: 0.65rem;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.gift-text strong {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }

    20% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.featured-games {
    margin: 30px 0;
}

.game-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.game-card img {
    width: 100%;
    border-radius: 18px;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.game-info {
    text-align: left;
    width: 100%;
}

.game-name {
    display: block;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
}

.game-status {
    font-size: 0.65rem;
    color: var(--primary);
    font-weight: 900;
}

.btn-primary-sm {
    background: linear-gradient(90deg, var(--primary), var(--primary-depth));
    color: #000;
    font-weight: 900;
    padding: 15px;
    border-radius: 12px;
    border: none;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 174, 0, 0.3);
}

.lobby-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.stat-bubble {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    color: var(--text-dim);
}

.stat-bubble span {
    color: var(--secondary);
    font-weight: 700;
}

.app-footer-lobby {
    margin-top: 40px;
    padding-bottom: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0.7;
}

.trust-item span {
    font-size: 0.7rem;
    font-weight: 600;
}

/* Game Grid */
.scratch-card-frame {
    background: linear-gradient(135deg, #252833 0%, #0d0e14 100%);
    padding: 20px;
    border-radius: 35px;
    border: 3px solid var(--primary);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.15);
    margin: 30px 0;
}

.card-inner-bg {
    background: #08090d;
    padding: 15px;
    border-radius: 25px;
}

.scratch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.grid-item {
    aspect-ratio: 1 / 1;
    border-radius: 15px;
    background: #161822;
    position: relative;
    border: 1px solid #2a2d3d;
    overflow: hidden;
}

.grid-item canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: pointer;
    touch-action: none;
}

.grid-item .item-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #1c1f2b, #0a0b10);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
}

.grid-item.matched {
    border-color: var(--primary);
    box-shadow: 0 0 25px var(--primary-glow);
    animation: winPulse 0.6s infinite alternate;
}

@keyframes winPulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.06);
    }
}

/* Professional Tax & Warning Styles */
.highlight-tax {
    background: rgba(255, 215, 0, 0.08) !important;
    border-left: 5px solid var(--primary) !important;
    padding: 25px !important;
    text-align: left;
}

.highlight-tax strong {
    color: var(--primary);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 8px;
}

.info-details-card {
    background: #0f111a;
    border-radius: 20px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.info-title {
    font-size: 0.7rem;
    color: var(--text-dim);
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.info-details-card ul {
    list-style: none;
}

.info-details-card li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.info-details-card li .dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.info-details-card p {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--text-dim);
}

.info-details-card p strong {
    color: #fff;
}

.btn-primary.glow-large {
    box-shadow: 0 15px 40px rgba(255, 174, 0, 0.4);
    animation: glowPulseLarge 2s infinite;
}

@keyframes glowPulseLarge {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 174, 0, 0.3);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 15px 50px rgba(255, 174, 0, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 174, 0, 0.3);
    }
}

.trust-footer-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.badge-item span {
    font-size: 0.65rem;
    color: var(--text-dim);
    font-weight: 600;
}

/* Dashboard & Steps */
.status-steps {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 15px;
}

.step {
    width: 38px;
    height: 38px;
    background: #1c1f2b;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step.active {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--primary-depth));
    color: #000;
    font-weight: 900;
    padding: 20px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    margin-top: 10px;
    transition: 0.3s;
    text-transform: uppercase;
}

.btn-primary.glow {
    box-shadow: 0 10px 30px rgba(255, 174, 0, 0.3);
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

/* Wallet Card */
.main-balance-card {
    background: var(--bg-card);
    padding: 35px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 25px;
}

.total-label {
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.total-value {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: #fff;
}

.points-val {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 700;
    margin-top: 5px;
    display: block;
}

.bonus-alert {
    background: rgba(0, 230, 118, 0.1);
    color: var(--success);
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Amount Selection */
.amount-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 25px 0;
}

.amount-btn {
    background: var(--bg-accent);
    border: 2px solid transparent;
    padding: 20px;
    border-radius: 16px;
    color: #fff;
    font-weight: 900;
    font-size: 1.1rem;
    cursor: pointer;
}

.amount-btn.active {
    border-color: var(--primary);
    background: rgba(255, 215, 0, 0.05);
}

.amount-btn.glow {
    box-shadow: 0 0 20px var(--primary-glow);
    animation: glowAnim 1.5s infinite alternate;
}

@keyframes glowAnim {
    from {
        opacity: 0.8;
    }

    to {
        opacity: 1;
    }
}

/* Forms */
.bet-input {
    width: 100%;
    background: var(--bg-accent);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px;
    border-radius: 16px;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 15px;
    outline: none;
    transition: border-color 0.3s;
}

.bet-input:focus {
    border-color: var(--primary);
}

.input-group label {
    display: block;
    text-align: left;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 6px;
    padding-left: 5px;
}

/* Loading */
.game-loader {
    width: 60px;
    height: 60px;
    border: 4px solid #1c1f2b;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 30px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.bet-progress-bg {
    width: 100%;
    height: 10px;
    background: #1c1f2b;
    border-radius: 10px;
    margin-top: 30px;
    overflow: hidden;
}

.bet-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--primary);
    transition: width 0.3s;
}

/* Confirmation */
.receipt-card {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 25px;
    margin: 20px 0;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.receipt-title {
    font-size: 0.65rem;
    color: var(--text-dim);
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.r-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.r-row.success strong {
    color: var(--success);
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 15px 0;
}

.total-receive {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary);
}

/* Highlighted Tax Box */
/* Highlighted Tax Box */
.tax-highlight-box {
    background: rgba(255, 215, 0, 0.05);
    border: 2px dashed var(--primary);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    margin: 30px 0;
    position: relative;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.1);
    animation: taxPulse 2s infinite;
}

@keyframes taxPulse {
    0% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
        border-color: #ffe666;
        transform: scale(1.02);
    }

    100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
        transform: scale(1);
    }
}

.tax-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 3px;
    margin-bottom: 5px;
    font-weight: 800;
    text-transform: uppercase;
}

.tax-value-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    line-height: 1;
    margin: 10px 0 15px 0;
}

.tax-value-row .currency {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700;
    margin-top: 8px;
}

.tax-value-row .amount {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    background: linear-gradient(180deg, #fff 20%, #bbb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tax-note {
    font-size: 0.8rem;
    color: var(--success);
    background: rgba(0, 230, 118, 0.1);
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
}

@media (max-width: 480px) {
    .bet-banner h1 {
        font-size: 2.1rem;
    }

    .total-value {
        font-size: 2.3rem;
    }
}

/* Game Card Overlay Button Styles */
.game-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
}

.overlay-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto !important;
    padding: 12px 25px;
    font-size: 0.9rem;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
    animation: overlayBtnPulse 1.5s infinite ease-in-out;
    white-space: nowrap;
    z-index: 5;
}

@keyframes overlayBtnPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 35px rgba(255, 215, 0, 0.8);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
}

/* Dice Professional Animation */
.dice-anim {
    display: inline-block;
    animation: professionalDiceFloat 3.5s ease-in-out infinite;
    transform-origin: center center;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

@keyframes professionalDiceFloat {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    15% {
        transform: translateY(-6px) rotate(15deg) scale(1.2);
    }

    30% {
        transform: translateY(-3px) rotate(-10deg) scale(1.2);
    }

    45% {
        transform: translateY(-5px) rotate(10deg) scale(1.2);
    }

    60% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
}

/* Professional Hero Logo */
.hero-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.dice-3d-wrapper {
    perspective: 1000px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.giant-dice {
    font-size: 5rem;
    display: inline-block;
    animation: spinDice3D 4s linear infinite;
    transform-style: preserve-3d;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    line-height: 1;
}

@keyframes spinDice3D {
    0% {
        transform: rotateY(0deg) rotateZ(0deg);
    }

    100% {
        transform: rotateY(360deg) rotateZ(5deg);
    }
}

.brand-main-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
    background: linear-gradient(180deg, #fff 40%, #999 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

.brand-main-title .gold-accent {
    background: linear-gradient(180deg, var(--primary) 20%, var(--primary-depth) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-subtitle-badge {
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--primary);
    padding: 8px 30px;
    text-transform: uppercase;
    width: 100%;
}


/* Giant 3D Emoji Dice */
.giant-dice {
    font-size: 6rem;
    display: inline-block;
    animation: emojiSpin3D 4s linear infinite;
    transform-style: preserve-3d;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
    line-height: 1;
}

@keyframes emojiSpin3D {
    0% {
        transform: rotateY(0deg) rotateZ(0deg) scale(1);
    }

    25% {
        transform: rotateY(90deg) rotateZ(5deg) scale(1.1);
    }

    50% {
        transform: rotateY(180deg) rotateZ(0deg) scale(1);
    }

    75% {
        transform: rotateY(270deg) rotateZ(-5deg) scale(1.1);
    }

    100% {
        transform: rotateY(360deg) rotateZ(0deg) scale(1);
    }
}

/* Hold to Verify Button */
.verify-container {
    position: relative;
    max-width: 100%;
    margin: 20px auto;
}

.btn-hold-verify {
    position: relative;
    background: #1c1f2b;
    border: 2px solid var(--primary);
    border-radius: 16px;
    height: 60px;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.1s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
}

.btn-hold-verify:active {
    transform: scale(0.98);
}

.btn-bg-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--success);
    z-index: 1;
    transition: width 0.1s linear;
}

.btn-text {
    position: relative;
    z-index: 2;
    color: #fff;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    letter-spacing: 1px;
}

.btn-hold-verify.verified .btn-bg-fill {
    width: 100% !important;
}

.btn-hold-verify.verified .btn-text {
    color: #000;
}

.security-msg {
    margin-top: 10px;
    font-size: 0.75rem;
    color: var(--text-dim);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.lock-icon {
    font-size: 0.9rem;
}

/* Verification Screen Specifics */
#verification-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.verify-wrapper {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 30px;
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.verify-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.verify-wrapper h2 {
    font-family: var(--font-heading);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.verify-wrapper p {
    color: var(--text-dim);
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.verify-footer {
    margin-top: 30px;
    font-size: 0.7rem;
    opacity: 0.5;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}