body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
}
strong {
    color: #877979;
}
/* Global Styles */
.container {
    max-width: 1200px;
}

.section {
    padding: 3rem 1.5rem;
}

.button {
    border-radius: 8px;
    text-decoration: none !important;
}

.button.is-primary {
    background-color: #e6007e;
    border-color: #e6007e;
    color: #ffffff;
    transition: all 0.3s ease;
}

.button.is-primary:hover {
    background-color: #ff33a1;
    border-color: #ff33a1;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(230, 0, 126, 0.4);
}

.button.is-dark {
    background-color: #333;
    border-color: #333;
    color: #e0e0e0;
}

.button.is-dark:hover {
    background-color: #555;
    border-color: #555;
}

.title, .subtitle {
    color: #ffffff;
}

.title.is-1 {
    font-size: 2.5rem;
}

.subtitle.is-3 {
    font-size: 1.8rem;
}

.has-text-primary {
    color: #e6007e !important;
}

.has-text-white-ter {
    color: #cccccc !important;
}

.has-text-grey-light {
    color: #aaaaaa !important;
}

.has-background-dark {
    background-color: #2a2a2a !important;
}

.has-background-black-ter {
    background-color: #1f1f1f !important;
}

.has-background-black-bis {
    background-color: #121212 !important;
}

.modal {
    z-index: 9999;
}

/* Header */
.navbar {
    background-color: #121212;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.navbar-brand .logo-img {
    max-height: 40px;
    width: auto;
}

.navbar-brand .site-title {
    color: #e6007e;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.navbar-item {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.navbar-item:hover {
    color: #e6007e;
    background-color: transparent;
}

.navbar-burger {
    color: #e0e0e0;
}

.navbar-burger:hover {
    background-color: transparent;
}

