/* 1. FONT DECLARATION (FIXED PATH & FILENAME) */
@font-face {
    font-family: 'Genty';
    /* Path aur Capitalization check: Genty.ttf must be in the same folder as this CSS */
    src: url('Genty.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --black: #0a0a0a;
    --gray: #7F7F7F;
    --white: #FAFAFA;
    --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

/* 2. CORE STYLES */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Manrope', sans-serif; 
    background: var(--white); 
    color: var(--black); 
    overflow: hidden; 
    -webkit-font-smoothing: antialiased;
}

#canvas-container { position: absolute; inset: 0; z-index: 1; opacity: 0.4; }
.grain-overlay { 
    position: absolute; inset: 0; z-index: 2; pointer-events: none; 
    background: url('https://grainy-gradients.vercel.app/noise.svg'); 
    opacity: 0.05; 
}

.main-wrapper { height: 100vh; display: flex; flex-direction: column; position: relative; z-index: 10; }

/* 3. HEADER */
.header { padding: 40px 8%; display: flex; align-items: center; gap: 30px; }
.logo { height: 38px; transition: transform 0.4s var(--ease); }
.logo:hover { transform: scale(1.05); }
.h-line { flex-grow: 1; height: 1px; background: rgba(0,0,0,0.08); }
.mandate { font-size: 10px; font-weight: 800; letter-spacing: 0.4em; color: var(--gray); text-transform: uppercase; }

/* 4. HERO SECTION */
.hero { flex: 1; padding: 0 8%; display: flex; flex-direction: column; justify-content: center; }
.tagline { font-size: 11px; font-weight: 800; letter-spacing: 0.6em; color: var(--gray); text-transform: uppercase; margin-bottom: 2rem; }

h1 { font-size: clamp(3rem, 7.5vw, 8.5rem); font-weight: 800; line-height: 0.85; letter-spacing: -0.05em; margin-bottom: 4rem; }

/* FIXED SIGNATURE FONT MAPPING */
.depot-signature { 
    font-family: 'Genty', serif !important; 
    color: var(--gray); 
    font-weight: 400; 
    display: inline-block; /* Changed from block to inline-block */ 
    font-size: 1.15em; 
    transform: rotate(-1.5deg) translateX(-10px);
    margin-top: 15px;
    white-space: nowrap;
}
/* Responsive adjustment for very small screens */
@media (max-width: 480px) {
    h1 {
        font-size: 2.8rem; /* Font size thoda chota kiya mobile ke liye */
        line-height: 1.1;
    }
    .depot-signature {
        font-size: 0.9em; /* Signature ko bhi balance kiya */
        transform: rotate(-1deg) translateX(-5px);
    }
}
/* 5. ELITE BUTTON */
.cta-container { margin-top: 20px; }
.elite-button {
    display: inline-flex;
    align-items: center;
    background: var(--black);
    color: white;
    text-decoration: none;
    padding: 6px 6px 6px 35px;
    border-radius: 100px;
    gap: 30px;
    transition: all 0.5s var(--ease);
    border: 1px solid transparent;
}

.btn-text { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; }
.btn-arrow { 
    width: 50px; height: 50px; background: #222; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    transition: transform 0.5s var(--ease);
}
.btn-arrow svg { width: 18px; color: white; }

.elite-button:hover { background: transparent; color: var(--black); border-color: var(--black); }
.elite-button:hover .btn-arrow { transform: rotate(-45deg); background: var(--black); }

/* 6. BOTTOM BAR & TIMER - TRANSPARENCY FIX */
.bottom-bar { 
    padding: 40px 8%; 
    border-top: 1px solid rgba(0,0,0,0.06); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background: #fff; /* Solid background takki piche ka kuch na dikhe */
    position: relative;
    z-index: 100;
}

.redirect-info { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}

.timer-circle { 
    position: relative; 
    width: 48px; 
    height: 48px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    background: transparent !important; /* Force transparent background */
}

/* Digits Fix: Ye digits ko black dikhayega */
#timer {
    font-size: 14px;
    font-weight: 800;
    color: #000 !important; 
    position: relative;
    z-index: 10; /* Takki digits circle ke upar rahein */
}

.circular-chart { 
    position: absolute; 
    inset: 0;
    width: 100%; 
    height: 100%; 
    transform: rotate(-90deg);
    background: transparent !important;
}

/* Background Circle: Ye halka gray circle dikhayega */
.circle-bg { 
    fill: none !important; 
    stroke: rgba(0,0,0,0.05); 
    stroke-width: 3; 
}

/* Progress Line: Ye black loading line dikhayega */
.circle { 
    fill: none !important; 
    stroke: #000 !important; 
    stroke-width: 3; 
    stroke-linecap: round; 
    transition: stroke-dasharray 1s linear; 
}

/* Text next to timer */
.redirect-info p {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #000;
}

.stats { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
    font-size: 10px; 
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 0.2em; 
    color: var(--gray); 
}

.dot { width: 4px; height: 4px; background: var(--gray); border-radius: 50%; }

/* Mobile Adjustment */
@media (max-width: 768px) { 
    .bottom-bar { flex-direction: column; gap: 25px; padding: 40px 5%; text-align: center; }
}
