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

body {
    font-family: 'Helvetica LT Std', Arial, sans-serif;
    background-color: #0c0c0c;
    color: #fff;
    margin: 0;
    padding: 0;
}

/* Scroll Progress Bar */
#progress-container {
    position: fixed;
    top: 50%;
    left: 20px;
    width: 6px;
    height: 250px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    z-index: 1000;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

#progress-bar {
    width: 100%;
    height: 0%;
    background: #007BFF;
    border-radius: 10px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    font-family: 'Helvetica LT Std', Arial, sans-serif;
    background: rgba(20, 20, 20, 0.9);
    padding: 15px 0;
    z-index: 999;
}

.nav-container {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    height: 40px;
}

.nav-right a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 1rem;
    font-family: 'Helvetica LT Std', Arial, sans-serif;
}

.nav-right a.btn {
    background: #007BFF;
    padding: 8px 15px;
    border-radius: 5px;
    color: #fff;
}

.nav-right a.btn:hover {
    background: #0056b3;
}

/* Content Sections */
section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content-wrapper {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    height: 150vh; /* Keep the full viewport height */
    background: url("../img/bg/bg-hero.jpg") no-repeat top center;
    background-size: 80%; /* Reduce background image size by 50% */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        background-size: 200%;
    }
}

@media (max-width: 768px) {
        .hero {
        background-size: 400%;
    }
}

/* Snow Effect Container (Positioned Above Hero Image) */
.snow-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1024px;
    width: 100%;
    height: 625px; /* Increased height for wider range */
    overflow: hidden;
    pointer-events: none;
}

/* Snowflake Styling */
.snowflake {
    position: absolute;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 30%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    opacity: 0;
    width: var(--size);
    height: var(--size);
    animation: reverseSnow var(--duration) linear infinite;
}

/* Reverse Snow Animation */
@keyframes reverseSnow {
    0% {
        transform: translateY(0%) scale(0.5); /* Start from lower */
        opacity: 0;
    }
    40% {
        opacity: 0.5; /* Increased visibility */
    }
    100% {
        transform: translateY(-2000%) scale(1.2); /* Moves further */
        opacity: 0;
    }
}

