/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', Arial, sans-serif;
}

body {
    background: url('../images/bg.jpg') no-repeat center center/cover fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.overlay {
    background: rgba(0, 0, 0, 0.55);
    position: fixed;
    inset: 0;
    z-index: 1;
}

/* Card Container */
.card {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    max-width: 430px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.logo {
    width: 120px;
    margin-bottom: 12px;
}

h1 {
    font-size: 21px;
    color: #232f3e;
    margin-bottom: 5px;
}

.prices {
    color: #FF9900;
    font-weight: 800;
    font-size: 17px;
    margin-bottom: 15px;
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #555555;
    margin-bottom: 15px;
    background: #f7f9fa;
    padding: 10px 15px;
    border-radius: 10px;
}

.stat span {
    display: block;
    font-weight: 700;
    color: #232f3e;
    font-size: 13px;
    margin-top: 2px;
}

/* Countdown Box */
.countdown-box {
    background: #FFF3E0;
    border: 2px dashed #FF9900;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.countdown-box p {
    font-size: 13px;
    color: #E47911;
    font-weight: 700;
    margin-bottom: 6px;
}

#timer {
    font-size: 22px;
    font-weight: 800;
    color: #B12704;
    letter-spacing: 1px;
}

/* Gift Cards Grid */
.cards {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 15px 0;
}

.gift {
    width: 30%;
    padding: 16px 5px;
    background: linear-gradient(135deg, #FF9900, #FFB84D);
    color: #111111;
    font-weight: 800;
    border-radius: 10px;
    font-size: 14px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.gift:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25);
}

/* CTA Button */
.btn {
    background: #FF9900;
    color: #111111;
    padding: 16px;
    width: 100%;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 5px;
}

.btn:hover {
    background: #E47911;
    transform: scale(1.02);
}

.note {
    font-size: 12px;
    color: #777777;
    margin-top: 12px;
    line-height: 1.6;
}

/* Exit Popup */
#exitPopup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#exitPopup .box {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    max-width: 340px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

#exitPopup h2 {
    color: #B12704;
    margin-bottom: 10px;
    font-size: 20px;
}

#exitPopup p {
    font-size: 14px;
    color: #333333;
    margin-bottom: 15px;
    line-height: 1.5;
}

#exitPopup button {
    background: #FF9900;
    color: #111111;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
}

#exitPopup button:hover {
    background: #E47911;
}

/* Fake Social Proof Notification */
.notif {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #ffffff;
    padding: 12px 15px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 998;
    transform: translateX(-400px);
    transition: transform 0.5s ease;
    border-left: 4px solid #FF9900;
}

.notif.show {
    transform: translateX(0);
}

.notif img {
    width: 35px;
    height: auto;
    border-radius: 5px;
}

.notif p {
    font-size: 13px;
    color: #232f3e;
}

.notif span {
    font-weight: 700;
    color: #FF9900;
}
