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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #0f1a2e 50%, #1a2e3e 100%);
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- START: Unified Navbar CSS --- */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 70px;
    background: #16243a;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    z-index: 1002;
    margin: 0;
}
.navbar-section {
    display: flex;
    align-items: center;
    min-width: 0;
}
.navbar-center {
    flex: 1;
    justify-content: center;
    display: flex;
    min-width: 0;
}
.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
}
.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 0;
    transition: color 0.2s;
}
.nav-link:hover {
    color: #00bfff;
}
.language-switcher {
    position: relative;
    display: inline-block;
    margin-left: 10px;
    font-size: 15px;
}
.language-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    padding: 7px 14px 7px 10px;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    background: rgba(0, 191, 255, 0.1);
    border: 1px solid rgba(0, 191, 255, 0.3);
    min-width: 80px;
    height: 38px;
}
.language-trigger:hover {
    background: rgba(0, 191, 255, 0.2);
}
.language-trigger .flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    margin-right: 2px;
}
.language-trigger .arrow {
    font-size: 9px;
    margin-left: 2px;
    transition: transform 0.3s ease;
    vertical-align: middle;
}
.language-switcher:hover .language-trigger .arrow {
    transform: rotate(180deg);
}
.language-dropdown {
    position: absolute;
    top: 110%;
    right: 0;
    left: auto;
    background: rgba(0, 0, 0, 0.97);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 8px;
    padding: 4px 0;
    min-width: 160px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
    z-index: 1000;
}
.language-switcher:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.language-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    padding: 7px 14px 7px 10px;
    font-size: 15px;
    border-radius: 4px;
    transition: background 0.2s;
    min-width: 120px;
}
.language-dropdown a:hover {
    background: rgba(0, 191, 255, 0.13);
}
.language-dropdown a.active {
    background: linear-gradient(135deg, #00bfff, #00d4aa);
    color: #fff;
}
.language-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    margin-right: 2px;
}
@media (max-width: 900px) {
  .nav-links { gap: 16px; }
  .navbar { padding: 0 8px; }
}
body {
    margin: 0;
    padding: 0;
}
/* --- END: Unified Navbar CSS --- */

/* Hero */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    min-height: 100vh;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00bfff, #00d4aa, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 191, 255, 0.5);
}

.title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.hero-logo {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.6));
}

.hero-content .subtitle {
    font-size: 1.5rem;
    color: #00d4aa;
    margin-bottom: 30px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(0, 191, 255, 0.8), 0 0 30px rgba(0, 191, 255, 0.6);
    }
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 600px;
    color: #e0e0e0;
    line-height: 1.8;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
    color: #e0e0e0;
    line-height: 1.8;
}

