:root {
    --text-primary: #EAEAEA;
    --text-secondary: #AAAAAA;
    --text-highlight: #FFFF00; 
    --accent-color: #2ECC71; 
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Quicksand', sans-serif;
    background-color: #000;
    background-image: url('../images/background-maze.jpg');
    background-size: auto;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.85);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px;
    position: absolute;
    width: 100%;
    top: 0; left: 0; z-index: 10;
}
.ajalabs-logo { height: 50px; }
.header-right { display: flex; align-items: center; }
.product-logo-header { height: 90px; opacity: 0.8; }

.content-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.hero-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;
}
.central-gif {
    max-width: 100%;
    width: 670px;
    opacity: 0.8;
}

.main-headline {
    color: var(--text-highlight);
    font-family: "Yatra One", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 2.rem;
    letter-spacing: 2px;
    line-height: 1.2;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-shadow: 0 0 20px rgba(0, 0, 0, 1);
}

.pointers-container {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 700px;
    width: 100%;
}

.pointer-item {
    background: rgba(46, 204, 113, 0.05); 
    border: 1px solid rgba(46, 204, 113, 0.2); 
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: background-color 0.3s ease, border-color 0.3s ease; 
    
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

.pointer-item:hover {
    background-color: rgba(46, 204, 113, 0.1);
    border-color: rgba(46, 204, 113, 0.4);
}

.pointer-item:nth-child(1) { animation-delay: 0.5s; }
.pointer-item:nth-child(2) { animation-delay: 0.7s; }
.pointer-item:nth-child(3) { animation-delay: 0.9s; }

.pointer-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--accent-color); 
    display: grid;
    place-items: center;
    color: #000; 
}
.pointer-icon svg {
    width: 20px;
    height: 20px;
}

.pointer-text {
    color: var(--text-secondary);
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
}

.next-button {
    position: absolute;
    bottom: 40px; right: 50px;
    width: 110px; height: 90px;
    transition: transform 0.2s ease-out;
}
.next-button:hover {
    transform: scale(1.1);
}
.next-button img {
    width: 100%; height: 100%;
}