@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #0a0a12;
    color: #ffffff;
    overflow-x: hidden;
}

.nav {
    background-color: rgba(10, 10, 18, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    padding: 15px 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    color: #00ffaa;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item {
    margin-left: 15px;
}

.menu-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    padding: 8px 12px;
    border-radius: 4px;
}

.menu-link:hover {
    color: #0a0a12;
    background-color: #00ffaa;
}

.menu-link i {
    margin-right: 6px;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,255,170,0.15) 0%, rgba(10,10,18,0.9) 60%, rgba(10,10,18,1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 90%;
    padding: 0 20px;
}

.hero-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 255, 170, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00ffaa;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #a0a0a0;
    letter-spacing: 1px;
}

.download-btn {
    background-color: transparent;
    color: #00ffaa;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 30px;
    border: 2px solid #00ffaa;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 255, 170, 0.2);
    transition: all 0.3s;
}

.download-btn:hover {
    color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 255, 170, 0.7);
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn i {
    margin-right: 8px;
}

.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #0a0a12;
}

.particle {
    position: absolute;
    background: rgba(0, 255, 170, 0.5);
    border-radius: 50%;
    pointer-events: none;
}

.cyberpunk-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    perspective: 500px;
    z-index: 1;
}

.grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(60deg);
    width: 200%;
    height: 200%;
    background: 
        linear-gradient(rgba(0, 255, 170, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 170, 0.07) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;
    transform-style: preserve-3d;
    animation: grid-animation 20s linear infinite;
}

@keyframes grid-animation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 40px;
    }
}

.glow-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #00ffaa;
    box-shadow: 0 0 10px #00ffaa, 0 0 20px #00ffaa, 0 0 30px #00ffaa;
    animation: glow-line-animation 10s infinite linear;
    z-index: 1;
    opacity: 0.3;
}

.glow-line:nth-child(1) {
    top: 20%;
    animation-delay: -2s;
}

.glow-line:nth-child(2) {
    top: 60%;
    animation-delay: -5s;
}

.glow-line:nth-child(3) {
    top: 80%;
    animation-delay: -8s;
}

@keyframes glow-line-animation {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.floating-code {
    position: absolute;
    color: rgba(0, 255, 170, 0.2);
    font-family: monospace;
    font-size: 12px;
    z-index: 1;
    animation: float-animation 30s linear infinite;
    white-space: nowrap;
}

@keyframes float-animation {
    0% {
        transform: translateY(100vh);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #00ffaa;
    margin: 4px 0;
    transition: all 0.3s;
}

/* System Requirements Section */
.requirements {
    padding: 100px 0;
    background-color: #0d0d15;
    position: relative;
    overflow: hidden;
}

.requirements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,255,170,0.05) 0%, rgba(10,10,18,1) 70%);
    z-index: 1;
}

.requirements-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(15, 15, 25, 0.7);
    border: 1px solid rgba(0, 255, 170, 0.3);
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 255, 170, 0.2);
    backdrop-filter: blur(5px);
}

.requirements-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    color: #00ffaa;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 255, 170, 0.5);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.requirement-item {
    padding: 20px;
    background-color: rgba(0, 255, 170, 0.05);
    border-radius: 6px;
    border-left: 3px solid #00ffaa;
}

.requirement-title {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #00ffaa;
}

.requirement-title i {
    margin-right: 10px;
    font-size: 20px;
}

.requirement-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.requirement-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #c0c0c0;
    font-size: 14px;
}

.requirement-list li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #00ffaa;
    font-weight: bold;
}

/* Trust Section */
.trust {
    padding: 100px 0;
    background-color: #080810;
    position: relative;
    overflow: hidden;
}

.trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,255,170,0.05) 0%, rgba(8,8,16,1) 70%);
    z-index: 1;
}

.trust-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(15, 15, 25, 0.7);
    border: 1px solid rgba(0, 255, 170, 0.3);
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 255, 170, 0.2);
    backdrop-filter: blur(5px);
}

