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

html, body {
    width: 100%;

    overflow-x: hidden; 
    background-color: #1A1A1A;
    color: white;
    font-family: Helvetica, sans-serif;
}

@font-face { font-family: 'NVIDIA Regular'; src: url("font/NVIDIASans-Regular.ttf"); }
@font-face { font-family: 'NVIDIA Bold'; src: url("font/NVIDIASans-Bold.ttf"); }

h1, h2, h3, strong { font-family: 'NVIDIA Bold', Helvetica, sans-serif; }
p, a, div { font-family: 'NVIDIA Regular', Helvetica, sans-serif; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
.hidden { display: none !important; }


.ankers {
    position: fixed;
    width: 100%;
    top: 0; left: 0;
    background: white;
    z-index: 100;
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.logo { width: 100px; margin-bottom: 0.5rem; }
.links { display: flex; gap: 1rem; }
.ankers a { color: black; font-size: 0.9rem; font-weight: bold; }


header {
    position: relative;
    height: 100vh;
    margin-top: 80px; 
    overflow: hidden;
    width: 100%;
}
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.info {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}
.info a {
    background-color: #76b900;
    color: black;
    padding: 12px 24px;
    font-family: "NVIDIA Bold";
    display: inline-block;
    border: none;
}


.intro-container {
    background-image: url("imgs/cropped.png");
    background-size: cover;
    background-position: center;
    background-color: black;
    background-repeat: no-repeat;

    padding: 4rem 1.5rem;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    width: 100%;
}


.intro-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;

    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.intro-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.intro-text { max-width: 600px; }
.intro-text h2 { font-size: 2.2rem; margin-bottom: 0.5rem; line-height: 1.1; }
.intro-text h3 { color: #76b900; margin-bottom: 1rem; text-transform: uppercase; font-size: 1.5rem; }
.intro-text p { color: #e0e0e0; line-height: 1.6; font-size: 1rem; }


.rtx-section {
    background: linear-gradient(181deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0) 100%);

    padding: 4rem 1.5rem;
    text-align: center;
    display: flex;
    justify-content: center;
}

.rtx-content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rtx-content h2 {
    font-family: 'NVIDIA Bold';
    color: #e0e0e0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.rtx-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.rtx-content p {
    color: #cccccc;
    line-height: 1.6;
    max-width: 700px;
    margin-bottom: 3rem;
}

.rtx-img {
    width: 100%;
    max-width: 900px; 
    margin-top: -4rem;
}


.carousel-section {
    padding: 3rem 0;

    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}


.arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    background-color: #76b900;
    border: none;
    color: black;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.arrow-btn:hover { background-color: #8ce100; }


#btn-left { left: 10px; }
#btn-right { right: 10px; }

.carousel-wrapper {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
}

.carousel-container {
    width: 100%;
    max-width: 1000px;
    padding: 0 1rem; 
}


.card { animation: fadeIn 0.5s ease; color: white; width: 100%; }
.card h2 { text-align: center; margin-bottom: 2rem; font-size: 2rem; }
.card h3 { text-align: center; margin: 1rem 0; color: white; }
.card h5 { text-align: center; color: #999; font-size: 0.85rem; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }


.architectuur_container {
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 2rem;
}

.arch-img-box img { max-width: 80%; margin: 0 auto; }
.architectuur_tekst { text-align: left; width: 100%; }

.spec-item { margin-bottom: 1.5rem; }
.spec-item strong { color: white; font-size: 1.3rem; display: block; margin-bottom: 0.3rem; }
.spec-item p { color: #ccc; font-size: 0.95rem; }


.table-scroll-container {
    width: 100%;
    overflow-x: auto; 
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch; 
}

.specs-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    width: 100%;
    min-width: 600px; 
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

.grid-label, .grid-data, .grid-head {
    padding: 1rem 0.5rem;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
}

.grid-head { font-family: 'NVIDIA Bold'; font-size: 1.1rem; vertical-align: bottom; }
.grid-head.compare { flex-direction: column; align-items: flex-start; justify-content: center; }
.grid-head.compare span { font-size: 0.75rem; color: #ccc; }
.grid-label { font-weight: bold; color: white; }
.grid-data { font-weight: normal; }
.grid-data.dim { color: #999; }
.green-underline { position: relative; padding-bottom: 2px; border-bottom: 2px solid #76b900; }


footer {background-color: #ffffff;text-align: center;}
footer img {width: 100px;margin: 0 auto .5rem auto;}
footer p { color: #666; font-size: 0.8rem; }


@media (min-width: 768px) {

    .ankers { flex-direction: row; justify-content: space-between; padding: 1rem 3%; }


    header { margin-top: 0; }
    .info { left: 80%; bottom: 15%; width: auto; text-align: right; }
    .info a { font-size: 1.5rem; padding: 15px 40px; }


    .intro-container::before {
        background: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0) 100%);
    }
    .intro-container { background-position: center right; } 


    .carousel-section { padding: 4rem 0; }
    #btn-left { left: 30px; }
    #btn-right { right: 30px; }


    .architectuur_container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 3rem;
    }
    .arch-img-box img { max-width: 100%; margin: 0; }
    .architectuur_tekst { padding-left: 2rem; }


    .grid-label, .grid-data, .grid-head { padding: 1.5rem 1rem; }
}
