#tsparticles {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
}

/* General Body Styles */
body {
    font-family: 'Share Tech', sans-serif;
    background-color: #000000;
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Container for centered content */
.container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(30, 30, 30, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(102, 255, 102, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(102, 255, 102, 0.3);
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1e1e1e;
    color: #e0e0e0;
    padding: 10px 20px;
    border-bottom: 1px solid #333;
    position: relative;
    z-index: 10;
    transition: background-color 0.3s ease;
}

header img {
    max-width: 100px;
    transition: transform 0.3s ease-in-out;
}

/* Navigation Bar Styles */
nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 15px;
}

nav a {
    font-size: 1.1em;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #555;
}

.hamburger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Video Container for responsive embeds */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin-bottom: 20px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Main Content Styles */
main {
    padding: 0; /* Padding is handled by .container */
    flex: 1;
}

/* Contact Form Styles */
#contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#contact-form input,
#contact-form textarea {
    padding: 10px;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #2c2c2c;
    color: #e0e0e0;
    font-size: 1em;
}

#contact-form button {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    background-color: #66ff66;
    color: #1e1e1e;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

#contact-form button:hover {
    background-color: #99ff99;
}

#form-status {
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

#form-status.success {
    background-color: #33cc33;
    color: #1e1e1e;
    display: block;
}

#form-status.error {
    background-color: #cc3333;
    color: #e0e0e0;
    display: block;
}

/* Social Links Styles */
.social-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border: 1px solid #66ff66;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: #66ff66;
}

.social-link img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

section {
    margin-bottom: 30px;
}

/* Product Grid Styles */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.product-card {
    background: #2c2c2c;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card a {
    text-decoration: none;
    color: #e0e0e0;
}

.product-card img {
    width: 100%;
    height: auto;
}

.product-card h3 {
    font-size: 1.1em;
    padding: 10px;
    margin: 0;
}

.product-card .price {
    font-size: 1.2em;
    color: #66ff66;
    padding-bottom: 10px;
}

/* Affiliate Grid Styles */
.affiliate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    justify-items: center;
}

.affiliate-grid a {
    text-decoration: none;
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.affiliate-grid img {
    max-width: 100%;
    height: 100px;
    object-fit: contain;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}

h2 {
    color: #ffffff;
    font-size: 1.8em;
    border-bottom: 2px solid #66ff66;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Link Styles */
a {
    color: #66ff66; /* Lighter green */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:visited {
    color: #33cc33; /* Darker green */
}

a:hover, a:focus {
    color: #99ff99; /* Even lighter green for hover */
    text-decoration: underline;
}

/* Footer Styles */
footer {
    background: #1e1e1e;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin-top: 30px;
    position: relative;
    z-index: 10;
    transition: background-color 0.3s ease;
}

/* Page Content Styles */
.page-content {
    display: none;
}

.page-content.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 90%;
        margin: 10px auto;
    }

    nav {
        justify-content: flex-end;
    }

    .nav-links {
        display: none; /* Hide links by default on mobile */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #333;
        z-index: 1;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 15px;
        text-align: center;
        border-top: 1px solid #444;
    }

    .hamburger {
        display: block;
    }

    header h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.5em;
    }
}

/* Logo Animation */
.logo-animated {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
