/* ===============================
   INDEX (SPLASH) SPECIFIC STYLES
   =============================== */

.splash-main {
    min-height: 100vh;
    padding: 160px 5% 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-page);
}

.splash-blob-1,
.splash-blob-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}

.splash-blob-1 {
    top: -10%;
    left: -5%;
    width: 40vw;
    height: 40vw;
    max-width: 500px;
    max-height: 500px;
    background: radial-gradient(circle, rgba(56, 160, 196, 0.25) 0%, transparent 70%);
    animation: floating 6s infinite ease-in-out;
}

.splash-blob-2 {
    bottom: -10%;
    right: -5%;
    width: 35vw;
    height: 35vw;
    max-width: 450px;
    max-height: 450px;
    background: radial-gradient(circle, rgba(141, 152, 224, 0.2) 0%, transparent 70%);
    animation: floating 8s infinite ease-in-out reverse;
}

.splash-card {
    position: relative;
    z-index: 10;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    padding: 4rem 3rem;
    text-align: center;
    max-width: 750px;
    width: 100%;
    box-shadow: var(--shadow-lg), 0 30px 60px rgba(56, 160, 196, 0.05);
    animation: fadeInUp 0.8s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.splash-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px rgba(56, 160, 196, 0.1);
}

.splash-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 24px;
    margin-bottom: 2rem;
    color: var(--primary);
    box-shadow: 0 10px 25px rgba(56, 160, 196, 0.2);
    transform: rotate(-5deg);
    transition: var(--transition);
}

.splash-card:hover .splash-icon-wrapper {
    transform: rotate(0) scale(1.1);
    box-shadow: 0 15px 35px rgba(56, 160, 196, 0.3);
}

.splash-icon-wrapper i {
    font-size: 2.2rem;
}

.splash-title {
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.splash-title::first-line {
    color: var(--primary-dark);
    font-size: 1.15em;
}

.splash-desc {
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.splash-btn-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.splash-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.splash-btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 15px 30px rgba(56, 160, 196, 0.25);
}

.splash-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(56, 160, 196, 0.35);
}

.splash-btn-primary i {
    transition: transform 0.3s ease;
}

.splash-btn-primary:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .splash-card {
        padding: 3rem 1.5rem;
        border-radius: 30px;
    }
    
    .splash-btn-group {
        flex-direction: column;
    }
    
    .splash-btn {
        width: 100%;
        justify-content: center;
    }
}

/* TYPEWRITER CURSOR EFFECT */
.splash-title.typing::after {
    content: '|';
    color: var(--primary);
    animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* CUSTOM SVG HAND POINTER ANIMATION */
.splash-btn-container {
    position: relative;
    display: inline-block;
}

.custom-hand-pointer {
    position: absolute;
    bottom: -15px;
    right: 15px;
    width: 40px;
    height: 40px;
    z-index: 20;
    pointer-events: none;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
    animation: tapAnimation 2.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes tapAnimation {
    0% { transform: translate(40px, 40px) scale(1); opacity: 0; }
    20% { transform: translate(0, 0) scale(1); opacity: 1; }
    30% { transform: translate(0, 0) scale(0.85); opacity: 1; }
    40% { transform: translate(0, 0) scale(0.85); opacity: 1; }
    60% { transform: translate(0, 0) scale(1); opacity: 1; }
    80% { transform: translate(40px, 40px) scale(1); opacity: 0; }
    100% { transform: translate(40px, 40px) scale(1); opacity: 0; }
}

.splash-btn-container .splash-btn-primary {
    animation: buttonTapHighlight 2.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes buttonTapHighlight {
    0%, 25% { 
        transform: translateY(0) scale(1); 
        box-shadow: 0 15px 30px rgba(56, 160, 196, 0.25); 
        filter: brightness(1) saturate(1);
    }
    30%, 40% { 
        transform: translateY(2px) scale(0.97); 
        box-shadow: 0 5px 15px rgba(56, 160, 196, 0.5), inset 0 0 20px rgba(56, 160, 196, 0.8);
        filter: brightness(1.2) saturate(1.3);
    }
    45%, 100% { 
        transform: translateY(0) scale(1); 
        box-shadow: 0 15px 30px rgba(56, 160, 196, 0.25); 
        filter: brightness(1) saturate(1);
    }
}
