nav ul li a.logo {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 200;
    font-size: 24px;
    font-family: 'Russo One', sans-serif;
}


nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(51, 51, 51, 0.8);
    padding: 10px 0;
    z-index: 1000;
}


nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
    position: relative;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-family: 'San Francisco', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

nav ul li a:hover {
    color: #ddd;
}


body {
    font-family: 'Arial', sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


.video-background {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100vw;
    min-height: 100vh;
    z-index: -1;
}

.video-background video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    opacity: 0.8;
}



.hero {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 50px 20px;
    border-radius: 8px;
    max-width: 800px;
    width: 800px;
    text-align: center;
    margin: 0 auto;
    z-index: 1;
}


.machealthcheck-hero {
    background-color: rgba(0, 0, 0, 0.5);
    color: #f0f0f0;
    padding: 400px 100px;
    border-radius: 10px;
    max-width: 1400px;
    width: 100%;
    position: relative;
    text-align: center;
    margin: 50px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}


.text-container {
    width: 100%;
    max-width: 1400px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 0px 100px;
    align-items: center;
}


.machealthcheck-hero h1 {
    font-family: 'Russo One', sans-serif;
    font-size: 48px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.machealthcheck-hero h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #ff4c4c;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.machealthcheck-hero p {
    font-family: 'Russo One', sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #ff4c4c;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    padding-top: 50px;
}


.machealthcheck-description {
    width: 1400px;
    margin-top: -100px;
    text-align: center;
}

.machealthcheck-description p {
    font-family: 'Russo One', sans-serif;
    font-size: 24px;
    color: white;
    margin: 10px 0;
    line-height: 1.5;
    max-width: 1400px;
}


.machealthcheck-solution {
    font-size: 28px !important;
    font-weight: 600 !important;
    color: #00bfff !important;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5) !important;
    margin-bottom: 20px !important;
}


.machealthcheck-hero,
.machealthcheck-description {
    border: none;
    box-shadow: none;
}


.container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    text-align: center;
    margin-top: 210px;
    margin-bottom: 1000px;
    line-height: 1.4;
}


.product-waitlist {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 600px;
    border: 1px solid rgba(0, 191, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.2);
    backdrop-filter: blur(5px);
}

.product-waitlist h2 {
    font-family: 'Russo One', sans-serif;
    color: #00bfff;
    font-size: 28px;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

.product-waitlist p {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    margin-bottom: 25px;
}

.product-waitlist .form-group {
    margin-bottom: 20px;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

.product-waitlist input[type="text"],
.product-waitlist input[type="email"] {
    width: 100%;
    padding: 14px 20px;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 191, 255, 0.4);
    border-radius: 6px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
    margin: 0;
}

.product-waitlist input[type="text"]:focus,
.product-waitlist input[type="email"]:focus {
    border-color: #00bfff;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
    background-color: rgba(0, 0, 0, 0.8);
}

.product-waitlist input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Montserrat', sans-serif;
}

.product-waitlist .cta-button {
    background: linear-gradient(135deg, #007bff 0%, #00bfff 100%);
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 18px;
    font-family: 'Russo One', sans-serif;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.product-waitlist .cta-button:hover {
    background: linear-gradient(135deg, #0069d9 0%, #00a8e8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
}

.product-waitlist .cta-button:active {
    transform: translateY(0);
}

.product-waitlist .disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
}


@media (max-width: 768px) {
    .product-waitlist {
        padding: 20px;
        margin: 30px auto;
    }
    
    .product-waitlist h2 {
        font-size: 24px;
    }
    
    .product-waitlist input[type="text"],
    .product-waitlist input[type="email"] {
        padding: 12px 15px;
    }
}



.hidden-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    min-height: 100vh;
    position: relative;
    margin: 0;
}

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


.hero h1 {
    font-size: 50px;
    font-weight: bold;
}

.hero button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 8px;
}

.hero button:hover {
    background-color: #0056b3;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}


.products-page {
    background-color: #1C1C1C;
    color: #FFFFFF;
    font-family: 'Arial', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


.product-listing {
    min-height: 100vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
}


.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
}


.products-title {
    font-family: 'Russo One', sans-serif;
    font-size: 36px;
    color: #00E6FF;
    text-shadow: 2px 2px 10px rgba(138, 43, 226, 0.9);
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}


.products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 0 50px;
}

