/* CRITICAL FIX: Override all bold text */
.modal-beta-content,
.modal-beta-content *,
.modal-beta-layout,
.modal-beta-layout *,
body .modal-beta-content,
body .modal-beta-content * {
    font-weight: 400 !important;
}

/* Selectively apply bold only where needed */
.modal-beta-title,
body .modal-beta-title {
    font-weight: 600 !important;
}

.exif-label,
body .exif-label {
    font-weight: 600 !important;
}

.modal-beta-description strong,
body .modal-beta-description strong {
    font-weight: 600 !important;
}

.btn-beta,
body .btn-beta {
    font-weight: 500 !important;
}

.modal-beta {
    display: none;
    position: fixed;
    z-index: 10000 !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.modal-beta * {
    z-index: inherit;
}

.modal-beta-content {
    position: relative;
    margin: 2% auto;
    width: 95%;
    max-width: 1400px;
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
}

.modal-beta-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-beta-close:hover,
.modal-beta-close:focus {
    color: #4285f4;
}

.modal-beta-layout {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 30px;
    color: #fff;
}

/* LEFT COLUMN */
.modal-beta-left {
    display: flex;
    flex-direction: column;
}

.modal-beta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    text-align: left;
}

.modal-beta-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    margin-bottom: 20px;
    background: #000;
}

.modal-beta-exif {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.exif-item {
    display: flex;
    flex-direction: column;
}

.exif-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4285f4;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.exif-value {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #fff;
}

.modal-beta-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-beta {
    font-family: 'Poppins', sans-serif;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-beta-primary {
    background: #4285f4;
    color: #fff;
}

.btn-beta-primary:hover {
    background: #357ae8;
    transform: translateY(-2px);
}

/* RIGHT COLUMN */
.modal-beta-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 60px; /* Prevent text overlap with close button */
}

.modal-beta-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.modal-beta-description p {
    margin-bottom: 8px;
}

.modal-beta-description p:last-child {
    margin-bottom: 0;
}

.modal-beta-description strong {
    color: #fff;
    font-weight: 600;
}

.btn-beta-order {
    background: #4285f4;
    color: #fff;
    font-size: 1.2rem;
    padding: 18px 30px;
    margin-bottom: 30px;
    width: 100%;
}

.btn-beta-order:hover {
    background: #357ae8;
    transform: translateY(-2px);
}

.btn-beta-coffee {
    background: #333;
    color: #fff;
    font-size: 1rem;
    padding: 15px 30px;
    margin-bottom: 30px;
    width: 100%;
    border: 2px solid #555;
}

.btn-beta-coffee:hover {
    background: #444;
    border-color: #6799c2;
}

.modal-beta-logo {
    text-align: center;
    margin-top: auto;
}

.modal-beta-logo img {
    max-width: 300px;
    height: auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .modal-beta-layout {
        grid-template-columns: 1fr;
    }
    
    .modal-beta-exif {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .modal-beta-content {
        width: 98%;
        padding: 20px;
        margin: 5% auto;
    }
    
    .modal-beta-title {
        font-size: 1.4rem;
    }
    
    .modal-beta-exif {
        grid-template-columns: 1fr;
    }
    
    .modal-beta-actions {
        flex-direction: column;
    }
    
    .btn-beta {
        width: 100%;
    }
}

/* Notify Me Button */
.btn-beta-notify {
    background: #4285f4;
    color: #fff;
    font-size: 1.2rem;
    padding: 18px 30px;
    margin-bottom: 15px;
    width: 100%;
}

.btn-beta-notify:hover {
    background: #357ae8;
    transform: translateY(-2px);
}
