*{
    border: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #00FF41;   /* Neon Green (Matrix Glow) */
    --secondary-color: #0D0D0D; /* Cyber Black (Dark Background) */
    --accent-color: #00FFFF;    /* Electric Cyan (Cyberpunk Touch) */
    --highlight-color: #8A2BE2; /* Deep Purple (Futuristic Edge) */
    --text-color: #C0C0C0;      /* Soft Gray (Readable Text) */
}

/* 🔥 Applying the Colors */
body {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

button {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

button:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    box-shadow: 0 0 10px var(--accent-color);
}

.glow-text {
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-color), 0 0 10px var(--primary-color);
}

.link {
    color: var(--highlight-color);
    text-decoration: none;
}

.link:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-color);
}


/* HomePage */
/* Main Container */
/* 🎨 Matrix Color Theme */

/* 🔥 Apply Matrix Theme */
body {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

/* Video Background */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Keep it behind all content */
}

/* Ensure Content Stays Visible */
.body-container {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
    padding: 20px;
    border-radius: 10px;
}


/* Container */
.body-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.body-heading{
    font-size: 50px;
    margin: 18px 0;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #fff;
}

/* Column Layout */
.body-column {
    text-align: center;
    width: 100%;
    max-width: 800px;
}

/* Row 1: Search Bar */
.body-row-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

/* Search Bar */
.search-bar {
    padding: 15px;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    border-radius: 30px;
    width: 700px;
    max-width: 600px;
    height: 50px;
    outline: none;
    color: var(--primary-color);
    transition: border 0.3s ease-in-out;
}

.search-bar:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
}

/* Search Button */
.search-button {
    padding: 12px;
    width: 200px;
    font-size: 16px;
    text-transform: capitalize;
    cursor: pointer;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transition: background 0.3s ease-in-out, transform 0.2s;
}

.search-button:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    box-shadow: 0 0 15px var(--accent-color);
    transform: scale(1.05);
}

/* Row 2: Customer Support Link */
.body-row-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    margin-top: 20px;
    font-size: 18px;
}

/* Support Links */
.body-row-2 a {
    color: var(--highlight-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease-in-out;
}

.body-row-2 a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-color);
}

/* Tablet View */
@media (max-width: 768px) {
    .search-bar {
        max-width: 400px;
        height: 45px;
        font-size: 14px;
    }
    
    .search-button {
        width: 150px;
        font-size: 14px;
    }

    .body-row-2 {
        font-size: 16px;
    }
}

/* Mobile View */
@media (max-width: 480px) {
    .search-bar {
        max-width: 280px;
        height: 40px;
        font-size: 14px;
    }
    
    .search-button {
        width: 130px;
        font-size: 14px;
    }

    .body-row-2 {
        font-size: 14px;
    }
    .body-heading{
    font-size: 20px;
}



/* tools-detailsPage */
/* General Container Styles */
.tools-body-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: var(--secondary-color);
}

/* Tool Details Container */
.tools-details-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin: 10px;
    max-width: 1200px;
    width: 100%;
    background: rgba(13, 13, 13, 0.9); /* Slight Transparency for Depth */
    border-radius: 10px;
    border: 1px solid var(--highlight-color);
    box-shadow: 0 0 15px var(--accent-color); /* Cyber Glow Effect */
}

/* Tool Details Row */
.tools-details-row-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

/* Image Container */
.tools-details-image {
    flex: 1;
    max-width: 350px;
    display: flex;
    justify-content: center;
}

.tools-details-image .tool-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 0 10px var(--accent-color);
}

/* Description Container */
.tools-details-desc {
    flex: 2;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 20px;
    padding: 10px;
    color: var(--text-color);
}

.tools-details-desc h1 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 34px;
    color: var(--primary-color);
    margin: 20px 0;
    text-shadow: 0 0 10px var(--primary-color); /* Matrix Glow Effect */
}

.tools-details-desc > p {
    margin-bottom: 16px;
}

/* Price Styling */
.tools-details-price {
    font-size: 40px;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 16px;
}

/* Call-to-Action Button */
.tools-details-cta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-decoration: none;
    text-align: center;
}

.tools-details-cta a {
    text-decoration: none;
    padding: 12px 20px;
    font-size: 16px;
    text-transform: capitalize;
    cursor: pointer;
    font-weight: 600;
    border: none;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 5px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px var(--primary-color);
}