.product {
    text-align: center;
    width: 300px;
    border: 1px solid #333;
    padding: 20px;
    color: white;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 230, 255, 0.2);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.slideshow-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.slideshow-modal.show {
    opacity: 1;
}

.slideshow-container {
    position: relative;
    width: 80%;
    max-width: 700px;
    margin: 0 auto;
}

.slideshow-container img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    animation: fadeIn 0.5s ease-in-out;
}

.slideshow-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    width: 100%;
    padding: 0 20px;
}

.slideshow-controls button {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
}

.slideshow-controls button:hover {
    background-color: rgba(255, 255, 255, 1);
}

#close-slideshow {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slideshow-container img {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slideshow-container img.show {
    opacity: 1;
}


.product-price {
    font-size: 50px;
    font-weight: bold;
    color: #FF0000;
    /* Bold red for the price itself */
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
    margin: 10px 0;
    text-align: center;
    font-family: 'Russo One', sans-serif;
}

.product-price small {
    font-size: 18px;
    color: #00FF00;
    font-weight: normal;
}


.product-price:hover {
    color: #FF4500;
    text-shadow: 0 0 20px rgba(255, 69, 0, 1);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}


.product-condition {
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    color: #00BFFF;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.8);
    margin-bottom: 5px;
}


.hoverable-condition:hover {
    color: #00E6FF;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(0, 230, 255, 0.7);
}


.condition-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #1C1C1C;
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    width: 400px;
    max-height: 80vh;
    overflow-y: auto;
}


#close-modal {
    background-color: #FF4C00;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

#close-modal:hover {
    background-color: #FF8000;
}


.product-specs {
    font-size: 10px;
    color: #E0E0E0;
    margin: 10px 0;
    text-align: left;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.product-specs li:hover {
    color: #00E6FF;
    transition: color 0.3s ease;
}


.product-quantity {
    font-size: 18px;
    color: #FF0000;
    font-weight: bold;
    animation: blink 1s linear infinite;
    /* Blinking effect */
    margin-top: 10px;
}


@keyframes blink {
    50% {
        opacity: 0;
    }
}


.product-specs li {
    margin-bottom: 5px;
    list-style-type: none;
    color: #FFFFFF;
}


.product-specs li:hover {
    color: #00E6FF;
}


.product:hover {
    box-shadow: 0 8px 16px rgba(255, 76, 0, 0.8);
    transform: scale(1.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    transition: filter 0.3s ease;
}


.product img:hover {
    filter: brightness(1.3);
    transform: rotate(3deg);
}


.product h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 42px;
    margin-bottom: 10px;
}



.add-to-cart {
    background-color: #FF4C00;
    color: white;
    border: 2px solid #707070;
    padding: 15px 30px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}


.add-to-cart:hover {
    background-color: #FF8000;
    box-shadow: 0 0 10px #FF8000;
}


h1,
h2 {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
}

p,
ul {
    font-size: 16px;
}

.product h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product p {
    font-size: 14px;
}


footer {
    background-color: #1c1c1c;
    padding: 30px;
    text-align: center;
    color: #ffffff;
    margin: 0;
}


.summary-container {
    background-color: #ffffff;
    padding: 30px 15px;
    width: 100vw;
    margin-top: 40px;
    margin-bottom: 0;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    font-family: 'Montserrat', sans-serif;
}


.summary-container h2,
.summary-container p,
.summary-container ul,
.summary-container li {
    color: #000000;
    text-align: center;
    padding: 20px;
    margin: 10px auto;
    max-width: 900px;
    font-family: 'Montserrat', sans-serif;
}

.machealthcheck-summary {
    color: #333333;
    padding: 30px 20px;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}


.secondVideo {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    width: 100vw;
    height: auto;
    opacity: 0.95;
    overflow: hidden;
}


.secondVideo video {
    width: 100vw;
    height: auto;
    display: block;
    margin: 0;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
    mix-blend-mode: soft-light;
}


.secondVideo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.cart-title {
    font-family: 'Russo One', sans-serif;
    font-size: 36px;
    color: #007bff;
    text-align: center;
    margin-bottom: 20px;
}

.cart-container {
    max-width: 800px;
    margin: 50px auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.cart-items {
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-betweeon;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.cart-summary {
    display: flex;
    align-items: center;
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
}

.cart-summary p {
    margin-right: auto;
}


.button-container {
    display: flex;
    /* justify-content: flex-end; */
    /* This will push the buttons to the right */
    /* align-items: center;
    margin-top: 20px; */
    gap: 20px;
    margin-left: auto;
    /* Adds spacing between buttons */
}


#checkout-button {
    padding: 12px 30px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Russo One', sans-serif;
    font-size: 18px;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.7);
}

#checkout-button:hover {
    background-color: #0056b3
}


