/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Container */
.container {
    position: relative;
    min-height: 100vh;
    width: 100%;
}

/* Background */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.rocket-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 3rem;
    z-index: 10;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

/* Main content */
.main-content {
    position: relative;
    z-index: 5;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.content-wrapper {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Left side - empty space */
.left-side {
    flex: 1;
}

/* Right side - redirect content */
.right-side {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 2rem;
}

.redirect-content {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    max-width: 500px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #a8a8a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    font-weight: 400;
}

.redirect-info {
    margin-top: 2rem;
}

.info-text {
    font-size: 1rem;
    color: #d0d0d0;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.endpoint-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.endpoint {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.95rem;
    color: #00ff88;
    font-weight: 500;
    word-break: break-all;
}

.note {
    font-size: 0.9rem;
    color: #a0a0a0;
    line-height: 1.5;
}

.docs-link {
    color: #00ff88;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.docs-link:hover {
    color: #00cc6a;
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
        padding: 0 2rem;
    }
    
    .right-side {
        justify-content: center;
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .redirect-content {
        max-width: 100%;
        padding: 2rem;
    }
    
    .title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1.5rem 2rem;
    }
    
    .content-wrapper {
        padding: 0 1.5rem;
    }
    
    .redirect-content {
        padding: 1.5rem;
    }
    
    .title {
        font-size: 1.75rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1rem 1.5rem;
    }
    
    .logo {
        height: 32px;
    }
    
    .content-wrapper {
        padding: 0 1rem;
    }
    
    .redirect-content {
        padding: 1.25rem;
    }
    
    .title {
        font-size: 1.5rem;
    }
    
    .endpoint {
        font-size: 0.85rem;
    }
} 

a {
    color: #00ff88;
    text-decoration: none;
}

a:hover {
    color: #00cc6a;
    text-decoration: underline;
}