.pc-2729-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    font-family: 'Cairo', sans-serif;
    direction: rtl;
}

.pc-2729-glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    max-width: 600px;
    width: 100%;
    animation: fadeIn 1s ease-out;
}

.pc-2729-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.pc-2729-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.pc-2729-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    direction: ltr;
}

.pc-2729-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem 1rem;
    border-radius: 16px;
    min-width: 90px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.pc-2729-box:hover {
    transform: translateY(-5px);
}

.pc-2729-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(13, 110, 253, 0.2);
}

.pc-2729-label {
    font-size: 0.9rem;
    color: #777;
    font-weight: 600;
}

.pc-2729-ended-state {
    margin-top: 2rem;
    animation: fadeIn 0.5s ease-out;
}

.pc-2729-ended-msg {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.pc-2729-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.pc-2729-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.5);
    color: white;
}

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

@media (max-width: 768px) {
    .pc-2729-timer {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .pc-2729-box {
        min-width: 70px;
        padding: 1rem;
    }
    .pc-2729-number {
        font-size: 2rem;
    }
}