/* Interactive Steps */
.interactive-steps {
    max-width: 600px;
    margin: 0 auto 40px;
    background: rgba(0, 191, 255, 0.05);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.steps-title {
    text-align: center;
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
    background: linear-gradient(90deg, #00bfff 20%, #00d4aa 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: 1px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(0, 191, 255, 0.15);
    display: inline-block;
}

/* Progress Indicator */
.progress-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
}

.progress-step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 191, 255, 0.1);
    border: 2px solid rgba(0, 191, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.progress-step.active {
    background: linear-gradient(135deg, #00bfff, #00d4aa);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
}

.progress-step.completed {
    background: linear-gradient(135deg, #00d4aa, #00bfff);
    border-color: transparent;
    color: #fff;
}

.progress-line {
    width: 40px;
    height: 2px;
    background: rgba(0, 191, 255, 0.2);
    transition: all 0.3s ease;
}

.progress-line.completed {
    background: linear-gradient(90deg, #00d4aa, #00bfff);
}

.step {
    display: none;
    text-align: center;
}

.step.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

.step p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* Choice Buttons */
.choice-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.choice-btn {
    background: rgba(0, 191, 255, 0.1);
    border: 2px solid rgba(0, 191, 255, 0.3);
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
}

.choice-btn:hover {
    background: rgba(0, 191, 255, 0.2);
    border-color: rgba(0, 191, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.3);
}

.choice-btn.selected {
    background: linear-gradient(135deg, #00bfff, #00d4aa);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.4);
}

/* Next Button */
.next-btn {
    background: linear-gradient(135deg, #00bfff, #00d4aa);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 20px;
    opacity: 0.5;
    transform: translateY(10px);
}

.next-btn:enabled {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(0, 191, 255, 0.4);
}

.next-btn:enabled:hover {
    background: linear-gradient(135deg, #00d4aa, #00bfff);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.6);
}

.next-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

/* Crosshair Previews */
.crosshair-previews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 14px;
    margin-bottom: 20px;
    padding: 0 5px;
    justify-items: center;
}

.crosshair-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    min-width: 80px;
    max-width: 100px;
}

.crosshair-option:hover {
    background: rgba(0, 191, 255, 0.1);
    transform: translateY(-2px);
}

.crosshair-option.selected {
    background: rgba(0, 191, 255, 0.2);
    border: 2px solid rgba(0, 191, 255, 0.5);
}

.crosshair-preview {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
  position: relative;
}

.dot-style::after {
  content: '';
    width: 8px;
    height: 8px;
    background: #00d4aa;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 212, 170, 0.8);
}

.cross-style::after {
    content: '';
    width: 20px;
    height: 2px;
    background: #00d4aa;
  position: absolute;
    box-shadow: 0 0 10px rgba(0, 212, 170, 0.8);
}

.cross-style::before {
    content: '';
    width: 2px;
    height: 20px;
    background: #00d4aa;
    position: absolute;
    box-shadow: 0 0 10px rgba(0, 212, 170, 0.8);
}

.circle-style::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #00d4aa;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 212, 170, 0.8);
}

.custom-style::after {
    content: '⚡';
    font-size: 24px;
    color: #00d4aa;
    text-shadow: 0 0 10px rgba(0, 212, 170, 0.8);
}

.all-style::after {
    content: '✨';
    font-size: 24px;
    color: #00d4aa;
    text-shadow: 0 0 10px rgba(0, 212, 170, 0.8);
}

.crosshair-option span {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
}

/* System Options */
.system-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.system-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 191, 255, 0.1);
    border: 2px solid rgba(0, 191, 255, 0.3);
    color: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
}

.system-btn:hover {
    background: rgba(0, 191, 255, 0.2);
    border-color: rgba(0, 191, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.3);
}

.system-btn.selected {
    background: linear-gradient(135deg, #00bfff, #00d4aa);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.4);
}

/* Version Options */
.version-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.version-card {
    background: rgba(0, 191, 255, 0.05);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.version-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 191, 255, 0.2);
}

.version-card.featured {
    border-color: rgba(0, 191, 255, 0.5);
    background: rgba(0, 191, 255, 0.1);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00bfff, #00d4aa);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.version-card h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.version-card p {
    color: #ccc;
    margin-bottom: 15px;
}

.version-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.version-card li {
    color: #ccc;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.version-card li::before {
    content: '✓';
    color: #00d4aa;
    margin-right: 8px;
    font-weight: bold;
}

.download-version-btn {
    background: linear-gradient(135deg, #00bfff, #00d4aa);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.85);
    animation: fadeInScale 0.7s cubic-bezier(0.4,0,0.2,1) forwards;
    animation-delay: 0.2s;
}

.download-version-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.4);
}

/* Timer Offer */
.timer-offer {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), rgba(0, 212, 170, 0.1));
    border: 2px solid rgba(0, 191, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.offer-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.offer-text {
    color: #00d4aa;
    font-size: 1.1rem;
    font-weight: 600;
}

.countdown {
    display: flex;
    gap: 10px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 50px;
}

.time-unit .number {
    color: #00bfff;
    font-size: 1.2rem;
    font-weight: bold;
}

.time-unit .label {
    color: #ccc;
    font-size: 0.7rem;
    margin-top: 2px;
}

.offer-description {
    color: #fff;
    font-size: 1rem;
    margin: 0;
}

/* Quick Download */
.quick-download {
    text-align: center;
    margin-top: 30px;
    animation: fadeInUp 0.8s ease-out;
}

.download-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 20px 40px;
    font-size: 1.2rem;
}

.btn-text {
    font-size: 1.3rem;
    font-weight: 700;
}

.btn-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

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

.highlight-free {
    color: #00d4aa;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

.hero-content .btn {
    font-size: 1.2rem;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 191, 255, 0.4);
}

.download-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat {
    background: rgba(0, 191, 255, 0.1);
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid rgba(0, 191, 255, 0.3);
    color: #00d4aa;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-video video {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-top: 30px;
    border: 2px solid rgba(0, 191, 255, 0.3);
    transition: all 0.3s ease;
}

.hero-video video:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 191, 255, 0.3);
}

