/* --- CSS Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- Global Styles --- */
body, html {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    color: #0d1e3d; /* TENTIOR Navy */
    background-color: #f7f7f7;
    overflow: hidden; /* For the fixed background effect */
}

/* --- Main Page Container --- */
.page-container {
    width: 100%;
    height: 100%;
    /* Replace 'background-desk.jpg' with your background image file */
    background: url('background-desk.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Optional Overlay on background for better contrast */
.page-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6); /* Semi-transparent overlay */
    z-index: -1;
}

/* --- Fake Browser UI Styling --- */
.browser-ui {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.browser-ui .circles {
    display: flex;
    gap: 5px;
}

.browser-ui .circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-ui .circle.red { background-color: #ff5f56; }
.browser-ui .circle.yellow { background-color: #ffbd2e; }
.browser-ui .circle.green { background-color: #27c93f; }

.browser-ui .url-bar {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 15px;
    padding: 3px 20px;
    width: 300px;
    text-align: center;
    font-size: 14px;
    color: #555;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.browser-ui .url-bar i { color: #555; font-size: 12px;}

.browser-ui .other-icons {
    display: flex;
    gap: 15px;
    color: #555;
}

/* --- Central Circle Content --- */
.central-circle {
    width: 85%;
    max-width: 680px;
    background-color: white;
    border: 3px solid #1c3253; /* Darker Blue Frame */
    border-radius: 50%; /* Make it a circle */
    padding: 80px 60px; /* Adjust padding to create perfect circle feel */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    /* For responsiveness, use aspect-ratio */
    aspect-ratio: 1 / 1;
    position: relative;
    top: 40px; /* Offset for browser bar */
}

/* Ensure the central circle content fits within the circle */
.logo-area, .main-headline, .countdown-section, .signup-form, .social-icons, .page-footer {
    width: 100%;
}

/* --- Logo Styling --- */
.logo-area {
    margin-bottom: 25px;
}

.logo-area .cart-icon {
    margin-bottom: 10px;
}

.logo-area .cart-icon svg {
    fill: #bd9f6c; /* TENTIOR Gold */
}

.logo-area h1 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0d1e3d;
}

.logo-area p.tagline {
    font-size: 14px;
    margin-top: -3px;
    color: #bd9f6c;
}

.line-dot {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    gap: 8px;
}

.line-dot span {
    display: block;
    width: 30px;
    height: 1px;
    background-color: #bd9f6c;
}

.line-dot .dot {
    width: 6px;
    height: 6px;
    background-color: #bd9f6c;
    border-radius: 50%;
}

/* --- Headline Text --- */
.main-headline h2 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.main-headline p {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* --- Countdown Timer --- */
.countdown-section h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #0d1e3d;
    margin-bottom: 15px;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.digits {
    background-color: #0d1e3d;
    color: white;
    font-size: 36px;
    font-weight: 600;
    width: 65px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    border: 1px solid #0a1730;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.label {
    font-size: 11px;
    font-weight: 600;
    color: #0d1e3d;
    margin-top: 5px;
    letter-spacing: 0.5px;
}

/* --- Signup Form --- */
.signup-form {
    width: 90%;
    max-width: 380px;
    display: flex;
    margin-bottom: 30px;
    border-radius: 6px;
    overflow: hidden;
}

.signup-form input {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-right: none;
    background-color: white;
    font-size: 13px;
    font-family: inherit;
    color: #0d1e3d;
}

.signup-form input:focus {
    outline: none;
    border-color: #0d1e3d;
}

.signup-form button {
    background-color: #bd9f6c;
    color: white;
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    font-family: inherit;
    text-transform: uppercase;
}

/* --- Social Icons --- */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 15px; /* Pull it slightly inside the circle edge */
    margin-top: auto; /* Push to bottom of content block */
}

.social-icons a {
    color: #0d1e3d;
    font-size: 20px;
    text-decoration: none;
}

.social-icons a:hover {
    color: #bd9f6c;
}

/* --- Page Footer --- */
.page-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.footer-links {
    display: flex;
    gap: 15px;
}

.footer-links a {
    color: #0d1e3d;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.footer-links a:hover {
    text-decoration: underline;
}

.page-footer p.copyright {
    font-size: 11px;
    color: #777;
    margin-top: 5px;
}

/* --- Responsiveness --- */
@media (max-width: 768px) {
    .central-circle {
        padding: 50px 30px;
        top: 20px;
        width: 95%;
    }

    .logo-area h1 { font-size: 28px; }
    .main-headline h2 { font-size: 20px; }
    .digits { font-size: 28px; width: 50px; height: 55px; }
    .browser-ui { top: 10px; left: 10px; right: 10px; height: 50px;}
    .browser-ui .url-bar { width: 180px; }
}

@media (max-width: 480px) {
     .central-circle {
        aspect-ratio: auto;
        border-radius: 20px;
        padding: 40px 20px;
    }
    .logo-area h1 { font-size: 24px; }
    .digits { font-size: 24px; width: 45px; height: 50px; }
    .timer { gap: 8px; }
    .signup-form { flex-direction: column; gap: 5px; background: none; box-shadow: none; max-width: 100%;}
    .signup-form input { border-radius: 6px; border-right: 1px solid #ccc;}
    .signup-form button { border-radius: 6px; width: 100%;}
}