.trust-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    color: #00ffaa;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 255, 170, 0.5);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.trust-item {
    padding: 25px;
    background-color: rgba(0, 255, 170, 0.05);
    border-radius: 6px;
    border-left: 3px solid #00ffaa;
    text-align: center;
}

.trust-icon {
    font-size: 40px;
    color: #00ffaa;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 170, 0.5);
}

.trust-item-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.trust-item-text {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.5;
}

.testimonial {
    margin-top: 50px;
    padding: 20px;
    background-color: rgba(0, 255, 170, 0.05);
    border-radius: 6px;
    border-left: 3px solid #00ffaa;
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* Modified testimonial structure to put avatar on the left */
.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
}

.testimonial-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #00ffaa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #0a0a12;
    font-weight: bold;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-author-name {
    font-weight: 600;
    color: #ffffff;
}

.testimonial-author-title {
    font-size: 12px;
    color: #00ffaa;
}

.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-style: italic;
    color: #c0c0c0;
    position: relative;
    padding: 0 20px;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 30px;
    color: rgba(0, 255, 170, 0.3);
    position: absolute;
}

.testimonial-text::before {
    left: 0;
    top: -10px;
}

.testimonial-text::after {
    right: 0;
    bottom: -10px;
}

/* Progress Indicator */
.progress-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    background-color: rgba(10, 10, 18, 0.8);
    border: 1px solid rgba(0, 255, 170, 0.5);
    border-radius: 6px;
    padding: 10px 15px;
    box-shadow: 0 0 15px rgba(0, 255, 170, 0.3);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    min-width: 180px;
}

.progress-label {
    color: #00ffaa;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, #00ffaa, #00ccff);
    width: 1%;
    border-radius: 4px;
    animation: progress-pulse 2s infinite;
    box-shadow: 0 0 8px rgba(0, 255, 170, 0.7);
}

.progress-percentage {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 5px;
    text-shadow: 0 0 5px rgba(0, 255, 170, 0.7);
}

@keyframes progress-pulse {
    0% {
        box-shadow: 0 0 5px rgba(0, 255, 170, 0.7);
    }
    50% {
        box-shadow: 0 0 15px rgba(0, 255, 170, 0.9);
    }
    100% {
        box-shadow: 0 0 5px rgba(0, 255, 170, 0.7);
    }
}

@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: rgba(10, 10, 18, 0.9);
        padding: 10px;
        border-radius: 4px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }
    
    .menu.active {
        display: flex;
    }
    
    .menu-item {
        margin: 10px 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 12px;
    }
    
    .download-btn {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .requirements-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-content,
    .trust-content {
        padding: 20px;
    }
    
    .progress-container {
        bottom: 20px;
        left: 20px;
        min-width: 150px;
    }
    
    /* Make testimonial responsive on mobile */
    .testimonial {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .testimonial-author {
        flex-direction: row;
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
    }
    
    .testimonial-author-avatar {
        margin-bottom: 0;
        margin-right: 10px;
    }
    
    .testimonial-author-info {
        align-items: flex-start;
        text-align: left;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}
/* Hide default scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* Background of the scrollbar track */
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.1);
}

/* Scrollbar handle */
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #00ffff 0%, #0066ff 100%);
  border-radius: 2px;
  box-shadow: 0 0 5px #00ffff, inset 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Scrollbar handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #00ffff 0%, #0080ff 100%);
  box-shadow: 0 0 10px #00ffff, inset 0 0 10px rgba(0, 0, 0, 0.7);
}

/* Scrollbar corner */
::-webkit-scrollbar-corner {
  background: #000;
}

/* For Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #00ffff #000000;
}

/* Add a cyber glow effect when scrolling (optional) */
body.scrolling ::-webkit-scrollbar-thumb {
  box-shadow: 0 0 15px #00ffff, inset 0 0 10px rgba(0, 0, 0, 0.5);
}