.tools-details-cta a:hover {
    background: var(--highlight-color);
    box-shadow: 0 0 15px var(--highlight-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tools-details-row-container {
        flex-direction: column;
        align-items: center;
    }
    
    .tools-details-desc {
        max-width: 90%;
        text-align: center;
    }
    
    .tools-details-price {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .tools-details-image {
        max-width: 250px;
    }

    .tools-details-desc {
        font-size: 18px;
    }

    .tools-details-price {
        font-size: 32px;
    }

    .tools-details-cta-btn {
        font-size: 14px;
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .tools-body-container {
        padding: 10px;
    }

    .tools-details-container {
        padding: 10px;
    }

    .tools-details-image {
        max-width: 175px;
    }

    .tools-details-desc {
        font-size: 16px;
        text-align: center;
    }

    .tools-details-price {
        font-size: 28px;
    }

    .tools-details-cta-btn {
        font-size: 14px;
        padding: 8px 12px;
    }
}


/* checkoutPage */
/* General Container */
.checkout-body-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: var(--secondary-color);
}

/* Column Container */
.checkout-column-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 20px;
    padding: 10px;
    background: rgba(13, 13, 13, 0.9);
    border-radius: 10px;
    border: 1px solid var(--highlight-color);
    box-shadow: 0 0 15px var(--accent-color);
}

/* Heading */
.checkout-heading-container p {
    font-size: 24px;
    text-transform: capitalize;
    color: var(--primary-color);
    text-align: center;
    margin: 20px auto;
    text-shadow: 0 0 10px var(--primary-color);
}

/* Grid Layout */
.checkout-payment-option-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* Payment Option Cards */
.checkout-payment-option-1,
.checkout-payment-option-2 {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 255, 65, 0.1);
    border-radius: 10px;
    box-shadow: 0 0 10px var(--accent-color);
    text-align: center;
    border: 1px solid var(--highlight-color);
}

/* Image */
.checkout-image .checkout-img {
    width: 100px;
    max-width: 100%;
    margin: 10px 0;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 0 10px var(--accent-color);
}

/* Text Styling */
.checkout-amount p, 
.checkout-with-usdt p,
.checkout-usdt-addr p,
.checkout-dets p {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
}
.checkout-dets p,
.checkout-with-usdt p{
    text-transform: uppercase;
    font-size: 14px;
}

.checkout-addr{
    font-size: 24px;
    margin-top: 14px;
    cursor: pointer;
}


/* Address */
.checkout-usdt-addr p {
    font-size: 14px;
    font-weight: 600;
    word-break: break-word;
}

/* Form Inputs */
.checkout-form {
    width: 100%;
    margin-top: 16px;
}

.checkout-email-bar, .checkout-file-upload {
    width: 100%;
    max-width: 350px;
    height: 45px;
    border: 1px solid var(--highlight-color);
    border-radius: 5px;
    padding: 10px;
    outline: none;
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.checkout-email-bar:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

/* Button */
.checkout-button input {
    cursor: pointer;
    width: 100%;
    max-width: 350px;
    padding: 14px;
    margin: 14px 0;
    color: var(--secondary-color);
    background-color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 0 10px var(--primary-color);
}

.checkout-button input:hover {
    background-color: var(--highlight-color);
    box-shadow: 0 0 15px var(--highlight-color);
}

/* Back Button */
.checkout-back-btn {
    width: 100%;
    max-width: 300px;
    margin: 20px 0;
    padding: 14px;
    border-radius: 5px;
    background-color: var(--primary-color);
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 0 10px var(--primary-color);
}

.checkout-back-btn:hover {
    background-color: var(--highlight-color);
    box-shadow: 0 0 15px var(--highlight-color);
}

.checkout-back-btn a {
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--secondary-color);
}

/* RESPONSIVE DESIGN */

/* Tablets and Smaller Screens */
@media (max-width: 768px) {
    .checkout-payment-option-container {
        grid-template-columns: 1fr; /* Single column layout */
    }
    
    .checkout-email-bar, .checkout-file-upload, .checkout-button input {
        max-width: 100%;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .checkout-heading-container p {
        font-size: 20px;
    }

    .checkout-usdt-addr p {
        font-size: 12px;
    }

    .checkout-email-bar, .checkout-file-upload {
        font-size: 14px;
    }

    .checkout-button input {
        font-size: 14px;
        padding: 10px;
    }
}
