/* ====================================
   SteamLord - Horizontal Slider Design
   ==================================== */

/* CSS Variables */
:root {
    /* Colors - Blue Theme */
    --bg-primary: #050a15;
    --bg-secondary: #0a1628;
    --bg-card: rgba(20, 35, 60, 0.5);

    --accent-blue: #1a6fd1;
    --accent-blue-light: #3d8be8;
    --accent-blue-dark: #0d4a8a;
    --accent-cyan: #00d4ff;

    --text-primary: #ffffff;
    --text-secondary: #a0b4d0;
    --text-muted: #5a7090;

    /* Glassmorphism */
    --glass-bg: rgba(20, 40, 80, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Gradients */
    --gradient-blue: linear-gradient(135deg, #1a6fd1 0%, #3d8be8 100%);

    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow: hidden;
    height: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

/* ====================================
   Blob Background
   ==================================== */
.blob-container {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, #050a15 0%, #0a1f3a 50%, #0d1a2d 100%);
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: blobFloat 20s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #1a6fd1, #3d8be8);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #00d4ff, #1a6fd1);
    bottom: 20%;
    left: -10%;
    animation-delay: 3s;
    animation-duration: 25s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #0d4a8a, #1a6fd1);
    top: 40%;
    right: 20%;
    animation-delay: 5s;
    animation-duration: 18s;
}

.blob-4 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #3d8be8, #00d4ff);
    bottom: -5%;
    right: 30%;
    animation-delay: 2s;
    animation-duration: 22s;
}

.blob-5 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #1a6fd1, #0d4a8a);
    top: 60%;
    left: 20%;
    animation-delay: 7s;
    animation-duration: 28s;
}

.blob-6 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #00d4ff, #3d8be8);
    top: 10%;
    left: 30%;
    animation-delay: 4s;
    animation-duration: 24s;
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -50px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 30px) scale(0.9);
    }

    75% {
        transform: translate(40px, 20px) scale(1.05);
    }
}

/* Floating Gaming Icons */
.floating-gaming-icons {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.gaming-icon {
    position: absolute;
    font-size: 30px;
    color: rgba(26, 111, 209, 0.1);
    animation: floatGaming 20s ease-in-out infinite;
}

.icon-1 {
    top: 10%;
    left: 5%;
    font-size: 40px;
}

.icon-2 {
    top: 20%;
    right: 8%;
    animation-delay: 2s;
    font-size: 35px;
}

.icon-3 {
    top: 50%;
    left: 3%;
    animation-delay: 4s;
}

.icon-4 {
    bottom: 30%;
    right: 5%;
    animation-delay: 1s;
    font-size: 45px;
}

.icon-5 {
    bottom: 15%;
    left: 10%;
    animation-delay: 3s;
    font-size: 35px;
}

.icon-6 {
    top: 70%;
    right: 15%;
    animation-delay: 5s;
}

@keyframes floatGaming {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.1;
    }

    50% {
        transform: translateY(-30px);
        opacity: 0.2;
    }
}

/* ====================================
   Navigation
   ==================================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 20px;
    background: transparent;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-blue);
    border-radius: 2px;
}

/* ====================================
   Slider System
   ==================================== */
.slider-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.slides-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.slide {
    min-width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 50px;
}

.slide-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

/* Navigation Arrows */
.nav-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 111, 209, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    transition: all var(--transition-medium);
}

.nav-arrow:hover {
    background: rgba(26, 111, 209, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow-left {
    left: 30px;
}

.nav-arrow-right {
    right: 30px;
}

.nav-arrow.visible {
    opacity: 1;
}

/* Slide Indicators */
.slide-indicators {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

.indicator.active {
    background: var(--accent-blue);
    box-shadow: 0 0 15px rgba(26, 111, 209, 0.5);
}

/* Custom Cursor for Navigation */
body.cursor-left {
    cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24" fill="white"><path d="M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z"/></svg>') 16 16, w-resize;
}

body.cursor-right {
    cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24" fill="white"><path d="M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"/></svg>') 16 16, e-resize;
}

/* ====================================
   Hero Section
   ==================================== */
.hero-content {
    text-align: center;
}

.hero-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 40px rgba(26, 111, 209, 0.5));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(40px, 8vw, 70px);
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(26, 111, 209, 0.3);
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--accent-blue-light);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: var(--radius-lg);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition-medium);
}

.btn-primary {
    background: var(--gradient-blue);
    color: white;
    box-shadow: 0 10px 30px rgba(26, 111, 209, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 111, 209, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-blue);
}

/* ====================================
   Section Common Styles
   ==================================== */
.section-header {
    margin-bottom: 50px;
    padding-top: 65px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title .highlight {
    color: var(--accent-blue-light);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

/* ====================================
   Services Grid
   ==================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    transition: all var(--transition-medium);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-blue);
    border-radius: 50%;
    font-size: 24px;
    color: white;
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: -1px;
}

.service-description {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ====================================
   Pricing Grid
   ==================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    backdrop-filter: blur(10px);
    position: relative;
    transition: all var(--transition-medium);
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.popular {
    border-color: var(--accent-blue);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-blue);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.pricing-icon {
    font-size: 32px;
    color: var(--accent-blue-light);
    margin-bottom: 15px;
}

.pricing-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.pricing-price {
    margin-bottom: 20px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-blue-light);
}

.price-period {
    font-size: 13px;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features li i {
    color: var(--accent-blue);
    font-size: 12px;
}

.pricing-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.pricing-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-blue);
}

.pricing-btn.popular-btn {
    background: var(--gradient-blue);
    border: none;
}

/* ====================================
   Showcase Gallery
   ==================================== */
.showcase-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.showcase-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16/9;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.showcase-item:hover .showcase-img {
    transform: scale(1.1);
}

/* ====================================
   Slide Footer
   ==================================== */
.slide-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo {
    width: 30px;
    height: auto;
}

.footer-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-blue-light);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.social-link {
    color: var(--text-muted);
    font-size: 18px;
    transition: color var(--transition-fast);
}

.social-link:hover {
    color: var(--accent-blue);
}

.footer-copyright {
    font-size: 12px;
    color: var(--text-muted);
}

/* ====================================
   Coming Soon (Download Page)
   ==================================== */
.coming-soon-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 60px;
    max-width: 500px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.coming-soon-icon {
    font-size: 60px;
    color: var(--accent-blue);
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.coming-soon-text {
    font-size: 18px;
    color: var(--text-secondary);
}

/* ====================================
   Contact Us Page
   ==================================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 700px;
    margin: 0 auto;
}

.contact-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-medium);
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    background: rgba(26, 111, 209, 0.2);
}

.contact-card i {
    font-size: 36px;
    color: var(--accent-blue-light);
}

.contact-card span {
    font-size: 14px;
    font-weight: 500;
}

/* ====================================
   Responsive Design
   ==================================== */
@media (max-width: 900px) {

    .services-grid,
    .pricing-grid,
    .showcase-gallery,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 600px) {
    .slide {
        padding: 80px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .services-grid,
    .pricing-grid,
    .showcase-gallery,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .nav-arrow {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .nav-arrow-left {
        left: 15px;
    }

    .nav-arrow-right {
        right: 15px;
    }
}