﻿
:root {
    --bg: #0b0f1a;
    --card-bg: #161b22;
    --accent: #00d4ff;
    --accent-hover: #0099cc;
    --text: #ffffff;
    --text-dim: #8b949e;
    --success: #238636;
    --warning: #f7931a; /* Bitcoin/Crypto Orange */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    margin: 0;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Banner & Nav */
.top-banner {
    background: var(--warning);
    color: #000;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    font-size: 0.9rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #30363d;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    text-decoration: none;
}

/* Hero */
.hero {
    text-align: center;
    padding: 0px 0;
}

h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-dim);
    max-width: 750px;
    margin: 0 auto 40px;
}

/* Sections */
section {
    padding: 80px 0;
    border-bottom: 1px solid #1e293b;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Cards */
.card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #30363d;
    transition: 0.3s;
}

    .card:hover {
        border-color: var(--accent);
        transform: translateY(-5px);
    }

    .card h3 {
        color: var(--accent);
        margin-top: 0;
        font-size: 1.5rem;
    }

/* Strategy Guide */
.strategy-box {
    background: rgba(0, 212, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--accent);
}

.street-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.street-box {
    background: #0d1117;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #30363d;
    text-align: center;
}

/* Pricing */
.pricing-wrap {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.p-card {
    background: #1c2128;
    border: 1px solid #444c56;
    border-radius: 20px;
    padding: 50px 30px;
    width: 320px;
    text-align: center;
    transition: 0.3s;
}

    .p-card.featured {
        border: 2px solid var(--accent);
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
    }

.price {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 25px 0;
}

    .price span {
        font-size: 1rem;
        color: var(--text-dim);
    }

/* Buttons */
.btn {
    display: inline-block;
    background: var(--accent);
    color: #000;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
}

.btn1 {
    display: inline-block;
    background: var(--accent);
    color: #000;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
    height: 70px;
}

.btn:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

/* FAQ & About */
.faq-item {
    margin-bottom: 30px;
}

    .faq-item h4 {
        color: var(--accent);
        margin-bottom: 12px;
        font-size: 1.2rem;
    }

.about-dev {
    background: linear-gradient(145deg, #111827, #0b0f1a);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

footer {
    text-align: center;
    padding: 80px 0;
    color: var(--text-dim);
    font-size: 0.9rem;
}



.software-gallery {
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
    background: #0f172a; /* Same as your site background */
}

.gallery-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.image-viewport {
    flex: 1;
    background: #1e293b;
    border-radius: 12px;
    border: 2px solid #334155;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    overflow: hidden;
    text-align: center;
}

#display-frame {
    width: 100%;
    height: auto;
    max-height: 600px;
    display: block;
    object-fit: contain; /* Ensures software aspect ratio stays perfect */
    transition: opacity 0.3s ease;
}

#caption-box {
    background: #1e293b;
    color: #00d4ff;
    padding: 15px;
    font-weight: 600;
    border-top: 1px solid #334155;
}

.slide-nav {
    background: transparent;
    border: 2px solid #334155;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    transition: 0.3s;
    line-height: 1;
}

    .slide-nav:hover {
        border-color: #00d4ff;
        color: #00d4ff;
        background: rgba(0, 212, 255, 0.1);
    }

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #334155;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

    .dot.active {
        background-color: #00d4ff;
    }

/* Container setup */
.software-gallery {
    max-width: 1100px;
    margin: auto;
    position: relative;
    padding: 20px;
}

.gallery-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* The "Window" where images appear */
.slider-window {
    flex-grow: 1;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid #334155;
    background: #0d1117; /* Dark background for contrast */
    min-height: 500px; /* Adjust this to match your tallest image */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mySlides {
    display: none;
    text-align: center;
    width: 100%;
}

    /* IMPORTANT: Original Size Settings */
    .mySlides img {
        max-width: 100%; /* Prevents it from going off-screen on mobile */
        height: auto; /* Maintains aspect ratio */
        display: inline-block; /* Allows text-align center to work */
        margin: 0 auto;
    }

.caption-box {
    background: #1c2128;
    color: #00d4ff;
    padding: 15px;
    font-weight: bold;
    border-top: 1px solid #334155;
    margin-top: auto; /* Keeps caption at the bottom */
}

.slide-nav {
    background: #1c2128;
    border: 1px solid #334155;
    color: white;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
    font-size: 20px;
}

    .slide-nav:hover {
        background: #00d4ff;
        color: black;
        border-color: #00d4ff;
    }

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background-color: #334155;
    border-radius: 50%;
    display: inline-block;
    transition: 0.3s;
}

    .active, .dot:hover {
        background-color: #00d4ff;
        transform: scale(1.2);
    }

.fade {
    animation: fadeAnim 0.4s;
}

@keyframes fadeAnim {
    from {
        opacity: 0.6
    }

    to {
        opacity: 1
    }
}

/* Professional Container */
.install-box {
    /* Standard system font stack for a 'native' site look */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #0b0e14;
    color: #d1d1d1;
    max-width: 650px;
    margin: 20px auto;
    padding: 30px;
    line-height: 1.6;
    border: 1px solid #1f2937;
    border-radius: 12px;
}

.install-header {
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
}

    /* Clean blue bullet points to match site accents */
    .step-item::before {
        content: "-";
        margin-right: 12px;
        color: #4da3ff;
        font-weight: bold;
    }

/* Warning/Notice section */
.windows-notice {
    margin-top: 25px;
    padding: 20px;
    background-color: rgba(77, 163, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #4da3ff;
    font-style: italic;
    color: #9ca3af;
    text-align: left;
}

    .windows-notice strong {
        color: #ffffff;
        font-style: normal;
    }


.install-container {
    /* Using the exact font stack and dark background from the site */
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #0b0e14;
    color: #94a3b8; /* The specific light blue-gray font color from your image */
    max-width: 1000px; /* Fully enlarged box */
    margin: 40px auto;
    padding: 50px;
    border: 1px solid #1e293b;
    border-radius: 8px;
    line-height: 2; /* Increased spacing for better readability */
}

.install-header {
    color: #ffffff; /* Pure white header */
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 40px;
    font-weight: 900;
    font-size: 1.4rem;
}

.step-list {
    text-align: left;
    font-size: 1.05rem;
}

.step-text {
    margin-bottom: 15px;
}

.windows-notice {
    margin-top: 40px;
    text-align: center;
    color: #94a3b8;
}

/* Used for the specific phrases highlighted in your original site */
.white-text {
    color: #ffffff;
    font-weight: 600;
}

/* Styling the Trigger Link */
.video-trigger {
    color: #00d4ff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    border: 2px solid #00d4ff;
    padding: 12px 25px;
    border-radius: 50px;
    transition: 0.3s;
    display: inline-block;
}

.video-trigger:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: scale(1.05);
}

.video-trigger span {
    margin-right: 8px;
}

/* The Overlay (Background) */
.video-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

/* The Video Box */
.video-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: #000;
    line-height: 0;
    border: 2px solid #334155;
    border-radius: 12px;
    overflow: hidden;
}

    .video-container video {
        width: 100%;
        height: auto;
    }

/* Close Button */
.close-video {
    position: absolute;
    top: -45px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}



