body {
    color: #ccc;
    background: #111;
    font-family: "Courier New", monospace;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1,
h2 {
    margin: 0;
    text-transform: uppercase;
}

a {
    color: #1bc7fb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #e0287d;
}

section {
    padding: 40px;
    border-bottom: 1px solid #333;
}

.hero {
    font-size: clamp(40px, 10vw, 100px);
    line-height: 1;
    display: inline-block;
    color: #fff;
    z-index: 2;
    letter-spacing: 10px;
    filter: drop-shadow(0 1px 3px);
}

.layers {
    position: relative;
}

.layers::before,
.layers::after {
    content: attr(data-text);
    position: absolute;
    width: 110%;
    z-index: -1;
}

.layers::before {
    top: 10px;
    left: 15px;
    color: #e0287d;
}

.layers::after {
    top: 5px;
    left: -10px;
    color: #1bc7fb;
}

.paths {
    animation: paths 5s step-end infinite;
}

@keyframes paths {
    0% {
        clip-path: polygon(
            0% 43%,
            83% 43%,
            83% 22%,
            23% 22%,
            23% 24%,
            91% 24%,
            91% 26%,
            18% 26%,
            18% 83%,
            29% 83%,
            29% 17%,
            41% 17%,
            41% 39%,
            18% 39%,
            18% 82%,
            54% 82%,
            54% 88%,
            19% 88%,
            19% 4%,
            39% 4%,
            39% 14%,
            76% 14%,
            76% 52%,
            23% 52%,
            23% 35%,
            19% 35%,
            19% 8%,
            36% 8%,
            36% 31%,
            73% 31%,
            73% 16%,
            1% 16%,
            1% 56%,
            50% 56%,
            50% 8%
        );
    }

    5% {
        clip-path: polygon(
            0% 29%,
            44% 29%,
            44% 83%,
            94% 83%,
            94% 56%,
            11% 56%,
            11% 64%,
            94% 64%,
            94% 70%,
            88% 70%,
            88% 32%,
            18% 32%,
            18% 96%,
            10% 96%,
            10% 62%,
            9% 62%,
            9% 84%,
            68% 84%,
            68% 50%,
            52% 50%,
            52% 55%,
            35% 55%,
            35% 87%,
            25% 87%,
            25% 39%,
            15% 39%,
            15% 88%,
            52% 88%
        );
    }

    30%,
    45%,
    76%,
    90% {
        clip-path: none;
    }
}

.movement {
    position: relative;
    animation: movement 8s step-end infinite;
}

@keyframes movement {
    0% {
        top: 0px;
        left: -20px;
    }
    15% {
        top: 10px;
        left: 10px;
    }
    60% {
        top: 5px;
        left: -10px;
    }
    75% {
        top: -5px;
        left: 20px;
    }
    100% {
        top: 10px;
        left: 5px;
    }
}

.opacity {
    animation: opacity 5s step-end infinite;
}

@keyframes opacity {
    0% {
        opacity: 0.1;
    }
    5% {
        opacity: 0.7;
    }
    30% {
        opacity: 0.4;
    }
    45% {
        opacity: 0.6;
    }
    76% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.8;
    }
    1%,
    7%,
    33%,
    47%,
    78%,
    93% {
        opacity: 0;
    }
}

.font {
    animation: font 7s step-end infinite;
}

@keyframes font {
    0% {
        font-weight: 100;
        color: #e0287d;
        filter: blur(3px);
    }
    20% {
        font-weight: 500;
        color: #fff;
        filter: blur(0);
    }
    50% {
        font-weight: 300;
        color: #1bc7fb;
        filter: blur(2px);
    }
    60% {
        font-weight: 700;
        color: #fff;
        filter: blur(0);
    }
    90% {
        font-weight: 500;
        color: #e0287d;
        filter: blur(6px);
    }
}

.glitch span {
    animation: paths 5s step-end infinite;
}

.glitch::before {
    animation: paths 5s step-end infinite, opacity 5s step-end infinite,
        font 8s step-end infinite, movement 10s step-end infinite;
}