.clear-cart {
    padding: 12px 30px;
    background-color: #6c757d;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Russo One', sans-serif;
    font-size: 16px;

}

.clear-cart:hover {
    background-color: #5a6268;
}

.button-container.vertical #checkout-button {
    margin-bottom: 10px;
}


.checkout-section {
    padding: 20px;
    margin-bottom: 40px;
}

.checkout-container {
    max-width: 800px;
    margin: 50px auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #333333;
    text-align: center;
}


h2,
h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 36px;
    color: #007bff;
}

h4 {
    font-family: 'Russo One', sans-serif;
    font-size: 24px;
    color: #333333;
    margin-bottom: 20px;
}


.checkout-container form input {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-family: 'Arial', sans-serif;
}


button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Russo One', sans-serif;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
    background-color: #0056b3;
    box-shadow: 0 0 10px #0056b3;
}

.payment-methods {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.visa-payment,
.bitcoin-payment {
    width: 45%;
}

.visa-logos {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.visa-logos img {
    max-width: 80px;
    margin: 0 10px;
    animation: logo-spin 5s linear infinite;
}

/* @keyframes logo-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
} */

.bitcoin-logo {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.bitcoin-logo img {
    max-width: 50px;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.visa-payment,
.bitcoin-payment {
    margin-top: 20px;
}

.visa-logos,
.bitcoin-logo {
    margin-top: 10px;
}


footer {
    background-color: #1c1c1c;
    padding: 30px;
    text-align: center;
    color: #ffffff;
    margin: 0;
}


.cart-section,
.cart-items,
.checkout-section {
    color: #333333;
}

.cart-items span {
    color: #333333;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
}

.cart-total {
    color: #333333;
}


strong {
    letter-spacing: 0.5px;
    /* Slight letter spacing */
}


.machealthcheck-hero h1 {
    color: #00E6FF;
}


.hero button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.hero button:hover {
    background-color: #00E6FF;
    color: black;
}


.icon {
    color: #00FF6C;
    margin-right: 5px;
}


.stay-in-touch {
    text-align: center;
    margin-top: 100px;
}

.stay-in-touch h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.stay-in-touch form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.stay-in-touch input[type="email"] {
    padding: 10px;
    margin-bottom: 15px;
    width: 300px;
    border: 2px solid #007bff;
    border-radius: 5px;
    font-size: 16px;
}

.stay-in-touch button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 12px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.stay-in-touch button:hover {
    background-color: #0056b3;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 230, 255, 0.7), 0 0 20px rgba(0, 230, 255, 0.5);
    transform: scale(1.05);
}

.stay-in-touch button:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(0, 230, 255, 0.15), transparent);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease-out;
}

.stay-in-touch button:hover:before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.stay-in-touch button:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.15), transparent);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease-out;
}

.stay-in-touch button:hover:after {
    transform: translate(-50%, -50%) scale(1.2);
}

.stay-in-touch input[type="text"],
.stay-in-touch input[type="email"] {
    padding: 10px;
    margin-top: 30px;
    margin-bottom: 15px;
    width: 300px;
    border: 2px solid #007bff;
    border-radius: 5px;
    font-size: 16px;
}

.stay-in-touch button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.7);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 123, 255, 0.7);
    }

    100% {
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.7);
    }
}


.about-page {
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Arial', sans-serif;
    padding: 20px;
    text-align: center;
}


.about-section {
    background-color: #1c1c1c;
    color: #FFFFFF;
    padding: 40px 20px;
    border-radius: 10px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.about-title {
    font-family: 'Russo One', sans-serif;
    font-size: 42px;
    color: #007bff;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.about-content p strong {
    color: #00E6FF;
}


footer {
    background-color: #1c1c1c;
    padding: 30px;
    text-align: center;
    color: #ffffff;
    margin: 0;
}


.logo {
    font-family: 'Russo One', sans-serif;
    font-size: 24px;
    color: #fff;
}