.section {
    padding: 80px 20px;
    position: relative;
    text-align: center;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(0, 191, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

.section p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #d0d0d0;
    line-height: 1.8;
}

.dark-section {
    background: linear-gradient(135deg, #0a0f1a 0%, #0f1a2e 100%);
}

.dark-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 70%, rgba(0, 191, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.features-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 40px auto;
}

@media (max-width: 700px) {
  .crosshair-previews {
    grid-template-columns: 1fr 1fr;
    gap: 12px 8px;
    padding: 0 2px;
  }
}

.gif-box {
    background: rgba(0, 191, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 191, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gif-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gif-box:hover::before {
    opacity: 1;
}

.gif-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2);
    border-color: rgba(0, 191, 255, 0.4);
}

.gif-box img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.gif-box:hover img {
    transform: scale(1.05);
}

.gif-box p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 1rem;
}

.gif-box strong {
    color: #9370db;
    font-weight: 600;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.screenshot-grid img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 191, 255, 0.2);
    max-height: 400px;
    object-fit: cover;
}

.screenshot-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.3);
}

.download-btn {
    background: linear-gradient(135deg, #00bfff, #00d4aa);
    color: #ffffff;
    padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
  transition: all 0.3s ease;
    display: inline-block;
  position: relative;
  overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 191, 255, 0.4);
    border: none;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    background: linear-gradient(135deg, #00d4aa, #00bfff);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.6);
}

.gamebar img {
    max-width: 100%;
  height: auto;
  border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
    border: 2px solid rgba(0, 191, 255, 0.3);
  transition: all 0.3s ease;
}

.gamebar img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 191, 255, 0.3);
}

.crosshair-v2 img {
    max-width: 100%;
  height: auto;
  border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
    border: 2px solid rgba(0, 191, 255, 0.3);
  transition: all 0.3s ease;
    max-height: 500px;
    object-fit: contain;
    width: auto;
}

.crosshair-v2 img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 191, 255, 0.3);
}

