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

body {
    background-color: #020202;
    color: #ffffff;
    font-family: 'Courier New', 'Monaco', 'Consolas', 'Lucida Console', monospace;
    height: 100vh;
    overflow: hidden;
}

.container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 40px;
    position: relative;
}

.logo {
    position: absolute;
    top: 30px;
    left: 40px;
    font-family: 'Courier New', 'Monaco', 'Consolas', 'Lucida Console', monospace;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    z-index: 10;
}

.content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 50vw;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.text-section {
    flex: 1;
    max-width: 600px;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(15px);
    margin-left: 60px;
    z-index: 2;
    position: relative;
}

.main-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Courier New', 'Monaco', 'Consolas', 'Lucida Console', monospace;
}

.line1 {
    display: block;
    margin-bottom: 20px;
    white-space: nowrap;
}

.line2 {
    display: block;
    white-space: nowrap;
}


.subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.4;
}

.cta-button {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-button:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

.video-section {
    position: fixed;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

.background-video {
    width: 300%;
    height: 300%;
    object-fit: contain;
    filter: grayscale(100%);
    transform: rotate(-20deg) translate(-15%, -40%);
}

/* Loading Animations for Landing Page */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

.loading-dots {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
}

.loading-dots div {
    position: absolute;
    top: 15px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.loading-dots div:nth-child(1) {
    left: 4px;
    animation: loading-dots1 0.6s infinite;
}

.loading-dots div:nth-child(2) {
    left: 4px;
    animation: loading-dots2 0.6s infinite;
}

.loading-dots div:nth-child(3) {
    left: 16px;
    animation: loading-dots2 0.6s infinite;
}

.loading-dots div:nth-child(4) {
    left: 28px;
    animation: loading-dots3 0.6s infinite;
}

.loading-pulse {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
    margin-right: 10px;
}

.loading-wave {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
}

.loading-wave div {
    position: absolute;
    top: 15px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    animation: loading-wave 1.2s linear infinite;
}

.loading-wave div:nth-child(1) { left: 4px; animation-delay: -0.24s; }
.loading-wave div:nth-child(2) { left: 4px; animation-delay: -0.12s; }
.loading-wave div:nth-child(3) { left: 16px; animation-delay: 0s; }

.loading-progress {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    margin: 10px 0;
}

.loading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    border-radius: 2px;
    animation: loading-progress 2s ease-in-out infinite;
}

.loading-text {
    color: #cccccc;
    font-size: 12px;
    margin-top: 10px;
    text-align: center;
}

/* Animation Keyframes */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes loading-dots1 {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes loading-dots3 {
    0% { transform: scale(1); }
    100% { transform: scale(0); }
}

@keyframes loading-dots2 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(12px, 0); }
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@keyframes loading-wave {
    0%, 40%, 100% { transform: scaleY(0.4); }
    20% { transform: scaleY(1.0); }
}

@keyframes loading-progress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* Button Loading States */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #000000;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Responsive design */
@media (max-width: 1200px) {
    .main-title {
        font-size: 3.5rem;
    }
    
    .content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .line1, .line2 {
        white-space: nowrap;
        margin-bottom: 15px;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .background-video {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .line1, .line2 {
        white-space: nowrap;
        margin-bottom: 12px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .background-video {
        width: 100%;
        height: 100%;
    }
}
