* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Deep navy blue background matching the dark luxury theme */
    background: linear-gradient(135deg, #0a0f1f 0%, #0b152b 50%, #0a0f1f 100%);
    min-height: 100vh;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    position: relative;
}

/* Vertical luxury lines - refined positioning */
.line {
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(212, 166, 42, 0.25);
    z-index: 1;
}

.line-left {
    left: 15%;
}

.line-right {
    right: 15%;
}

/* Add a third subtle line for extra elegance */
.line-center {
    left: 50%;
    transform: translateX(-50%);
    background: rgba(212, 166, 42, 0.12);
}

/* Main Container */
.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    z-index: 2;
}

/* Logo styling - enhanced to match luxury brand */
.logo {
    width: 200px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 166, 42, 0.2);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

/* Mini Title - "PEGASUS LEISURE GETAWAYS PVT. LTD." */
.mini-title {
    font-family: 'Cinzel', serif;
    color: #d4a62a;
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: 25px;
    font-weight: 500;
    text-transform: uppercase;
    word-break: keep-all;
    white-space: nowrap;
}

/* Main Heading - "YOUR PERFECT JOURNEY BEGINS RIGHT HERE" */
h1 {
    font-family: 'Cinzel', serif;
    font-size: 64px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    max-width: 900px;
}

h1 span {
    color: #d4a62a;
    display: inline-block;
}

/* Description text */
.description {
    max-width: 800px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    font-weight: 400;
}

/* Launch Box */
.launch-box {
    margin-bottom: 50px;
}

.launching {
    letter-spacing: 6px;
    font-size: 13px;
    color: rgba(212, 166, 42, 0.7);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 500;
}

.date {
    font-family: 'Cinzel', serif;
    color: #d4a62a;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

/* Time Box - Circular design matching modern luxury */
.time-box {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 166, 42, 0.3);
    background: rgba(10, 15, 31, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.time-box:hover {
    transform: translateY(-8px);
    border-color: #d4a62a;
    background: rgba(212, 166, 42, 0.08);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

/* Time Number */
.time-box span {
    font-size: 46px;
    font-weight: 700;
    color: #d4a62a;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

/* Time Label */
.time-box small {
    margin-top: 8px;
    letter-spacing: 3px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-weight: 500;
}

/* Website link styling */
.website-link {
    margin-top: 60px;
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

.website-link a {
    color: #d4a62a;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s ease;
    border-bottom: 1px solid rgba(212, 166, 42, 0.3);
    padding-bottom: 4px;
}

.website-link a:hover {
    opacity: 0.8;
    border-bottom-color: #d4a62a;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .line-left {
        left: 8%;
    }
    .line-right {
        right: 8%;
    }
}

@media (max-width: 1000px) {
    h1 {
        font-size: 52px;
    }
    .description {
        font-size: 16px;
        padding: 0 15px;
    }
    .time-box {
        width: 110px;
        height: 110px;
    }
    .time-box span {
        font-size: 38px;
    }
    .mini-title {
        font-size: 14px;
        letter-spacing: 3px;
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .logo {
        width: 150px;
        margin-bottom: 20px;
    }

    .mini-title {
        font-size: 11px;
        letter-spacing: 2.5px;
        margin-bottom: 20px;
    }

    h1 {
        font-size: 36px;
        line-height: 1.3;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .description {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 35px;
        padding: 0 15px;
    }

    .date {
        font-size: 28px;
    }

    .launching {
        letter-spacing: 4px;
        font-size: 10px;
    }

    .time-box {
        width: 75px;
        height: 75px;
    }

    .time-box span {
        font-size: 26px;
    }

    .time-box small {
        font-size: 8px;
        letter-spacing: 1.5px;
        margin-top: 4px;
    }

    .countdown {
        gap: 12px;
    }

    .line-left {
        left: 5%;
    }
    .line-right {
        right: 5%;
    }
    .line-center {
        display: none;
    }
    
    .website-link {
        margin-top: 40px;
    }
    .website-link a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 40px 15px;
    }
    h1 {
        font-size: 28px;
    }
    .description {
        font-size: 13px;
    }
    .time-box {
        width: 65px;
        height: 65px;
    }
    .time-box span {
        font-size: 22px;
    }
    .time-box small {
        font-size: 7px;
        letter-spacing: 1px;
    }
    .countdown {
        gap: 8px;
    }
    .date {
        font-size: 24px;
    }
}