/* Onboarding-specific styles */

.logo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.logo svg {
    width: 60px;
    height: 60px;
    fill: white;
}

h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.subtitle {
    font-size: 16px;
    color: #a0a0a0;
    margin-bottom: 40px;
    line-height: 1.5;
    max-width: 280px;
}

.input-group {
    width: 100%;
    max-width: 280px;
    margin: 15px 0;
}

.input-group label {
    display: block;
    color: #a0a0a0;
    font-size: 14px;
    margin-bottom: 8px;
    text-align: left;
}

.input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #3a3a52;
    border-radius: 15px;
    padding: 16px;
    font-size: 16px;
    color: white;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #ff6b6b;
    background: rgba(255, 255, 255, 0.15);
}

.weapon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
    max-width: 300px;
    margin: 20px 0;
}

.weapon-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #3a3a52;
    border-radius: 20px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.weapon-card:hover, .weapon-card.selected {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    transform: translateY(-2px);
}

.weapon-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    background: #ff6b6b;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.weapon-card.selected .weapon-icon {
    background: #ff6b6b;
}

.weapon-name {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #3a3a52;
    border-radius: 2px;
    overflow: hidden;
    margin: 20px 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #ee5a24);
    transition: width 0.5s ease;
}

.step-indicator {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.step {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3a3a52;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.step.active {
    background: #ff6b6b;
    transform: scale(1.2);
}

.feature-list {
    text-align: left;
    margin: 20px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin: 15px 0;
    color: #a0a0a0;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.navigation {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.nav-btn {
    background: none;
    border: none;
    color: #a0a0a0;
    font-size: 16px;
    cursor: pointer;
    padding: 10px;
}

.nav-btn:hover {
    color: #ff6b6b;
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.nfc-animation {
    width: 150px;
    height: 150px;
    border: 3px solid #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
    position: relative;
    animation: pulse 2s infinite;
}

.tutorial-steps {
    text-align: left;
    margin: 20px 0;
}

.tutorial-step {
    display: flex;
    align-items: flex-start;
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.step-number {
    width: 30px;
    height: 30px;
    background: #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-text {
    color: #a0a0a0;
    line-height: 1.4;
}

.greeting {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.sub-greeting {
    color: #a0a0a0;
    font-size: 16px;
}
