:root {
    --bg-color: #000000;
    --panel-bg: #141414;
    --text-white: #ffffff;
    --text-gray: #8a8a8a;
    --btn-white-bg: #ffffff;
    --btn-white-text: #000000;
    --btn-red: #f8312f;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Background Glows */
.background {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    filter: blur(140px);
    border-radius: 50%;
    opacity: 0.6;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: #173d7a;
    /* Deep blue */
    top: -200px;
    left: -200px;
}

.shape-2 {
    width: 700px;
    height: 700px;
    background: #432168;
    /* Deep purple */
    bottom: -300px;
    right: -200px;
}

.shape-3 {
    display: none;
}

/* Container & Panel */
.container {
    width: 100%;
    max-width: 440px;
    padding: 20px;
    z-index: 10;
}

.glass-panel {
    background: var(--panel-bg);
    border-radius: 16px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Header */
.verif-header h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.verif-header p {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 400;
    margin-bottom: 35px;
}

/* Buttons */
.button-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-verif {
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 15px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-yes {
    background: var(--btn-white-bg);
    color: var(--btn-white-text);
}

.btn-yes:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
}

.btn-no {
    background: transparent;
    color: var(--btn-red);
    border: 1px solid var(--btn-red);
}

.btn-no:hover {
    background: rgba(248, 49, 47, 0.1);
    transform: translateY(-2px);
}

/* Toast Container */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: #222222;
    border-left: 4px solid var(--btn-red);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    transform: translateX(120%);
    animation: slideIn 0.3s forwards;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
    }
}