* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #C84344;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hidden {
    display: none !important;
}

.glass-card {
    background: white;
    border-radius: 50px;
    padding: 40px 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    min-width: 500px;
    max-height: 95vh;
    overflow-y: auto;
}

.header-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
}

.heart-icon {
    width: 35px;
}

.main-camera-img {
    width: 200px;
}

.select-button {
    background-color: #C84344;
    color: white;
    border: none;
    padding: 15px 50px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.select-button:hover {
    transform: scale(1.05);
}

.action-btn {
    width: 300px;
    padding: 15px;
    border: 2px solid #E0E0E0;
    background: white;
    border-radius: 20px;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.action-btn:hover {
    border-color: #C84344;
    color: #C84344;
}

.camera-wrapper {
    position: relative;
    width: 440px;
    height: 330px;
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    border: 5px solid #E0E0E0;
}

#webcam {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);
}

.capture-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #C84344;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    z-index: 10;
}

.countdown-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 6rem;
    font-weight: 800;
    z-index: 20;
}

.polaroid-frame {
    background: transparent;
    padding: 0;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

#final-photo {
    width: auto;
    max-width: 350px;
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 5px;
}

/* Filtre Paneli */
.filter-options {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.filter-btn {
    padding: 8px 15px;
    border: 2px solid #E0E0E0;
    background: white;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
}

.filter-btn.active {
    background-color: #C84344;
    color: white;
    border-color: #C84344;
}

.result-actions {
    display: flex;
    gap: 15px;
}