* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(180deg, #0f1026 0%, #071930 50%, #0c2b45 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 450px;
    text-align: center;
}

header h1 {
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: #d1f4ff;
    font-weight: 400;
    text-transform: uppercase;
}

header h2 {
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: #a3b8cc;
    font-weight: 300;
    margin-top: 5px;
}

.scanner-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 40px 0 25px 0;
}

.scanner-title h3 {
    font-size: 1.8rem;
    letter-spacing: 4px;
    color: #00f3ff;
    font-weight: 600;
}

.dot {
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
}

.green-dot {
    background-color: #39ff14;
    box-shadow: 0 0 10px #39ff14;
}

.cards-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.card {
    background: linear-gradient(145deg, #0b1e36, #09172a);
    border: 2px solid #143657;
    border-radius: 20px;
    padding: 30px 20px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 15px rgba(0, 243, 255, 0.05);
}

.card:hover {
    border-color: #00f3ff;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2), inset 0 0 15px rgba(0, 243, 255, 0.1);
    transform: translateY(-2px);
}

.status-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 12px;
    height: 12px;
    background-color: #00ff66;
    border-radius: 50%;
    box-shadow: 0 0 8px #00ff66;
}

/* Custom CSS Icons to match the image */
.icon-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.phone-icon {
    width: 30px;
    height: 55px;
    border: 3px solid #ffffff;
    border-radius: 6px;
    position: relative;
    padding: 4px;
}

.screen-dots {
    display: grid;
    grid-template-columns: repeat(3, 1xl);
    gap: 3px;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, #222, #222 2px, #333 2px, #333 4px);
    border-radius: 2px;
}

.qr-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.arrow {
    font-size: 1.5rem;
    color: #a3b8cc;
}

.compact {
    height: 45px;
    width: 25px;
}

.card h2 {
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 500;
}

.card p {
    color: #7991a6;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}