/* Hero Section */
.hero-background {
    background-image: url('uploads/graphics/gaming-hero-background_2.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-body > .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Product Card */
.product-section {
    background-image: url('uploads/graphics/dark-hex-pattern_3.png');
    background-repeat: repeat;
    background-size: 200px;
}

.product-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(230, 0, 126, 0.3);
}

.product-card .card-image img {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    height: 250px;
    object-fit: cover;
}

.product-card .card-content {
    padding: 1.5rem;
}

.product-card .original-price {
    text-decoration: line-through;
}

.price-block {
    display: flex;
    align-items: center;
}

.image.is-4by3 {
    height: 280px;
    padding: 0;
}

.add-to-cart-button {
    font-weight: 600;
}

/* Image Slider */
.image-slider-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.image-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-image {
    min-width: 100%;
    display: block;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 2rem;
    z-index: 10;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.slider-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-button.prev {
    left: 10px;
}

.slider-button.next {
    right: 10px;
}

/* Store Info Panel */
.store-info-panel {
    background-image: url('uploads/graphics/abstract-circuit-background.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.store-info-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.store-info-panel > .container {
    position: relative;
    z-index: 2;
}

.store-info-box {
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(230, 0, 126, 0.3);
}

.review-slider-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 50px;
}

.review-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review-item {
    min-width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    margin-right: 20px; /* Space between reviews */
}

.review-item:last-child {
    margin-right: 0;
}

.review-slider-container .slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(230, 0, 126, 0.7);
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.review-slider-container .slider-button:hover {
    background-color: #ff33a1;
}

.review-slider-container .slider-button.prev {
    left: 0;
}

.review-slider-container .slider-button.next {
    right: 0;
}

/* Shipping Zones */
.shipping-zones {
    background-image: url('uploads/graphics/world-map-dark_2.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.shipping-zones::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.shipping-zones > .container {
    position: relative;
    z-index: 2;
}

.shipping-box {
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    height: 100%;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shipping-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(230, 0, 126, 0.3);
}

.shipping-box ul {
    list-style: none;
    padding-left: 0;
}

.shipping-box ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.shipping-box ul li::before {
    content: '\2022'; /* Bullet point */
    color: #e6007e;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Delivery Information (Tabular) */
.delivery-info .tabs li.is-active a {
    border-bottom-color: #e6007e;
    color: #e6007e;
}

.delivery-info .tabs a {
    color: #e0e0e0;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.delivery-info .tabs a:hover {
    color: #ff33a1;
    border-bottom-color: #ff33a1;
}

.tab-pane {
    display: none;
}

.tab-pane.is-active {
    display: block;
}

.delivery-info .box {
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.delivery-info table {
    background-color: #2a2a2a;
    border-radius: 8px;
}

.delivery-info table th {
    background-color: #3a3a3a;
    color: #ffffff;
    border-color: #4a4a4a;
}

.delivery-info table td {
    border-color: #4a4a4a;
}

/* Guarantee & Benefits Comparison */
.guarantee-benefits {
    background-image: url('uploads/graphics/cyberpunk-city-dark_2.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.guarantee-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.guarantee-benefits > .container {
    position: relative;
    z-index: 2;
}

.comparison-box {
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    height: 100%;
    padding: 2rem;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    color: #e0e0e0;
}

.benefits-list li .icon {
    margin-right: 0.75rem;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Game Reviews & Submission */
.game-reviews {
    background-image: url('uploads/graphics/gaming-setup-dark_2.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.game-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.game-reviews > .container {
    position: relative;
    z-index: 2;
}

.review-item-display {
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.review-item-display .media-left img {
    border-radius: 50%;
}

.rating-stars .star {
    color: #aaaaaa;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.rating-stars .star.is-active, .rating-stars .star:hover {
    color: #ffc107;
}

.rating-stars .star:hover ~ .star {
    color: #aaaaaa;
}

/* Footer */
.footer {
    padding: 3rem 1.5rem;
    border-top: 1px solid #333;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo {
    max-height: 40px;
    width: auto;
}

.footer .site-title {
    color: #e6007e;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer ul {
    list-style: none;
    margin-left: 0;
}

.footer ul li a {
    color: #cccccc;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer ul li a:hover {
    color: #e6007e;
}

/* Modals */
.modal-card {
    max-height: calc(100vh - 40px);
    overflow: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.modal-card-head, .modal-card-foot {
    background-color: #2a2a2a;
    border-color: #3a3a3a;
    border-radius: 12px 12px 0 0;
}

.modal-card-foot {
    border-radius: 0 0 12px 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-card-body {
    background-color: #1f1f1f;
    padding: 1.5rem;
}

.modal-card-title {
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
}

.modal-card-foot .button {
    margin: 0.5rem;
    flex-grow: 1;
    min-width: 180px;
}

#cart-items-container {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 10px;
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #3a3a3a;
}

.cart-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 1rem;
}

.cart-item-details {
    flex-grow: 1;
    color: #e0e0e0;
}

.cart-item-details .item-name {
    font-weight: 600;
    color: #ffffff;
}

.cart-item-details .item-price {
    color: #e6007e;
}

.cart-item-actions {
    display: flex;
    align-items: center;
}

.cart-item-actions .input {
    width: 60px;
    margin-right: 0.5rem;
    background-color: #3a3a3a;
    border-color: #4a4a4a;
    color: #e0e0e0;
}

.cart-item-actions .delete-item-button {
    background: none;
    border: none;
    color: #ff33a1;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cart-item-actions .delete-item-button:hover {
    color: #ff66c4;
}

#add-to-cart-confirmation-modal .modal-card.is-small {
    max-width: 400px;
}

#add-to-cart-confirmation-modal .media-left img {
    border-radius: 8px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.cookie-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-banner .cookie-message {
    flex-grow: 1;
    margin-right: 1rem;
    line-height: 1.4;
}

.cookie-banner .buttons {
    flex-shrink: 0;
}

/* Cookie Settings Modal */
#cookie-settings-modal .modal-card {
    max-width: 500px;
    z-index: 1001; /* Ensure it's above the banner */
}

.switch[type="checkbox"] {
    height: 0;
    width: 0;
    visibility: hidden;
}

.switch[type="checkbox"] + label {
    cursor: pointer;
    text-indent: -9999px;
    width: 60px;
    height: 30px;
    background: #3a3a3a;
    display: block;
    border-radius: 100px;
    position: relative;
    margin-right: 1rem;
    vertical-align: middle;
}

.switch[type="checkbox"] + label:after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 90px;
    transition: 0.3s;
}

.switch[type="checkbox"]:checked + label {
    background: #e6007e;
}

.switch[type="checkbox"]:checked + label:after {
    left: calc(100% - 3px);
    transform: translateX(-100%);
}

.switch[type="checkbox"]:disabled + label {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Animations */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-in-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-fade-in-right {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-in-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Typography */
.site-title {
    font-size: 1.8rem;
}

.hero-title {
    font-size: 2.5rem;
}

.hero-subtitle {
    font-size: 1.8rem;
}

@media screen and (min-width: 1024px) {
    .site-title {
        font-size: 2.2rem;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-subtitle {
        font-size: 2.5rem;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .site-title {
        font-size: 2rem;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 767px) {
    .navbar-brand .site-title {
        font-size: 1.25rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.5rem;
    }
    .modal-card-foot .button {
        margin: 0.5rem 0;
    }
    .cookie-banner .cookie-message {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .cookie-banner .buttons {
        width: 100%;
        justify-content: center;
    }
    .cookie-banner .buttons .button {
        flex-grow: 1;
    }
    .cookie-banner .buttons .mr-2 {
        margin-right: 0.5rem !important;
    }
    .cookie-banner .buttons .mb-2-mobile {
        margin-bottom: 0.5rem !important;
    }
}

@media screen and (max-width: 1100px) {
    .navbar-menu {
        display: none;
    }
    .navbar-burger {
        display: block;
    }
    .navbar-menu.is-active {
        display: block;
        background-color: #121212;
        position: absolute;
        width: 100%;
        left: 0;
        top: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    }
    .navbar-menu.is-active .navbar-item {
        padding-left: 1.5rem;
    }
}

.table.is-striped tbody tr:not(.is-selected):nth-child(2n) {
    background-color: #1d1d19;
}

@media (max-width: 640px) {
    .modal-card-title {
        font-size: 18px;
    }
    .review-slider-container {
        padding: 0;
    }
    .review-slider-container .slider-button {
        padding: 5px;
    }
    .review-item .media {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    .review-item .media-left {
        margin: 10px auto;
    }
    .review-item {
        margin-right: 0;
    }
    .table td, .table th {
        padding: .3em .5em;
    }
}

.navbar-item.smooth-scroll {
    white-space: nowrap;
}

.navbar-menu {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.navbar-menu::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* General input/select styling */
.input.is-primary, .textarea.is-primary, .select.is-primary select {
    background-color: #3a3a3a;
    border-color: #4a4a4a;
    color: #e0e0e0;
}

.input.is-primary::placeholder, .textarea.is-primary::placeholder {
    color: #888888;
}

.input.is-primary:focus, .textarea.is-primary:focus, .select.is-primary select:focus {
    border-color: #e6007e;
    box-shadow: 0 0 0 0.125em rgba(230, 0, 126, 0.25);
}

.select.is-primary::after {
    color: #e0e0e0;
}

.select.is-primary:not(.is-multiple):not(.is-loading)::after {
    border-color: #e0e0e0;
}

.label {
    color: #ffffff;
}

/* Scrollbar for modals */
.modal-card-body {
    max-height: calc(100vh - 200px); /* Adjust based on header/footer height */
    overflow-y: auto;
}

/* Override Bulma default link underline for buttons */
.button {
    text-decoration: none !important;
}

/* Ensure email text breaks */
.word-break-all {
    word-break: break-all;
}/*
 * Base styles for the legal content block.
 * Provides top/bottom margins and horizontal padding to create a readable container.
 */
.legalDomeBlock {
    margin: 2.5em auto; /* Top and bottom margin, centers the block horizontally */
    padding: 1.5em 2em; /* Internal padding for content on all sides */
    max-width: 850px; /* Limits the maximum width of the content for readability */
    box-sizing: border-box; /* Ensures padding is included in the element's total width/height */
}

/*
 * Heading styles (h1-h5) within the legal content block.
 * Designed to be clear but not overly large, with appropriate spacing.
 */
.legalDomeBlock h1 {
    font-size: 2rem; /* Roughly 32px if base font is 16px */
    line-height: 1.2;
    margin-top: 1.8em;
    margin-bottom: 0.8em;
    font-weight: 600; /* Slightly bolder than default */
    color: #d6d3d3; /* Darker text color for headings */
}

.legalDomeBlock h2 {
    font-size: 1.75rem; /* Roughly 28px */
    line-height: 1.3;
    margin-top: 1.6em;
    margin-bottom: 0.7em;
    font-weight: 600;
    color: #d6d3d3;
}

.legalDomeBlock h3 {
    font-size: 1.5rem; /* Roughly 24px */
    line-height: 1.4;
    margin-top: 1.4em;
    margin-bottom: 0.6em;
    font-weight: 500; /* Slightly less bold */
    color: #d6d3d3;
}

.legalDomeBlock h4 {
    font-size: 1.25rem; /* Roughly 20px */
    line-height: 1.5;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    font-weight: 500;
    color: #d6d3d3;
}

.legalDomeBlock h5 {
    font-size: 1.1rem; /* Roughly 17.6px */
    line-height: 1.5;
    margin-top: 1em;
    margin-bottom: 0.4em;
    font-weight: 500;
    color: #d6d3d3;
}

/*
 * Paragraph styles within the legal content block.
 * Ensures good readability with appropriate line height and spacing between paragraphs.
 */
.legalDomeBlock p {
    font-size: 1rem; /* Base font size */
    line-height: 1.6; /* Optimal line height for readability */
    margin-bottom: 1em; /* Space between paragraphs */
    color: #d6d3d3; /* Default text color */
}

/*
 * Unordered list styles within the legal content block.
 * Provides standard bullet points and proper indentation.
 */
.legalDomeBlock ul {
    list-style-type: disc; /* Standard bullet points */
    margin-top: 1em;
    margin-bottom: 1em;
    padding-left: 1.5em; /* Indentation for bullet points */
    color: #d6d3d3;
}

/*
 * List item styles within the legal content block.
 * Ensures proper spacing between individual list items.
 */
.legalDomeBlock li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5em; /* Space between list items */
}
