:root {
    --primary: #f39c12;
    --primary-dark: #d68910;
    --accent: #e67e22;
    --accent-light: #ff6b35;
    --dark-bg: #0a0e27;
    --dark-card: #1a1f3a;
    --text-primary: #ffffff;
    --text-secondary: #b0b8d4;
    --gradient-main: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #f39c12 100%);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0f1436 50%, #1a0f2e 100%);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background effect layer */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 20% 50%, rgba(243, 156, 18, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(230, 126, 34, 0.06) 0%, transparent 50%),
            radial-gradient(circle at 40% 0%, rgba(255, 107, 53, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Content wrapper */
.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
header {
    padding: 30px 0;
    border-bottom: 1px solid rgba(243, 156, 18, 0.1);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    border-radius: 20%;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary);
}

/* ===== HERO SECTION ===== */
.hero {
    text-align: center;
    padding: 80px 0 60px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero h1 .highlight {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.4);
}

.btn-docker {
    background: rgba(230, 126, 34, 0.1);
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-docker:hover {
    background: rgba(230, 126, 34, 0.2);
    transform: translateY(-3px);
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title .highlight {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.feature-card {
    background: rgba(26, 31, 58, 0.5);
    border: 1px solid rgba(243, 156, 18, 0.2);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    background: rgba(26, 31, 58, 0.8);
    border-color: rgba(243, 156, 18, 0.4);
    transform: translateY(-10px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

/* ===== CAPABILITIES SECTION ===== */
.capabilities {
    padding: 80px 0;
}

.capabilities-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.capabilities-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.3;
}

.capabilities-text h2 .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.capabilities-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.capabilities-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.capabilities-list i {
    color: var(--primary);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.capabilities-list span {
    color: var(--text-secondary);
    line-height: 1.6;
}

.capabilities-visual {
    background: rgba(26, 31, 58, 0.5);
    border: 1px solid rgba(243, 156, 18, 0.2);
    border-radius: 12px;
    padding: 40px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.capabilities-visual::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.15) 0%, transparent 70%);
    filter: blur(40px);
}

.mock-terminal {
    background: rgba(10, 14, 39, 0.8);
    border: 1px solid rgba(243, 156, 18, 0.3);
    border-radius: 8px;
    padding: 20px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 12px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.terminal-header {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
}

.terminal-line {
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.5;
}

.terminal-text {
    color: #127fff;
}

.terminal-line.success {
    color: #2ecc71;
}

.terminal-line.info {
    color: var(--text-secondary);
}

/* ===== PLATFORMS SECTION ===== */
.platforms {
    padding: 60px 0 80px;
    background: rgba(26, 31, 58, 0.3);
    border-radius: 12px;
    margin: 60px 0;
    padding: 60px 40px;
}

.platforms h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 50px;
    font-weight: 700;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    text-align: center;
}

.platform-item {
    padding: 20px;
    background: rgba(10, 14, 39, 0.5);
    border: 1px solid rgba(243, 156, 18, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.platform-item:hover {
    border-color: var(--primary);
    background: rgba(243, 156, 18, 0.05);
}

.platform-item i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 10px;
}

.platform-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===== TECH STACK ===== */
.tech-stack {
    padding: 80px 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.tech-item {
    background: rgba(26, 31, 58, 0.5);
    border: 1px solid rgba(243, 156, 18, 0.15);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    background: rgba(26, 31, 58, 0.7);
}

.tech-item i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 15px;
}

.tech-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.tech-item p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ===== FOOTER ===== */
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(243, 156, 18, 0.1);
    margin-top: 80px;
    text-align: center;
    color: var(--text-secondary);
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-bottom {
    font-size: 13px;
    color: rgba(176, 184, 212, 0.6);
}

/* ===== GALLERY SECTION ===== */

.gallery-item {
    margin: 0 25%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(243, 156, 18, 0.2);
    background: rgba(26, 31, 58, 0.5);
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.2);
    transform: translateY(-5px);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 14, 39, 0.95), transparent);
    padding: 40px 20px 20px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .capabilities-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-links {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}