.footer {
    background: linear-gradient(135deg, #0a0f1a 0%, #0f1a2e 100%);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(0, 191, 255, 0.2);
}

.footer a {
    color: #00d4aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #00bfff;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

.about-intro {
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #d0d0d0;
  line-height: 1.8;
}

.about-features {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    background: rgba(0, 191, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
    border: 1px solid rgba(0, 191, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2);
    border-color: rgba(0, 191, 255, 0.4);
}

.feature-box h3 {
    color: #00d4aa;
    font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-box p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 15px;
        gap: 20px;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .hero-features {
        flex-direction: column;
    }
    
    .feature-item {
        margin: 10px 0;
    }
    
    .download-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .features-content {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .gamebar img,
    .crosshair-v2 img {
        max-width: 90%;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }

    /* Mobile responsive for interactive elements */
    .interactive-steps {
        padding: 20px;
        margin: 0 auto 30px;
    }

    .choice-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .crosshair-previews {
        grid-template-columns: 1fr;
        gap: 12px 8px;
        padding: 0 2px;
    }

    .steps-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .download-version-btn {
        padding: 12px 20px;
        font-size: 1rem;
        max-width: 250px;
    }

    .system-options {
        flex-direction: column;
        gap: 15px;
    }

    .version-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .offer-badge {
        flex-direction: column;
        gap: 15px;
    }

    .countdown {
        gap: 8px;
    }

    .time-unit {
        min-width: 40px;
        padding: 6px 8px;
    }

    .time-unit .number {
        font-size: 1rem;
    }

    .time-unit .label {
        font-size: 0.6rem;
    }

    .next-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .progress-indicator {
        gap: 8px;
    }

    .progress-step {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .progress-line {
        width: 30px;
    }

    .nav-links {
        display: none;
    }
    
    .nav-right {
        display: none;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .screenshot-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.8s ease-out;
}

.gif-box,
.feature-box {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-links a {
    color: #00d4aa;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: #00bfff;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

.download-stats-footer {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.download-stats-footer .stat {
    background: rgba(0, 191, 255, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(0, 191, 255, 0.3);
    color: #00d4aa;
    font-weight: 600;
    font-size: 0.9rem;
}

.download-stats-footer .stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    color: #00d4aa;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #00bfff;
    transform: translateY(-2px);
    filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.5));
}

.legal-container,
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background: linear-gradient(135deg, #0a0f1a 0%, #0f1a2e 100%);
    min-height: 100vh;
    color: #ffffff;
    line-height: 1.8;
}

.legal-container {
    padding-top: 100px;
}

.legal-container h1 {
    color: #00d4aa;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

.legal-container h2 {
    color: #00d4aa;
    font-size: 1.8rem;
    margin: 30px 0 15px 0;
    border-bottom: 2px solid rgba(0, 191, 255, 0.3);
    padding-bottom: 10px;
}

.legal-container p {
    margin-bottom: 15px;
    color: #e0e0e0;
}

.legal-container ul {
    margin: 15px 0;
    padding-left: 30px;
    color: #e0e0e0;
}

.legal-container a.btn {
    display: inline-block;
    background: linear-gradient(135deg, #00bfff, #00d4aa);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    margin: 20px 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
}

/* Hero Download Button */
.hero-download-btn {
    background: linear-gradient(135deg, #00bfff, #00d4aa);
    color: #fff;
    border: none;
    padding: 20px 40px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 10px 35px rgba(0, 191, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin: 0 auto;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-download-btn:hover::before {
    left: 100%;
}

.hero-download-btn:hover {
    background: linear-gradient(135deg, #00d4aa, #00bfff);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 45px rgba(0, 191, 255, 0.4);
}

.hero-download-btn .btn-icon {
    font-size: 2.5rem;
    margin-bottom: 2px;
}

.hero-download-btn .btn-text {
    font-size: 1.3rem;
    font-weight: 700;
}

.hero-download-btn .btn-subtitle {
    font-size: 1rem;
    opacity: 0.8;
}

/* Interactive Steps Section */
.interactive-steps-section {
    background: linear-gradient(135deg, #0a0f1a 0%, #0f1a2e 100%);
    padding: 60px 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-download-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .hero-download-btn .btn-icon {
        font-size: 2rem;
    }
    
    .hero-download-btn .btn-text {
        font-size: 1.1rem;
    }
    
    .hero-download-btn .btn-subtitle {
        font-size: 0.9rem;
    }
}

/* Download Effects */
.downloading-pulse {
    animation: downloadingPulse 1s infinite;
}

.shake-effect {
    animation: shake 0.5s infinite;
}

@keyframes downloadingPulse {
    0% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(0, 212, 170, 0.8);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 40px rgba(0, 212, 170, 1);
    }
    100% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(0, 212, 170, 0.8);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0) scale(1.05);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-2px) scale(1.05);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(2px) scale(1.05);
    }
}

.download-version-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.85);
    animation: fadeInScale 0.7s cubic-bezier(0.4,0,0.2,1) forwards;
    animation-delay: 0.2s;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.85);
    }
    60% {
        opacity: 1;
        transform: scale(1.08);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Download Progress Bar */
.progress-text {
    position: relative;
    z-index: 2;
    color: #fff;
    font-weight: 600;
}

.progress-bar-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    width: 0%;
    transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
}

.download-version-btn {
    transition: all 0.3s ease;
    position: relative;
}

/* AI Stars Effect */
.ai-stars {
    position: absolute;
    top: 7px;
    left: 10px;
    right: auto;
    z-index: 2;
    pointer-events: none;
    display: flex;
    gap: 2px;
}
.ai-star {
    width: 15px;
    height: 15px;
    display: inline-block;
    opacity: 0.85;
    animation: starTwinkle 1.5s infinite alternate;
}
.ai-star svg {
    width: 100%;
    height: 100%;
    display: block;
}
.ai-star:nth-child(2) {
    width: 10px;
    height: 10px;
    animation-delay: 0.5s;
    opacity: 0.7;
}
.ai-star:nth-child(3) {
    width: 7px;
    height: 7px;
    animation-delay: 1s;
    opacity: 0.6;
}
@keyframes starTwinkle {
    0% { filter: brightness(1); opacity: 0.7; }
    100% { filter: brightness(1.7); opacity: 1; }
}

@media (max-width: 700px) {
  .crosshair-option {
    min-width: 70px;
    max-width: 90px;
    padding: 7px;
  }
  .crosshair-preview {
    width: 30px;
    height: 30px;
  }
  .crosshair-option span {
    font-size: 0.75rem;
  }
}

.download-version-btn.show-download-btn {
    opacity: 1 !important;
    transform: scale(1) !important;
    animation: none !important;
}

.back-btn {
  background: none;
  border: none;
  color: #00bfff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 15px;
  margin-right: 10px;
  transition: color 0.2s;
  outline: none;
  padding: 0 8px;
  border-radius: 6px;
}
.back-btn:hover {
  color: #00d4aa;
  text-decoration: underline;
}
@media (max-width: 700px) {
  .back-btn {
    display: block;
    margin: 0 auto 12px 0;
    font-size: 0.95rem;
  }
}

.step-4.download-btn-visible .back-btn {
  display: none !important;
}

.logo img {
    height: 38px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 8px rgba(0, 150, 255, 0.4));
    transition: all 0.3s ease;
}
.logo img:hover {
    transform: scale(1.08) rotate(2deg);
    filter: drop-shadow(0 0 15px rgba(0, 150, 255, 0.7));
}



