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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, #3880ff 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px;
    padding-top: calc(60px + env(safe-area-inset-top));
    padding-bottom: 0;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body::after {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 5;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 600px;
    text-align: center;
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

.hero-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    object-position: bottom;
    z-index: 1;
}

.hero-title {
    color: white;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: relative;
    z-index: 3;
}

.hero-subtitle {
    color: rgba(255,255,255,0.95);
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 40px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 3;
}

.continue-button {
    background: white;
    color: #3880ff;
    border: none;
    border-radius: 50px;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    max-width: calc(100% - 40px);
    z-index: 10;
    text-align: center;
}

.continue-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

.continue-button:active {
    transform: translateY(0);
}

.continue-button .arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.continue-button:hover .arrow {
    transform: translateX(4px);
}

/* Mobile */
@media (max-width: 480px) {
    body {
        padding: 20px 16px;
        padding-top: calc(40px + env(safe-area-inset-top));
        padding-bottom: 0;
    }
    
    .hero-image {
        max-width: 120%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-title {
        font-size: 45px;
        margin-bottom: 12px;
        margin-top: 30px;
    }
    
    .hero-subtitle {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .continue-button {
        padding: 16px 40px;
        font-size: 16px;
        bottom: 30px;
        max-width: calc(100% - 32px);
        left: 50%;
        transform: translateX(-50%);
    }
    
    .continue-button:hover {
        transform: translateX(-50%) translateY(-2px);
    }
    
    .continue-button:active {
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 360px) {
    .hero-image {
        max-width: 130%;
    }
    
    .hero-title {
        font-size: 24px;
        margin-top: 20px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .continue-button {
        padding: 14px 36px;
        font-size: 15px;
        bottom: 20px;
        max-width: calc(100% - 32px);
        left: 50%;
        transform: translateX(-50%);
    }
    
    .continue-button:hover {
        transform: translateX(-50%) translateY(-2px);
    }
    
    .continue-button:active {
        transform: translateX(-50%) translateY(0);
    }
}