@tailwind base;
@tailwind components;
@tailwind utilities;

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #000000;
    color: #e5e7eb;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.main-nav {
    width: 100%;
    background: rgba(10, 14, 26, 0.95);
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.main-nav a, .main-nav span, .main-nav button {
    color: #e5e7eb;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    margin: 0 4px;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
}
.main-nav a:hover, .main-nav button:hover {
    color: #3b82f6;
}
.main-nav form {
    display: inline;
}

.container {
    max-width: 1200px;
    width: 100%;
    background: #0f1823;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.left-section {
    padding: 60px;
    background: #1a2332;
}

.title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.subtitle {
    font-size: 15px;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 40px;
}

.steps {
    list-style: none;
    margin-bottom: 40px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;

    border: 1px solid rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.step-content {
    padding-top: 4px;
}

.step-text {
    font-size: 15px;
    color: #e5e7eb;
}

.step-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.step-link:hover {
    border-bottom-color: #3b82f6;
}

.btn-deploy {
    background: white;
    color: #1a2332;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-deploy:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.right-section {
   
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

/* Slideshow Background */
.bg-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 110%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    filter: brightness(1) contrast(1.3) saturate(0.6);
    animation: scaleImage 30s ease-in-out infinite;
}


.bg-slide.active {
    opacity: 1;
}

@keyframes scaleImage {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}


.right-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 10, 25, 0.85) 0%, rgba(15, 25, 60, 0.75) 50%, rgba(8, 15, 35, 0.85) 100%);
    z-index: 2;
}

.brand {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0px;
    z-index: 3;
    text-align: center;
    white-space: nowrap;
}

.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    z-index: 3;
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide-text.active {
    opacity: 1;
}


/* Responsive */
@media (max-width: 968px) {
    .container {
        grid-template-columns: 1fr;
    }

    .right-section {
        min-height: 400px;
    }

    .left-section {
        padding: 40px;
    }

    .brand {
        font-size: 32px !important;
        margin-top: 100px !important;
    }
}