* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'M PLUS 1p', 'Noto Sans JP', sans-serif;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

body {
    background-color: #f0f8ff;
    background-image: 
        url('https://s.nhn-playart.com/smartgame/spn/games/yokai-punipuni/official/home/img/pc/bg_body_top.png?1751346357'),
        url('https://s.nhn-playart.com/smartgame/spn/games/yokai-punipuni/official/home/img/pc/bg_body_btm.png?1751346357'),
        url('https://s.nhn-playart.com/smartgame/spn/games/yokai-punipuni/official/home/img/pc/bg_body_mdl.png?1751346357'),
        url('https://yokai-punipuni.jp/assets/img/common/bg_stars.png');
    background-position: 
        top center,
        bottom center,
        center,
        0 0;
    background-repeat: 
        no-repeat,
        no-repeat,
        repeat-y,
        repeat;
    background-attachment: 
        fixed,
        fixed,
        scroll,
        fixed;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    padding: 10px;
    position: relative;
    overflow-x: hidden;
}

/* Floating Yokai characters */
.floating-yokai {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.floating-yokai:nth-child(1) {
    background-image: url('https://yokai-punipuni.jp/assets/img/chara/jibanyan.png');
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-yokai:nth-child(2) {
    background-image: url('https://yokai-punipuni.jp/assets/img/chara/komasan.png');
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.floating-yokai:nth-child(3) {
    background-image: url('https://yokai-punipuni.jp/assets/img/chara/whisper.png');
    bottom: 20%;
    left: 8%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-5deg); }
}

/* Background Yokai character */
.bg-yokai {
    position: fixed;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background-image: url('https://yokai-punipuni.jp/assets/img/chara/nyanmurai.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    opacity: 0.7;
    z-index: 0;
    transform: scaleX(-1);
    animation: bgFloat 8s ease-in-out infinite;
}

@keyframes bgFloat {
    0%, 100% { transform: scaleX(-1) translateY(0) rotate(0deg); }
    50% { transform: scaleX(-1) translateY(-20px) rotate(5deg); }
}

.header {
    text-align: center;
    margin-bottom: 15px;
    z-index: 3;
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

.header img {
    width: 100%;
    height: auto;
    max-width: 500px;
    max-height: 300px;
    display: block;
    border-radius: 0;
    background: none;
    margin: 0 auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    width: 100%;
    max-width: 420px;
    overflow: visible;
    position: relative;
    z-index: 2;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.status-bar {
    display: flex;
    justify-content: space-between;
    padding: 12px 10px;
    background: linear-gradient(135deg, rgba(230, 230, 250, 0.8), rgba(240, 248, 255, 0.8));
    border-bottom: none;
    width: 100%;
    border-radius: 20px 20px 0 0;
    margin-bottom: 15px;
}

.status-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    padding: 8px 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border: none;
    transition: all 0.3s ease;
    flex: 1;
    margin: 0 3px;
}

.status-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.status-label {
    font-size: 10px;
    color: #666;
    font-weight: 600;
    margin-bottom: 2px;
}

.status-value {
    font-weight: 800;
    color: #4169E1;
    font-size: 12px;
    transition: all 0.3s ease;
}

.content {
    padding: 0 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: #333;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.input-group input {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 3px solid rgba(230, 230, 250, 0.8);
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.input-group input:focus {
    outline: none;
    border-color: rgba(65, 105, 225, 0.8);
    box-shadow: 0 0 20px rgba(65, 105, 225, 0.2);
    transform: translateY(-2px);
}

.device-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.device-btn {
    flex: 1;
    padding: 14px 10px;
    border: 3px solid rgba(230, 230, 250, 0.8);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    touch-action: manipulation;
}

.device-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.device-btn:active {
    transform: scale(0.95);
}

.device-btn.active {
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.9), rgba(147, 112, 219, 0.9));
    color: white;
    border-color: rgba(147, 112, 219, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(147, 112, 219, 0.3);
}

.connect-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.9), rgba(255, 215, 0, 0.9));
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
    touch-action: manipulation;
}

.connect-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.4);
}

.connect-btn:active {
    transform: scale(0.95);
}

.ymoney-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.ymoney-option {
    background: rgba(255, 255, 255, 0.8);
    border: 3px solid rgba(230, 230, 250, 0.8);
    border-radius: 20px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    touch-action: manipulation;
}

.ymoney-option::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.ymoney-option:hover {
    border-color: rgba(65, 105, 225, 0.8);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(65, 105, 225, 0.2);
}

.ymoney-option:hover::before {
    opacity: 1;
    animation: shimmerCoin 1s ease-in-out;
}