.glitch::after {
    animation: paths 5s step-end infinite, opacity 5s step-end infinite,
        font 7s step-end infinite, movement 8s step-end infinite;
}

.hero-container {
    position: relative;
    padding: 100px 0;
    text-align: center;
}

.environment {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
    filter: blur(5px);
    background: url(https://images.unsplash.com/photo-1602136773736-34d445b989cb?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1200&q=80)
        center no-repeat;
    background-size: cover;
}

.neon-text {
    text-shadow: 0 0 5px #1bc7fb, 0 0 10px #1bc7fb, 0 0 20px #1bc7fb,
        0 0 40px #1bc7fb;
}

.cyber-button {
    background-color: transparent;
    border: 2px solid #e0287d;
    color: #e0287d;
    padding: 10px 20px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px;
}

.cyber-button:hover {
    background-color: #e0287d;
    color: #111;
    box-shadow: 0 0 10px #e0287d;
}

.logo {
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.product-item {
    background-color: #1c1c1c;
    border: 1px solid #e0287d;
    padding: 20px;
    text-align: center;
}

.product-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.dropdown {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.login-btn-container {
    position: absolute;
    top: 20px;
    right: 125px;
    z-index: 10;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1c1c1c;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    right: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #ccc;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #111;
    color: #e0287d;
}

.cart-summary {
    background-color: #1c1c1c;
    border: 1px solid #e0287d;
    padding: 20px;
    margin-top: 20px;
}

.filter-section {
    margin-bottom: 20px;
}

.filter-section select {
    background-color: #1c1c1c;
    color: #ccc;
    border: 1px solid #e0287d;
    padding: 5px 10px;
}

.blurred {
    filter: blur(3px);
    opacity: 0.5;
    pointer-events: none; /* Disable any interaction while blurred */
    transition: all 0.3s ease;
    position: relative;
}

.cart-header {
    position: absolute;
    top: 40px;
    left: 30px;
    z-index: 10;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 24px;
    color: #343a40;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.cart-icon:hover {
    color: #007bff; /* Add a hover color for better UX */
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -13px;
    background: #e0287d;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 10px;
}

.cart-dropdown {
    display: none;
    position: absolute;
    top: 40px;
    background: #1c1c1c;
    border: 1px solid #ddd;
    border-radius: 8px;
    z-index: 1000;
    width: 450px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    padding: 15px;
    transition: all 0.3s ease;
}

.cart-items-list {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 10px;
    padding-right: 10px;
    color: #cccccc !important;
}

.cart-total {
    font-weight: bold;
    margin: 15px 0 10px;
    text-align: right;
    color: #cccccc;
}

.cart-dropdown.show {
    display: block;
}

.cart-items-list .cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
}

.cart-items-list .cart-item:last-child {
    border-bottom: none;
}

.cart-items-list .item-info {
    font-weight: bold;
    color: #cccccc;
    margin-right: 15px;
}

.empty-cart-message {
    font-weight: bold;
    color: #cccccc;
}

.cart-items-list .quantity-controls {
    display: flex;
    gap: 5px;
}

.cart-items-list .quantity-controls button {
    background-color: #1c1c1c;
    border: 1px solid #e0287d;
    color: #cccccc;
    cursor: pointer;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    transition: background-color 0.2s ease;
}

.cart-items-list .quantity-controls button:hover {
    background-color: #e0287d;
    color: #111;
    box-shadow: 0 0 10px #e0287d;
}

.cart-items-list .remove-item {
    background: none;
    border: none;
    color: #888;
    font-size: 16px;
    cursor: pointer;
    margin-left: 10px;
    transition: color 0.3s ease;
}

.cart-items-list .remove-item:hover {
    color: #d9534f;
}

.cart-item-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
}

.cart-table td {
    vertical-align: middle;
}

.profile-card {
    background-color: #1c1c1c;
    border: 1px solid #e0287d;
    padding: 20px;
    margin-top: 20px;
}

.custom-input {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #cccccc;
    background-color: #1c1c1c;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.custom-input::placeholder {
    color: #cccccc;
}

.blog-grid {
    /* display: grid; */
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
    /* gap: 20px; */
    margin-top: 20px;
}

.blog-post {
    background-color: rgba(28, 28, 28, 0.8);
    border: 1px solid #e0287d;
    padding: 20px;
    transition: all 0.3s ease;
}

.blog-post img,
.blog-post video {
    display: block;
    margin: 0 auto; /* Centers the element within its container */
    max-width: 100%; /* Ensures image doesn't overflow */
}

.blog-post:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(224, 40, 125, 0.5);
}

