/* Silent Mode (Tryb Cichy) Application Styles */
.silent-mode-app {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.silent-container {
    max-width: 550px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.silent-header {
    margin-bottom: 1.5rem;
}

.silent-icon {
    font-size: 4rem;
    color: #6366f1;
    margin-bottom: 1rem;
    animation: gentle-pulse 3s ease-in-out infinite;
}

@keyframes gentle-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.silent-header h1 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.silent-subtitle {
    color: #94a3b8;
    font-size: 1rem;
}

.info-box {
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid #6366f1;
    border-radius: 1rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-box i {
    color: #6366f1;
    font-size: 1.5rem;
    margin-top: 0.125rem;
}

.info-box p {
    color: #c7d2fe;
    font-size: 0.9375rem;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

.silent-status {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.status-text {
    color: #10b981;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.click-counter {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.click-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.click-dot.active {
    background: #6366f1;
    border-color: #6366f1;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.8);
    animation: dotPulse 0.3s ease;
}

@keyframes dotPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}

.recipient-info {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.recipient-label {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.recipient-number {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.settings-link-btn {
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid #6366f1;
    color: #c7d2fe;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.settings-link-btn:hover {
    background: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.send-sms-button {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.send-sms-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.6);
}

.send-sms-button:active {
    transform: translateY(0);
}

.send-sms-button.activating {
    animation: shake 0.3s ease;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-8px);
    }

    75% {
        transform: translateX(8px);
    }
}

.send-sms-button i {
    font-size: 1.5rem;
}

.instruction-box {
    background: rgba(251, 191, 36, 0.1);
    border: 2px solid #fbbf24;
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.instruction-box i {
    color: #fbbf24;
    font-size: 1.5rem;
}

.instruction-box p {
    color: #fef3c7;
    font-size: 0.9375rem;
    margin: 0;
}

.preview-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-box h4 {
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.preview-box #previewText {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.location-note {
    color: #10b981;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.status-text.sending {
    color: #6366f1;
    animation: blink 0.8s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Responsive */
@media (max-width: 640px) {
    .silent-container {
        padding: 2rem 1.5rem;
    }

    .silent-header h1 {
        font-size: 1.5rem;
    }

    .send-sms-button {
        font-size: 1rem;
        padding: 1.25rem;
    }
}