.ymoney-option:active {
    transform: scale(0.95);
}

@keyframes shimmerCoin {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.ymoney-option.selected {
    background: linear-gradient(135deg, rgba(230, 230, 250, 0.8), rgba(255, 215, 0, 0.8));
    border-color: rgba(255, 215, 0, 0.8);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.ymoney-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    background: radial-gradient(circle at 30% 30%, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    animation: spin 3s linear infinite;
    border: 3px solid #FFD700;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ymoney-amount {
    font-size: 18px;
    font-weight: 800;
    color: #333;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.ymoney-label {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.verification {
    background: linear-gradient(135deg, rgba(230, 230, 250, 0.8), rgba(240, 248, 255, 0.8));
    border-radius: 20px;
    padding: 20px 15px;
    margin-top: 20px;
    text-align: center;
    border: none;
}

.verification h3 {
    color: #4169E1;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.verification p {
    color: #333;
    font-weight: 600;
    margin-bottom: 12px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.verification-info {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: none;
}

.verification-info p {
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.timer {
    font-size: 16px;
    font-weight: 800;
    color: #4169E1;
    margin: 15px 0;
    animation: pulse 2s ease-in-out infinite;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.verify-btn {
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.9), rgba(147, 112, 219, 0.9));
    color: white;
    border: none;
    border-radius: 20px;
    padding: 14px 25px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    touch-action: manipulation;
}

.verify-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(65, 105, 225, 0.3);
}

.verify-btn:active {
    transform: scale(0.95);
}

.hidden {
    display: none;
}

.warning {
    text-align: center;
    margin-top: 15px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(255, 243, 205, 0.8), rgba(255, 229, 180, 0.8));
    border-radius: 15px;
    color: #856404;
    font-weight: 600;
    border: none;
    font-size: 13px;
}

.warning strong {
    color: #4169E1;
    font-weight: 800;
}

.flash {
    animation: flashWarning 2s ease-in-out infinite;
}

@keyframes flashWarning {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.02); }
}

h2 {
    text-align: center;
    color: #333;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* Notification System */
.notification-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
}

.notification {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 248, 255, 0.95));
    border-radius: 15px;
    padding: 12px 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #4CAF50;
    display: flex;
    align-items: center;
    animation: slideIn 0.5s ease-out forwards;
    transform: translateX(-120%);
    opacity: 0;
}

@keyframes slideIn {
    0% {
        transform: translateX(-120%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification.fade-out {
    animation: fadeOut 0.5s ease-out forwards;
}

@keyframes fadeOut {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-120%);
        opacity: 0;
    }
}

.notification-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 12px;
    flex-shrink: 0;
    overflow: hidden;
}

.notification-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.notification-content {
    flex-grow: 1;
}

.notification-title {
    font-weight: 700;
    font-size: 13px;
    color: #333;
    margin-bottom: 3px;
}

.notification-message {
    font-size: 12px;
    color: #666;
    line-height: 1.3;
}