.blog-post h3 {
    font-family: "Courier New", Courier, monospace;
    font-weight: bold;
}

.blog-detail {
    padding: 20px;
}

.blog-media img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.publishing-date {
    font-style: italic;
    color: #555;
}

.blog-content {
    margin-top: 15px;
}

.input-group > .custom-input,
.input-group > .form-select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

.content-container {
    transition: max-height 0.5s ease;
}

.welcome-message {
    font-size: 1.1em;
    color: #2cff05;
    padding: 10px;
    text-align: center;
    margin: 0;
    margin-top: 10px;
    margin-right: 10px;
    background-color: transparent;
    border: 2px solid #2cff05;
}

.variant-box-item.selected {
    border: 2px solid #e0287d;
    background-color: transparent;
}

.variant-box-item:hover {
    opacity: 0.7;
}

@media only screen and (max-width: 520px) {
    .logo {
        font-size: 30px !important;
    }
    .layers::before,
    .layers::after {
        width: 92% !important;
    }
    .welcome-message {
        font-size: 13px !important;
    }
    .cyber-button {
        font-size: 13px !important;
    }
    .cart-header {
        left: 8px !important;
    }
    .cart-dropdown {
        width: 288px !important;
    }
    .cta-button {
        font-size: 18px !important;
    }
    .pagination a,
    .pagination span {
        padding: 10px !important;
    }

    .profile-card.border-light.shadow-sm .card-body {
        padding: 0 !important;
    }
    .set-custom-cat-padd {
        padding: 14px !important;
    }
    .set-custom-cat-padd .product-item {
        padding: 5px;
    }
    .set-custom-cat-padd .product-item img {
        height: 148px !important;
    }
    .set-custom-cat-padd .product-item h3 {
        font-size: 15px;
    }
    .set-custom-cat-padd .product-item p {
        margin-bottom: 8px;
    }
    .set-custom-cat-padd .cyber-button {
        padding: 9px 10px;
        font-size: 12px;
    }
    .set-custom-cat-padd #main-products .row .col-6 {
        padding: 6px;
    }
    .text-digital {
        font-size: 20px !important;
    }
    .btn-shine {
        padding: 12px 12px !important;
        font-size: 16px !important;
    }
}

.btn-shine {
    padding: 12px 48px;
    color: #fff;
    background: linear-gradient(to right, #ffffff 0%, #cfcfcf 10%, #c33f7c 20%);
    background-position: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s infinite linear;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    white-space: nowrap;
    font-family: "Poppins", sans-serif;
}
@-moz-keyframes shine {
    0% {
        background-position: 0;
    }
    60% {
        background-position: 180px;
    }
    100% {
        background-position: 180px;
    }
}
@-webkit-keyframes shine {
    0% {
        background-position: 0;
    }
    60% {
        background-position: 180px;
    }
    100% {
        background-position: 180px;
    }
}
@-o-keyframes shine {
    0% {
        background-position: 0;
    }
    60% {
        background-position: 180px;
    }
    100% {
        background-position: 180px;
    }
}
@keyframes shine {
    0% {
        background-position: 0;
    }
    60% {
        background-position: 180px;
    }
    100% {
        background-position: 180px;
    }
}

.social-icons a {
    color: #ffffff;
    transition: color 0.3s ease;
}
.social-icons a:hover {
    color: #e0287d;
}
.modal-content {
    border: 1px solid #e0287d;
}
.modal-header {
    background-color: #111111;
    border-bottom: none;
}
.modal-body, .modal-footer {
    border-top: 0px;
    background-color: #111111;
    padding: 0px;
}