/* ==================== WELCOME OVERLAY ==================== */
.welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    animation: welcomeFadeIn 0.8s ease-out;
}
/* --- style.css --- */

/* Styl dla nakładki odliczania */
#countdown-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100; /* Musi być na wierzchu */
    pointer-events: none; /* Żeby nie blokowało kliknięć */
}

#countdown-number {
    font-size: 120px;
    font-weight: bold;
    color: white;
    text-shadow: 0px 0px 20px rgba(0,0,0,0.7); /* Cień dla lepszej widoczności */
    display: block;
    /* Płynna animacja znikania liczby */
    transition: all 0.8s ease-out;
}

/* Styl dla efektu flesza */
#flash-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 101; /* Najwyżej ze wszystkiego */
    opacity: 0; /* Domyślnie niewidoczny */
    pointer-events: none;
    /* Bardzo szybkie pojawienie się i wolniejsze znikanie */
    transition: opacity 0.1s ease-out;
}

/* Klasa dodawana przez JS, aby "odpalić" flesz */
#flash-overlay.active {
    opacity: 1;
    transition: opacity 0s; /* Pojawia się natychmiast */
}
.welcome-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
    animation: welcomePulse 6s ease-in-out infinite;
}

@keyframes welcomeFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes welcomePulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.welcome-overlay.fade-out {
    animation: welcomeFadeOut 0.6s ease-out forwards;
}

@keyframes welcomeFadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.welcome-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    width: 100%;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: auto;
    animation: welcomeSlideUp 0.8s ease-out;
}

@keyframes welcomeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Welcome Header */
.welcome-header {
    margin-bottom: 30px;
}

.welcome-title {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    animation: welcomeTitleGlow 2s ease-in-out infinite;
    letter-spacing: 2px;
}

@keyframes welcomeTitleGlow {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
    }
    50% {
        filter: brightness(1.2) drop-shadow(0 0 25px rgba(255, 215, 0, 0.7));
    }
}

.welcome-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold-light);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    letter-spacing: 1px;
}

/* Welcome Message */
.welcome-message {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.25);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.15);
}

.welcome-intro {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.welcome-intro strong {
    color: var(--gold-primary);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.welcome-info {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.5;
    font-style: italic;
}

/* Name Input */
.welcome-name-input {
    margin-bottom: 25px;
}

.name-label {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 8px;
    text-align: left;
}

.name-input {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.name-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.name-input:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.name-hint {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
    text-align: left;
}

/* Consent Box */
.welcome-consent {
    margin-bottom: 30px;
}

.consent-box {
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.consent-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.consent-text {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.consent-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.consent-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.2s ease;
    text-align: left;
}

.consent-checkbox:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Hide default checkbox */
.consent-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Custom checkbox */
.consent-checkmark {
    position: relative;
    height: 24px;
    width: 24px;
    min-width: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #ffd70066;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.consent-checkbox:hover .consent-checkmark {
    border-color: var(--gold-primary);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

/* Checkmark when checked */
.consent-input:checked ~ .consent-checkmark {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    border-color: var(--gold-primary);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}

/* Checkmark icon */
.consent-checkmark::after {
    content: '';
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid #000;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.consent-input:checked ~ .consent-checkmark::after {
    display: block;
    animation: checkPop 0.3s ease;
}

@keyframes checkPop {
    0% {
        transform: rotate(45deg) scale(0);
    }
    50% {
        transform: rotate(45deg) scale(1.2);
    }
    100% {
        transform: rotate(45deg) scale(1);
    }
}

.consent-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.4;
    transition: color 0.2s ease;
}

.consent-input:checked ~ .consent-label {
    color: var(--text-primary);
}

/* Welcome Button */
.btn-welcome {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 50px;
    font-size: 1.4rem;
    font-weight: 800;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
    color: #000;
    box-shadow:
        0 0 20px rgba(255, 215, 0, 0.5),
        0 5px 20px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-welcome::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-welcome:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 0 30px rgba(255, 215, 0, 0.7),
        0 8px 30px rgba(255, 215, 0, 0.5);
}

.btn-welcome:active {
    transform: translateY(0) scale(1);
}

.btn-welcome:active::before {
    width: 400px;
    height: 400px;
}

.btn-welcome:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: linear-gradient(135deg, #666 0%, #444 100%);
    box-shadow: none;
    transform: none !important;
}

.btn-welcome:disabled:hover {
    transform: none;
    box-shadow: none;
}

.btn-welcome-icon {
    font-size: 1.8rem;
}

.btn-welcome-text {
    position: relative;
    z-index: 1;
}

/* Welcome Footer */
.welcome-footer {
    margin-top: 30px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.welcome-footer a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.welcome-footer a:hover {
    color: var(--gold-light);
}

/* Responsive Welcome Screen */
@media (max-width: 480px) {
    .welcome-title {
        font-size: 2rem;
    }

    .welcome-subtitle {
        font-size: 1.2rem;
    }

    .welcome-message {
        padding: 20px;
    }

    .welcome-intro {
        font-size: 1rem;
    }

    .btn-welcome {
        padding: 18px 40px;
        font-size: 1.2rem;
    }

    .btn-welcome-icon {
        font-size: 1.5rem;
    }
}

@media (max-height: 700px) {
    .welcome-content {
        padding: 20px 0;
    }

    .welcome-header {
        margin-bottom: 20px;
    }

    .welcome-message {
        margin-bottom: 20px;
        padding: 20px;
    }

    .welcome-consent {
        margin-bottom: 20px;
    }
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Party Colors - Black & Gold Theme */
    --bg-dark: #000000;
    --bg-gradient-start: #1a1a1a;
    --bg-gradient-end: #000000;
    --gold-primary: #FFD700;
    --gold-light: #FFF4B3;
    --gold-dark: #B8860B;
    --gold-metallic: #D4AF37;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --success: #FFD700;
    --error: #ff4444;

    /* Shadows & Glows */
    --glow-gold: 0 0 20px rgba(255, 215, 0, 0.6);
    --glow-gold-strong: 0 0 30px rgba(255, 215, 0, 0.8);
    --glow-dark: 0 10px 40px rgba(0, 0, 0, 0.8);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Prevent double scrollbar when welcome overlay is visible */
body.overlay-open {
    overflow: hidden;
}

/* Animated background particles effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.container {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ==================== HEADER ==================== */
.header {
    text-align: center;
    margin-bottom: 30px;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--gold-light), var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5)) brightness(1);
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)) brightness(1.2);
    }
}

.subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* ==================== CAMERA CONTAINER ==================== */
.camera-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), var(--glow-gold);
    border: 2px solid var(--gold-dark);
    background: #000;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; scale: 0.9; }
    to { opacity: 1; scale: 1; }
}

#video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
    background: #000;
}

/* Countdown Overlay */
.countdown {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.countdown.hidden {
    display: none;
}

#countdown-number {
    font-size: 10rem;
    font-weight: 900;
    color: var(--gold-primary);
    text-shadow: var(--glow-gold-strong), 0 0 40px rgba(255, 215, 0, 1);
    animation: countdownPulse 1s ease-in-out;
}

@keyframes countdownPulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Flash Effect */
.flash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 20;
    pointer-events: none;
}

.flash.hidden {
    display: none;
}

.flash.active {
    animation: flashEffect 0.5s ease-out;
}

@keyframes flashEffect {
    0% { opacity: 0; }
    10% { opacity: 1; }
    100% { opacity: 0; }
}

/* ==================== PHOTO COUNTER ==================== */
.photo-counter {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 15px;
    text-shadow: var(--glow-gold);
}

.photo-counter.hidden {
    display: none;
}

/* ==================== THUMBNAILS ==================== */
.thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 10px;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thumbnails.hidden {
    display: none;
}

.thumbnail-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--gold-dark);
    box-shadow: var(--glow-gold);
    background: #000;
}

.thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==================== GUEST NAME DISPLAY ==================== */
.guest-name-display {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 20px;
    text-shadow: var(--glow-gold);
    animation: slideUp 0.5s ease-out;
    letter-spacing: 1px;
}

.guest-name-display.hidden {
    display: none;
}

/* ==================== PROGRESS BAR ==================== */
.progress-container {
    margin: 20px 0;
    animation: fadeIn 0.3s ease-out;
}

.progress-container.hidden {
    display: none;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary), var(--gold-light));
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: var(--glow-gold);
}

.progress-text {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ==================== MESSAGES ==================== */
.message {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    margin: 20px 0;
    animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.message.hidden {
    display: none;
}

.message-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.success-message {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--success);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.success-message h2 {
    color: var(--success);
    margin-bottom: 10px;
}

.error-message {
    background: rgba(255, 0, 110, 0.1);
    border: 2px solid var(--error);
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.3);
}

.error-message h2 {
    color: var(--error);
    margin-bottom: 10px;
}

/* ==================== CONTROLS ==================== */
.controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    color: #000;
    font-weight: 800;
    box-shadow: var(--glow-gold), 0 5px 15px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-gold-strong), 0 8px 25px rgba(255, 215, 0, 0.6);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: linear-gradient(135deg, #333, #666);
    color: var(--gold-primary);
    border: 2px solid var(--gold-dark);
    box-shadow: var(--glow-gold), 0 5px 15px rgba(0, 0, 0, 0.5);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #444, #777);
    box-shadow: var(--glow-gold-strong), 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-retry {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-metallic));
    color: #000;
    font-weight: 800;
    box-shadow: var(--glow-gold), 0 5px 15px rgba(0, 0, 0, 0.5);
}

.btn-retry:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-gold-strong), 0 8px 25px rgba(255, 215, 0, 0.6);
}

.btn-retry:active {
    transform: translateY(0);
}

.btn-download {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.5), 0 5px 15px rgba(0, 0, 0, 0.5);
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.7), 0 8px 25px rgba(76, 175, 80, 0.6);
}

.btn-download:active {
    transform: translateY(0);
}

.btn.hidden {
    display: none;
}

.btn-icon {
    font-size: 1.5rem;
}

.btn-text {
    position: relative;
    z-index: 1;
}

/* ==================== INSTRUCTIONS ==================== */
.instructions {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
}

.instructions h3 {
    color: var(--gold-primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.instructions ol {
    padding-left: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.instructions li {
    margin-bottom: 8px;
}

.instructions.hidden {
    display: none;
}

/* ==================== FOOTER ==================== */
.footer {
    text-align: center;
    margin-top: auto;
    padding: 20px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: var(--gold-light);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 480px) {
    .title {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    #countdown-number {
        font-size: 7rem;
    }

    .btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .thumbnail-wrapper {
        width: 60px;
        height: 60px;
    }

    .message-icon {
        font-size: 3rem;
    }
}

@media (max-height: 700px) {
    .container {
        padding: 10px;
    }

    .header {
        margin-bottom: 15px;
    }

    .camera-container {
        margin-bottom: 15px;
    }
}

/* ==================== ACCESSIBILITY ==================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==================== UTILITY CLASSES ==================== */
.hidden {
    display: none !important;
}