.notification-time {
    font-size: 10px;
    color: #999;
    margin-top: 3px;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    body {
        padding: 5px;
        justify-content: flex-start;
    }
    
    .container {
        margin: 5px;
        border-radius: 20px;
    }
    
    .header {
        margin-bottom: 10px;
    }
    
    .header img {
        max-width: 90vw;
        max-height: 250px;
    }
    
    .status-bar {
        padding: 8px 5px;
        margin-bottom: 10px;
        flex-wrap: wrap;
    }
    
    .status-item {
        padding: 6px 4px;
        margin: 0 2px;
        flex-basis: 30%;
    }
    
    .status-label {
        font-size: 9px;
    }
    
    .status-value {
        font-size: 11px;
    }
    
    .content {
        padding: 0 10px 15px;
    }
    
    .input-group {
        margin-bottom: 15px;
    }
    
    .input-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .input-group input {
        padding: 12px 10px 12px 40px;
        font-size: 14px;
    }
    
    .device-buttons {
        gap: 8px;
        margin-top: 10px;
    }
    
    .device-btn {
        padding: 12px 8px;
        font-size: 13px;
    }
    
    .connect-btn {
        padding: 14px;
        font-size: 16px;
        margin-top: 15px;
    }
    
    .ymoney-options {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 15px;
    }
    
    .ymoney-option {
        padding: 12px 10px;
    }
    
    .ymoney-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 8px;
        font-size: 18px;
    }
    
    .ymoney-amount {
        font-size: 16px;
    }
    
    .ymoney-label {
        font-size: 11px;
    }
    
    .verification {
        padding: 15px 10px;
        margin-top: 15px;
    }
    
    .verification h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .verification p {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .verification-info {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .verification-info p {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .timer {
        font-size: 14px;
        margin: 12px 0;
    }
    
    .verify-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .warning {
        font-size: 12px;
        padding: 10px;
        margin-top: 12px;
    }
    
    h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .floating-yokai {
        width: 30px;
        height: 30px;
    }
    
    .bg-yokai {
        width: 150px;
        height: 150px;
        bottom: -20px;
        right: -20px;
    }
    
    .notification-container {
        top: 10px;
        left: 10px;
        max-width: 250px;
    }
    
    .notification {
        padding: 10px 12px;
    }
    
    .notification-icon {
        width: 25px;
        height: 25px;
        margin-right: 10px;
    }
    
    .notification-icon img {
        width: 16px;
        height: 16px;
    }
    
    .notification-title {
        font-size: 12px;
    }
    
    .notification-message {
        font-size: 11px;
    }
}

/* For very small screens */
@media (max-width: 320px) {
    .header img {
        max-width: 95vw;
        max-height: 200px;
    }
    
    .status-bar {
        flex-direction: column;
        gap: 5px;
    }
    
    .status-item {
        flex-basis: 100%;
        margin-bottom: 5px;
    }
    
    .device-buttons {
        flex-direction: column;
    }
    
    .notification-container {
        max-width: 200px;
    }
}

/* Phone-specific optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch target sizes */
    .device-btn {
        padding: 16px 12px;
        font-size: 15px;
    }
    
    .connect-btn {
        padding: 18px;
        font-size: 17px;
    }
    
    .ymoney-option {
        padding: 18px 12px;
    }
    
    .verify-btn {
        padding: 16px 25px;
        font-size: 15px;
    }
    
    /* Remove hover effects on touch devices */
    .device-btn:hover,
    .connect-btn:hover,
    .ymoney-option:hover,
    .verify-btn:hover {
        transform: none;
    }
    
    /* Enhance active states for touch feedback */
    .device-btn:active,
    .connect-btn:active,
    .ymoney-option:active,
    .verify-btn:active {
        transform: scale(0.92);
        transition: transform 0.1s ease;
    }
}

/* Custom animations for alerts */
@keyframes yokaiPopIn {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes yokaiPopOut {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes errorPop {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}
/* Enhanced Verification Screen Styles */
.verification {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.verification .header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px;
    text-align: center;
    color: white;
}

.verification .header h1 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.verification .header p {
    font-size: 14px;
    opacity: 0.9;
}

.verification .content {
    padding: 30px;
}

.verification-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.verification-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 3px;
    background: #f0f0f0;
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 33%;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: white;
    border: 3px solid #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
    color: #aaa;
}

.step.active .step-icon {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

.step.completed .step-icon {
    background: #4CAF50;
    border-color: #4CAF50;
    color: white;
}

.step-text {
    font-size: 12px;
    color: #666;
    font-weight: 600;
}

.step.active .step-text {
    color: #667eea;
}

.verification-info {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    border-left: 4px solid #667eea;
}

.info-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.info-title i {
    margin-right: 10px;
    color: #667eea;
}

.info-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #eee;
}

.info-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.detail-label {
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

.detail-value {
    font-weight: 700;
    color: #333;
    font-size: 14px;
}

.security-notice {
    background: #fff8e1;
    border: 1px solid #ffd54f;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.security-notice i {
    color: #ff9800;
    font-size: 20px;
    margin-right: 10px;
    flex-shrink: 0;
}

.notice-content {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.notice-content strong {
    color: #ff9800;
}

.timer-container {
    text-align: center;
    margin-bottom: 25px;
}

.timer-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 600;
}

.timer {
    font-size: 28px;
    font-weight: 800;
    color: #e91e63;
    letter-spacing: 1px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.verify-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    letter-spacing: 1px;
}

.verify-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.6);
}

.verify-btn:active {
    transform: translateY(0);
}

.verification .footer {
    text-align: center;
    margin-top: 20px;
}

.footer-text {
    font-size: 12px;
    color: #999;
}

/* Mobile responsiveness for verification screen */
@media (max-width: 480px) {
    .verification .header {
        padding: 20px;
    }
    
    .verification .header h1 {
        font-size: 20px;
    }
    
    .verification .content {
        padding: 20px;
    }
    
    .step-text {
        font-size: 10px;
    }
    
    .timer {
        font-size: 24px;
    }
    
    .verify-btn {
        padding: 16px;
        font-size: 15px;
    }
}