/* Hero Header */
.hero-header {
    font-size: 3rem;
    font-weight: bold;
    color: #ddd;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

/* Hero Subheader */
.hero-subheader {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 6rem;
    color: #ccc;
    text-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
    margin-bottom: 10px;
}

/* Learn More Section */
.learn-more {
    margin-top: 40px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Remove Text Decoration from "Learn More" Link */
.learn-more a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.learn-more a:hover {
    color: #00C3FF; /* Light blue hover effect */
}

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

/* Apply Bouncy Effect */
.down-arrow {
    font-size: 2rem;
    font-weight: bold;
    display: block;
    margin-top: 5px;
    color: #fff;
    transition: transform 0.3s ease-in-out;
    animation: bounce 2s infinite;
}

/* Scroll Reveal Transition */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-in, transform 1s ease-in-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .quick-view-grid {
        grid-template-columns: 1fr; /* Stack content in one column */
        text-align: center;
    }

    .quick-view-left, .quick-view-right {
        text-align: center;
        padding: 0;
    }

    .quick-view h3 {
        font-size: 2rem; /* Adjusted for smaller screens */
    }

    .footer {
        padding: 40px 15px;
    }

    .footer-header {
        font-size: 1.8rem;
    }

    .footer-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .quick-view h3 {
        font-size: 1.8rem;
    }

    .quick-view p {
        font-size: 0.95rem;
    }
}

/* Rounded Edge Image Block */
.hero-image {
    width: 1024px;
    height: auto;
    max-width: 100%;
    margin: 40px auto 0;
    border: 1px solid #333;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Quick View Section */
.quick-view {
    padding: 80px 20px;
    background: #0c0c0c;
    color: #fff;
}

/* Grid Layout for Quick View */
.quick-view-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 30px; /* Space between columns */
    align-items: center;
    text-align: left;
}

/* Left Column */
.quick-view-left {
    text-align: right;
    padding-right: 20px;
}

/* Right Column */
.quick-view-right {
    text-align: left;
    padding-left: 20px;
}

/* Quick View Section Heading - Chromium Gradient */
.quick-view h3 {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(120deg, #d4d4d4, #ffffff, #b0b0b0, #808080);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite alternate;
}

/* Animation to create a subtle shifting effect */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.quick-view p {
    font-size: 1rem;
    color: #bbb; /* Softer contrast */
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: #0c0c0c;
    color: #fff;
    text-align: center;
}

/* Feature Grid Layout */
.feature-grid {
    display: flex;
    justify-content: space-between;
    gap: 5px; /* Maintains same gap */
    max-width: 1024px;
    margin: 0 auto;
}

/* Feature Box */
.feature-box {
    background: #111;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid rgba(200, 200, 200, 0.2); /* Light grey border */
    position: relative;
    display: flex;
    flex-direction: column;
    height: 400px; /* Ensuring feature boxes don't collapse */
}

/* Feature Box Image */
.feature-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills the box without distorting */
}

/* Text Overlay */
.feature-box .feature-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 100px 20px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-box .feature-text h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-box .feature-text p {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature-grid {
        display: flex;
        flex-wrap: wrap;
    }
    .feature-box {
        width: 95%;
        display: flex;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {

    .feature-grid {
        display: flex;
        flex-wrap: wrap;
    }

    .feature-box {
        width: 95%;
        display: flex;
        flex-wrap: wrap;
    }
}


/* Split Layout - 6:4 Ratio */
.split-layout {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    max-width: 1024px;
    margin: 20px auto 0;
}

.split-layout .large-box {
    width: 58%;
    height: 400px; /* Ensuring it has the same height */
}

.split-layout .small-box {
    width: 40%;
    height: 400px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .split-layout {
        display:flex;
        flex-wrap: wrap;
    }
    .split-layout .large-box {
        width: 95%;
        height: auto;
    }
    .split-layout .small-box {
        width: 95%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .split-layout {
        display:flex;
        flex-wrap: wrap;
    }
    .split-layout .large-box {
        width: 95%;
        height: auto;
    }
    .split-layout .small-box {
        width: 95%;
        height: auto;
    }
}


/* GPU Section */
.gpu-section {
    width: 1366px;
    margin: 50px auto;
    padding: 50px auto;
    text-align: center;
    box-shadow: none; /* Removed border and background */
}

/* Top-Left GPU Section Header */
.gpu-section-header {
    text-align: left;
    margin-bottom: 20px;
}

.gpu-section-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.gpu-section-header p {
    font-size: 1rem;
    color: #bbb;
    max-width: 800px;
    margin-top: 5px;
}

/* Assurance Points Section - Single Line */
.gpu-assurance {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    max-width: 1300px; /* Ensure it fits the full container width */
    margin: 20px auto 40px auto;
    flex-wrap: nowrap; /* Prevents wrapping to the next line */
    white-space: nowrap; /* Ensures text stays in one line */
    overflow: hidden;
}

/* Individual Assurance Item */
.assurance-item {
    font-size: 1.1rem;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    padding: 10px 15px;
    border-radius: 8px;
    flex-shrink: 0; /* Prevents items from shrinking */
}

/* Checkmark Icon */
.checkmark {
    font-size: 1.2rem;
    color: #00C3FF;
}


/* GPU Grid Layout */
.gpu-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    max-width: 1366px;
    margin: 0 auto;
}

/* GPU Card */
.gpu-card {
    width: 32%; /* Ensures 3 cards per row */
    background: radial-gradient(circle, rgba(0, 72, 255, 0.1) 10%, rgba(0, 0, 0, 1) 80%);
    padding: 18px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Helvetica LT Std', Arial, sans-serif;
    transition: background 5.5s ease-in-out;
}

/* Hover Effect - Expanding Radial Gradient */
.gpu-card:hover {
    background: radial-gradient(circle, rgba(0, 72, 255, 0.1) 100%, rgba(0, 72, 255, 0.1) 100%);
}

/* Left Side - GPU Info */
.gpu-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* GPU Card Header */
.gpu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/* GPU Logo */
.gpu-logo {
    height: 20px;
    opacity: 0.8;
    margin-bottom: 8px;
}

/* GPU Name */
.gpu-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ddd;
    margin-bottom: 8px;
}

/* GPU Specs */
.spec {
    font-size: 0.95rem;
    font-weight: 400;
    color: #bbb;
    margin-bottom: 5px;
}

/* Right Side - Pricing */
.gpu-pricing {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Secure & Community Pricing */
.price-secure, .price-community {
    font-size: 1rem;
    font-weight: 700;
    color: #aaa; /* Subtler text color */
    margin-bottom: 5px;
}

.price-secure span, .price-community span {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #888; /* Muted color for pricing labels */
}

.price-secure span {
    color: rgba(0, 195, 255, 0.7); /* Softer blue */
}

.price-community span {
    color: rgba(255, 87, 51, 0.7); /* Softer red */
}

/* Responsive Fixes */
@media (max-width: 1024px) {
    .gpu-section {
        max-width: 95%;
        text-align: center;
    }
    
    .gpu-section-header {
        max-width: 90%;
        text-align: center;
    }

    .gpu-assurance {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .assurance-item {
        font-size: 1rem;
        padding: 8px 12px;
    }

    .gpu-card {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .gpu-section {
        max-width: 95%;
        text-align: center;
    }
    
    
    .gpu-section-header {
        max-width: 95%;
        text-align: center;
    }

    .gpu-assurance {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .assurance-item {
        width: 90%;
        text-align: center;
    }

    .gpu-card {
        width: 90%;
    }
}

/* Footer Section */
.footer {
    background: url("../img/bg/bg-footer.jpg") no-repeat top center/cover;
    padding: 60px 20px;
    text-align: center;
    color: #b0b0b0;
    position: relative;
    font-family: 'Helvetica LT Std', sans-serif;
    height: 600px;
}

/* Footer Content Wrapper */
.footer-content {
    max-width: 1024px;
    margin: 0 auto;
    padding: 20px;
}

/* Footer Header */
.footer-header {
    font-size: 2rem;
    font-weight: bold;
    color: #b0b0b0;
    margin-bottom: 15px;
}

/* Footer Subtitle */
.footer-subtitle {
    font-size: 1.2rem;
    font-weight: normal;
    color: #b0b0b0;
    margin-bottom: 25px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: transparent;
    border: 1px solid #ccc;
    border-bottom: 2px solid; /* Bottom border is initially transparent */
    color: #ddd;
    padding: 12px 30px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: 'Helvetica LT Std', Arial, sans-serif;
}

/* Border Fill Effect (From Left to Right) */
.cta-button::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%; /* Initially hidden */
    height: 2px;
    background: #00C3FF;
    transition: width 0.6s ease-in-out;
}

/* Shooting Star Effect */
.cta-button::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -10px; /* Start off-screen */
    width: 15px;
    height: 10px; /* Bigger flare */
    background: radial-gradient(circle, #00C3FF 50%, rgba(0, 195, 255, 0) 80%);
    box-shadow: 0 0 15px rgba(0, 195, 255, 0.8), 0 0 25px rgba(0, 195, 255, 0.6);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease-in;
}

/* Hover Effects */
.cta-button:hover::after {
    width: 100%; /* Expands border fill from left to right */
}

.cta-button:hover::before {
    animation: borderShootingStar 1s ease-out forwards;
    opacity: 1;
}

/* Shooting Star Animation */
@keyframes borderShootingStar {
    0% {
        left: -10px;
        opacity: 1;
        width: 15px;
        height: 6px;
    }
    50% {
        width: 20px;
        height: 8px;
    }
    100% {
        left: 100%;
        opacity: 0;
        width: 25px;
        height: 10px;
    }
}

/* Separation Line */
.footer-line {
    width: 80%;
    margin: 30px auto;
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* Privacy Notice */
.footer-privacy {
    font-size: 0.9rem;
    font-weight: bold;
    color: #ccc;
    margin-bottom: 15px;
    margin: 0px auto 15px auto;
    width: 800px;
    text-align: left;
}

.footer-privacy p {
    text-align: left;
}

.footer-privacy a {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: bold;
}

.footer-privacy a:hover {
    text-decoration: underline;
}

/* Trademark Notice */
.footer-trademark {
    font-size: 0.85rem;
    font-weight: normal;
    color: #999;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

/* Responsive Design for Entire Page */
@media (max-width: 1024px) {
    .content-wrapper {
        max-width: 90%;
    }

    .quick-view-grid {
        gap: 20px; /* Reduce spacing on smaller screens */
    }
}

@media (max-width: 768px) {
    /* Navbar Adjustments */
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 15px;
    }

    .nav-right a {
        font-size: 0.9rem; /* Reduce button size */
        padding: 6px 12px;
    }

    /* Hero Section */
    .hero h1 {
        font-size: 2rem; /* Reduce heading size */
    }

    /* Quick View Section */
    .quick-view-grid {
        grid-template-columns: 1fr; /* Stack content in one column */
        text-align: center;
    }

    .quick-view-left, .quick-view-right {
        text-align: center;
        padding: 0;
    }

    .quick-view h3 {
        font-size: 2rem; /* Reduce heading size */
    }

    /* Footer Adjustments */
    .footer {
        height: auto;
        padding: 40px 15px;
    }

    .footer-header {
        font-size: 1.8rem;
    }

    .footer-subtitle {
        font-size: 1rem;
    }

    .footer-privacy, .footer-trademark {
        text-align: center;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    /* Navbar */
    .nav-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .nav-right {
        margin-top: 10px;
    }

    /* Hero Section */
    .hero h1 {
        font-size: 1.8rem;
    }

    .quick-view h3 {
        font-size: 1.8rem;
    }

    .quick-view p {
        font-size: 0.95rem;
    }

    /* Footer */
    .footer-header {
        font-size: 1.5rem;
    }

    .footer-subtitle {
        font-size: 0.9rem;
    }

    .footer-privacy, .footer-trademark {
        font-size: 0.8rem;
        text-align: center;
    }
}
