/* Zeus Connect Layout - Mobile Optimized v4 */

.connect-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: calc(100vh - 80px);
    padding: 0.5rem 1rem 2rem;
    position: relative;
}

/* Hero Section - Background Layer */
.connect-view .zeus-hero-section {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.75;
}

/* Marquee Section - Mid Layer */
.connect-view .zeus-marquee-section {
    width: 100%;
    z-index: 5;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}

/* Connect Card - Foreground Layer */
.connect-view .connect-card {
    z-index: 10;
    position: relative;
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 1px rgba(139, 92, 246, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.2);
    max-width: 480px;
    width: 100%;
    text-align: center;
    animation: zeus-float-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Logo styling */
.connect-view .logo-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    position: relative;
    animation: zeus-glow-pulse 2s ease-in-out infinite;
}

/* Button styling */
.connect-view button {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.connect-view button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.6);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .connect-view {
        padding: 0.25rem 1rem 1.5rem;
        min-height: calc(100vh - 70px);
    }
    
    .connect-view .zeus-hero-section {
        top: 18%;
        width: 95%;
        max-width: 100%;
        opacity: 0.5;
    }
    
    .connect-view .zeus-marquee-section {
        margin-bottom: 0.5rem;
    }
    
    .connect-view .connect-card {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
    
    .connect-view .logo-container {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .connect-view button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .connect-view {
        padding: 1rem 1.5rem 2rem;
    }
    
    .connect-view .zeus-hero-section {
        top: 22%;
        opacity: 0.65;
    }
}

/* Large screens */
@media (min-width: 1400px) {
    .connect-view {
        padding: 1rem 2rem 3rem;
    }
    
    .connect-view .zeus-hero-section {
        max-width: 700px;
    }
    
    .connect-view .connect-card {
        max-width: 520px;
    }
}
