/* Little Explorer Page - Hero Only */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rubik', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16161d 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

/* Typography */
h1 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    line-height: 1.2;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #f0f0f0;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #b3b3b3;
    margin-bottom: 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text {
    max-width: 600px;
}

.back-link {
    margin-bottom: 2rem;
}

.back-link a {
    font-size: 0.9rem;
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-link a:hover {
    color: #6bb6ff;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6bb6ff;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Hero Screenshots */
.screenshots-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.screenshot-container {
    position: relative;
    width: 420px;
    height: 600px;
}

.screenshot {
    position: absolute;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.screenshot-img {
    width: 280px;
    height: auto;
    display: block;
    border-radius: 30px;
}

.screenshot-1 {
    top: 0;
    left: 0;
    z-index: 2;
    animation: cardAnimation1 1.5s ease-out forwards;
    animation-delay: 0.5s;
}

.screenshot-2 {
    top: 20px;
    left: 140px;
    z-index: 1;
    animation: cardAnimation2 1.5s ease-out forwards;
    animation-delay: 0.7s;
}

@keyframes cardAnimation1 {
    0% { transform: rotate(0deg) translate(0, 0); }
    100% { transform: rotate(-10deg) translate(-30px, 10px); }
}

@keyframes cardAnimation2 {
    0% { transform: rotate(0deg) translate(0, 0); }
    100% { transform: rotate(12deg) translate(20px, -10px); }
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn:hover, .btn:focus, .btn:active {
    text-decoration: none !important;
}

.btn::after {
    display: none !important;
}

.btn:hover::after {
    display: none !important;
}

.btn-primary {
    background: linear-gradient(135deg, #6bb6ff 0%, #92cbff 100%);
    color: #1a1a1a;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 182, 255, 0.3);
    background: linear-gradient(135deg, #4a8ed9 0%, #6ba4e8 100%);
    color: #ffffff;
    text-decoration: none !important;
}

.btn-secondary {
    background: transparent;
    color: #6bb6ff;
    border: 2px solid #6bb6ff;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #6bb6ff;
    color: #1a1a1a;
    text-decoration: none;
}

/* Legal Links */
.legal-links {
    margin-top: 3rem;
    font-size: 0.9rem;
}

.legal-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #6bb6ff;
}

.legal-links .separator {
    color: #666;
    margin: 0 1rem;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .hero-content {
        gap: 3rem;
    }
    
    .screenshot-container {
        width: 360px;
        height: 500px;
    }
    
    .screenshot-img {
        width: 240px;
    }
    
    .screenshot-2 {
        left: 120px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .legal-links {
        margin-top: 2rem;
    }
    
    .legal-links .separator {
        margin: 0 0.5rem;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1.5rem;
    }
    
    .screenshots-section {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .screenshot-container {
        width: 320px;
        height: 280px;
        margin: 0 auto;
    }
    
    .screenshot-img {
        width: 180px;
    }
    
    .screenshot-1 {
        top: 0;
        left: 0;
    }
    
    .screenshot-2 {
        top: 20px;
        left: 100px;
    }
    
    @keyframes cardAnimation1 {
        0% { transform: rotate(0deg) translate(0, 0); }
        100% { transform: rotate(-8deg) translate(-20px, 5px); }
    }
    
    @keyframes cardAnimation2 {
        0% { transform: rotate(0deg) translate(0, 0); }
        100% { transform: rotate(10deg) translate(15px, -5px); }
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .screenshot-container {
        width: 260px;
        height: 240px;
    }
    
    .screenshot-img {
        width: 140px;
    }
    
    .screenshot-1 {
        top: 0;
        left: 10px;
    }
    
    .screenshot-2 {
        top: 15px;
        left: 90px;
    }
    
    @keyframes cardAnimation1 {
        0% { transform: rotate(0deg) translate(0, 0); }
        100% { transform: rotate(-6deg) translate(-10px, 3px); }
    }
    
    @keyframes cardAnimation2 {
        0% { transform: rotate(0deg) translate(0, 0); }
        100% { transform: rotate(8deg) translate(10px, -3px); }
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 375px) {
    .screenshot-container {
        width: 240px;
        height: 220px;
    }
    
    .screenshot-img {
        width: 120px;
    }
    
    .screenshot-2 {
        left: 80px;
    }
}