html,
:root {
    --bg-color: #000000;
    --panel-body: #000000;
    --second-color: #000000;
    --header-bg: #000000;
    --footer-bg: #000000;
    --input: #000000;
    --border-color: #111111;
    --first-color: #000000;
    --button: #7c3aed;
    --main-color: #7c3aed;
    --hover-color: #a78bfa;
    --text-color: #e4e4e7;
    --border: 1px solid #222222;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    --border-radius: 8px;
    --transition: all 0.2s ease;
    --spacing-xs: 0.5rem;
    --spacing-s: 1rem;
    --spacing-m: 1.5rem;
}
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.container {
    position: relative;
    height: 100%;

    @media only screen and (max-width: 768px) {
        padding-left: 15px;
        padding-right: 15px;
    }
}

html {
    font: 15px / 1.4 sans-serif;
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 400;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    word-wrap: break-word;
    background-color: var(--bg-color);
}

body {
    background-color: var(--bg-color);
    font-family: 'Roboto Flex', sans-serif;
    color: var(--text-color);
}

header {
    background: var(--header-bg);
}

.body {
    background-color: var(--bg-color);
    background-image: url("https://i.imgur.com/TAAso1T.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    min-height: 100vh;
}

.index-section h1 {
    font-family: Rajdhani;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    color: #F4F4F5;
}

.social-media {
    width: 20%;
}

.header-account {
    width: 20%;
}

.social-media li a i {
    font-size: 20px;
    color: #fff;
}

.social-media li a i {
    padding: 10px 8px;
    background: var(--first-color);
    border-radius: 2px;
    width: 40px;
    height: 40px;
    text-align: center;
}

.topbar {
    background: var(--first-color);
    padding: var(--spacing-s);
}

.social-media li a.twitch i {
    background: #9147FF;
}

.social-media-item.discord i {
    background: #5865F2;
}

.social-media-item.youtube i {
    background: #DC2626;
}

.social-media-item.twitter i {
    background: black;
}

.social-media-item.instagram i {
    background: #ff00a5;
}

.social-media-item.facebook i {
    background: #3146dd;
}

.topbar {
    background: var(--panel-body);
    padding: var(--spacing-s);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

li.nav-item a {
    font-family: 'Rajdhani';
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: #fff;
    text-transform: uppercase;
    transition: text-shadow 0.2s ease, color 0.2s ease;
    display: flex;
    flex-direction: row;
    gap: var(--spacing-xs);
    align-items: center;
}

/* Mindre + skarpere glow – kun på teksten */
li.nav-item a:hover {
    color: #ffffff !important;
    text-shadow: 
        0 0 1px #ffffff,
        0 0 3px #c4b5fd,
        0 0 5px #a78bfa,
        0 0 7px #7c3aed !important;
}

/* Fjern glow fra ikonet/symbolet */
li.nav-item a:hover i,
li.nav-item a:hover svg {
    text-shadow: none !important;
    filter: none !important;
}

li.nav-item.active a {
    color: var(--main-color);
}

li.nav-item a i {
    opacity: 0.4;
}

.module {
    background: linear-gradient(0deg, #000000, #000000), linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 21.88%);
    border-radius: var(--border-radius);
    border: var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.home-content {
    background: linear-gradient(0deg, #000000, #000000), linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 21.88%);
    border-radius: var(--border-radius);
    border: var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.module-body {
    padding: var(--spacing-s);
}

h2.module-title {
    font-family: Rajdhani;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    text-transform: uppercase;
    color: #F4F4F5;
    position: absolute;
    margin-top: -24px;
    margin-left: 10px;
}

.index-section {
    background: linear-gradient(0deg, #000000, #000000), linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 21.88%);
    border-radius: var(--border-radius);
    border: var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.index-section>h1 {
    text-align: left;
    position: absolute;
    margin-top: -24px;
    margin-left: 10px;
}

.index-section-body {
    padding: var(--spacing-m) var(--spacing-s);
}

.index-section-body p {
    margin-bottom: var(--spacing-s);
}

.index-section-body a {
    padding: var(--spacing-xs) var(--spacing-s);
    background: var(--button);
    color: #fff;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.1em;
    text-align: left;
    font-family: 'Rajdhani';
    text-transform: uppercase;
}

.home-content-sec {
    padding: var(--spacing-m) var(--spacing-s);
}

h1.home-content-tit {
    font-family: Rajdhani;
    font-size: 60px;
    font-weight: 400;
    line-height: 60px;
    text-align: left;
    color: #F4F4F5;
    text-transform: uppercase;
}

.progress-bar {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    height: 12px;
}

@keyframes moveStripes {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 40px 0;
    }
}

@keyframes pulseOpacity {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Rainbow WAVE fra venstre til højre */
@keyframes rainbow-wave {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

/* ========== Ultimate Kit = regnbue glow ved hover ========== */
@keyframes rainbow-glow {
    0% {
        box-shadow: 
            0 0 8px #ff0000,
            0 0 16px #ff0000,
            0 0 24px rgba(255, 0, 0, 0.5);
        border-color: #ff0000;
    }
    14% {
        box-shadow: 
            0 0 8px #ff7f00,
            0 0 16px #ff7f00,
            0 0 24px rgba(255, 127, 0, 0.5);
        border-color: #ff7f00;
    }
    28% {
        box-shadow: 
            0 0 8px #ffff00,
            0 0 16px #ffff00,
            0 0 24px rgba(255, 255, 0, 0.5);
        border-color: #ffff00;
    }
    42% {
        box-shadow: 
            0 0 8px #00ff00,
            0 0 16px #00ff00,
            0 0 24px rgba(0, 255, 0, 0.5);
        border-color: #00ff00;
    }
    57% {
        box-shadow: 
            0 0 8px #0000ff,
            0 0 16px #0000ff,
            0 0 24px rgba(0, 0, 255, 0.5);
        border-color: #0000ff;
    }
    71% {
        box-shadow: 
            0 0 8px #4b0082,
            0 0 16px #4b0082,
            0 0 24px rgba(75, 0, 130, 0.5);
        border-color: #4b0082;
    }
    85% {
        box-shadow: 
            0 0 8px #9400d3,
            0 0 16px #9400d3,
            0 0 24px rgba(148, 0, 211, 0.5);
        border-color: #9400d3;
    }
    100% {
        box-shadow: 
            0 0 8px #ff0000,
            0 0 16px #ff0000,
            0 0 24px rgba(255, 0, 0, 0.5);
        border-color: #ff0000;
    }
}

input {
    background: var(--input);
    border-color: var(--border-color) !important;
    border-radius: var(--border-radius) !important;
}

:focus-visible {
    outline: 0;
}

input:focus-visible {
    outline-offset: 0px;
}

.payment-goal {
    background: var(--first-color);
    border-radius: 50px;
    width: 100%;
    height: 12px;
    overflow: hidden;
}

.goal-current {
    font-family: Roboto Flex;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: var(--spacing-s);
}

.payment-goal-display {
    display: flex;
    justify-content: space-between;
}

.payment-goal-data {
    text-align: center;
    text-align: -webkit-center;
    font-family: Roboto Flex;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: var(--text-color);
}

.payment-max {
    font-family: Roboto Flex;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: var(--text-color);
}

.btn-gift {
    background: var(--button);
    border-color: var(--button);
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.btn:hover {
    background: var(--button);
    filter: contrast(0.8);
    transition: var(--transition);
}

.btn {
    font-weight: 700;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: var(--border-radius);
    background: var(--button);
    border-color: var(--button);
    cursor: pointer;
    transition: var(--transition);
}

.error-msg {
    background: #d75252;
    margin: var(--spacing-s);
    border-radius: var(--border-radius);
    color: #fff;
    font-family: 'Rajdhani';
    margin-top: 0;
}

.success-msg {
    background: #52d787;
    margin: var(--spacing-s);
    border-radius: var(--border-radius);
    color: #fff;
    font-family: 'Rajdhani';
    margin-top: 0;
}

.header-item svg {
    height: 24px;
}

.header-item {
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xs);
    background: var(--second-color);
    border-radius: var(--border-radius);
    border: 1px solid #00000040;
    position: relative;
}

.header-item:first-child {
    padding: 0;
}

span.cart-number {
    position: absolute;
    top: -11px;
    right: -11px;
    height: 22px;
    width: 22px;
    background: var(--main-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Roboto Flex;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    color: #fff;
}

.category-package {
    background: linear-gradient(0deg, #000000, #000000), linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 21.88%);
    border: var(--border);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    z-index: 1;
}

/* Kit-kort lyser op ved hover - strammere glow */
.category-package:hover {
    box-shadow: 
        0 0 8px rgba(124, 58, 237, 0.7),
        0 0 16px rgba(167, 139, 250, 0.35);
    border-color: #7c3aed;
    transform: translateY(-3px);
    z-index: 10;
}

/* Ultimate Kit = regnbue glow (overstyrer den lilla) */
.category-package:last-child:hover {
    animation: rainbow-glow 2.5s linear infinite !important;
    transform: translateY(-3px);
    z-index: 10;
}

span.category-package-name {
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
    color: #fff;
}

.category-package-details {
    padding: var(--spacing-s);
}

.package-bott {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    padding: var(--spacing-s) var(--spacing-xs);
    border-top: var(--border);
    position: relative;
    overflow: hidden;
    background: var(--second-color);
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

.category-package-price-list {
    font-family: Roboto Flex;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-align: left;
    color: #fff;
}

.category-package-buttons {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: var(--spacing-xs);
}

.btn-svg span {
    color: #FAFAFA;
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    text-align: left;
    text-transform: uppercase;
}

.btn-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.category-package-buttons a {
    border-radius: 0;
    height: 35px;
}

.category-package-price-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
}

.btn-modal svg {
    height: 36px;
}

.btn-modal {
    width: 40px;
    padding: 0;
    height: 35px;
}

.category-page {
    text-align: center;
    text-align: -webkit-center;
}

h2.category-title {
    font-family: Rajdhani;
    font-size: 60px;
    font-weight: 400;
    line-height: 60px;
    text-align: center;
    color: #F4F4F5;
}

.category-description {
    font-family: Roboto Flex;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: var(--text-color);
}

span.category-package-price-disc {
    color: #d96969;
    font-size: 12px;
    text-decoration: line-through;
}

.footer-copyright {
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

footer {
    background: var(--footer-bg);
    padding: var(--spacing-m) 0;
    border-top: 1px solid var(--border-color);
}

.footer-links a {
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    text-transform: uppercase;
}

a:hover {
    color: #fff;
    transition: var(--transition);
    text-decoration: none;
}

.footer-copyright span {
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #71717A;
    text-transform: uppercase;
}

.product-page,
.product-description {
    background: var(--panel-body);
    box-shadow: var(--shadow);
    border: var(--border);
    border-radius: var(--border-radius);
}

@media (min-width: 1536px) {
    .container {
        max-width: 1280px !important;
    }
}

.product-page-image {
    padding: var(--spacing-s);
    background: #00000040;
}

img.product-img {
    max-height: 15rem;
    width: auto;
}

.product-page-details {
    padding: var(--spacing-m) var(--spacing-s);
}

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-name {
    font-family: Rajdhani;
    font-size: 36px;
    font-weight: 700;
    line-height: 36px;
    text-align: left;
    color: #fff;
}

.product-price {
    font-family: Rajdhani;
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
    color: #F4F4F5;
}

.product-details-top span {
    font-family: Roboto Flex;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: var(--text-color);
}

.small-title span {
    font-family: Rajdhani;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #fff;
    text-transform: uppercase;
}

.small-title svg path {
    fill: var(--main-color);
}

.small-title {
    display: flex;
    align-items: center;
}

span.product-det-border {
    width: 100%;
    background: #000000;
    height: 2px;
    margin-left: var(--spacing-xs);
}

.product-description {
    padding: var(--spacing-m);
}

button.add-btn {
    background: var(--button);
    padding: var(--spacing-xs) var(--spacing-s);
    border: var(--border);
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: #fff;
    text-transform: uppercase;
}

button#giftButton {
    background: #3374ed;
    padding: var(--spacing-xs) var(--spacing-s);
    border: var(--border);
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: #fff;
    text-transform: uppercase;
}

button#purchaseFromGift {
    background: var(--button);
    padding: var(--spacing-xs) var(--spacing-s);
    border: var(--border);
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: #fff;
    text-transform: uppercase;
}

button#closeGift {
    background: #e36060;
    padding: var(--spacing-xs) var(--spacing-s);
    border: var(--border);
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: #fff;
    text-transform: uppercase;
}

span.cart-page-title {
    font-family: Rajdhani;
    font-size: 60px;
    font-weight: 400;
    line-height: 60px;
    text-align: left;
    color: #F4F4F5;
    text-transform: uppercase;
}

.nr-item {
    font-family: Rajdhani;
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    align-self: center;
    color: #F4F4F5;
}

hr {
    border-color: #000000;
}

table {
    max-width: 100%;
    background-color: transparent;
    width: 100%;
}

.table>thead>tr>th,
.table>tbody>tr>th,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>tbody>tr>td,
.table>tfoot>tr>td {
    padding: 15px 8px;
    line-height: 1.42857143;
    vertical-align: top;
    text-align: left;
    align-content: center;
}

table tbody td {
    vertical-align: middle;
}

table>thead>tr>th {
    vertical-align: bottom;
}

table tbody .image {
    width: 10%;
    text-align: center;
    align-content: center;
}

table tbody .name {
    width: 100%;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-left: var(--spacing-xs);
}

table tbody .options {
    width: 25%;
    text-align: center;
}

table tbody .price {
    width: 15%;
    text-align: center;
}

table tbody .quantity {
    width: 5%;
    text-align: center;
}

table tbody .total {
    width: 15%;
    text-align: center;
}

table tbody .close {
    width: 5%;
    text-align: center;
}

table input {
    width: 40px;
    text-align: center;
}

tbody tr {
    background: var(--panel-body);
    border-top: var(--spacing-xs) solid #000000;
}

tbody tr:first-child {
    border: none;
}

.table>thead>tr>th {
    text-transform: uppercase;
    font-family: Rajdhani;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    text-align: left;
    color: #fff;
}

td.image {
    background: var(--second-color);
    padding: var(--spacing-xs) !important;
}

td.image .product-img {
    height: 65px;
    width: auto;
}

td.name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-content: center;
    gap: var(--spacing-xs);
}

span.product-name {
    font-family: Rajdhani;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
}

.name-sec {
    font-family: Roboto Flex;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
    color: #A1A1AA;
}

td.price span {
    font-family: Rajdhani;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #A1A1AA;
}

td.total span {
    font-family: Rajdhani;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #fff;
}

td.close {
    align-content: center;
}

table tbody .close a i {
    font-size: 20px;
    font-weight: 600;
}

.remove-btn {
    background: #E11D48;
    padding: var(--spacing-xs) var(--spacing-s);
    border: var(--border);
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: #fff;
    text-transform: uppercase;
    border: 1px solid #ffffff3d;
}

a.add-btn {
    background: var(--button);
    padding: var(--spacing-xs) var(--spacing-s);
    border: var(--border);
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: #fff;
    text-transform: uppercase;
    border: 1px solid #FFFFFF66;
    width: 100%;
}

.subtotal span {
    font-family: Rajdhani;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #A1A1AA;
    text-transform: uppercase;
}

.subtotal p {
    font-family: Rajdhani;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    text-align: right;
    color: #fff;
}

/* Force pure black on top header + navigation bar */
header,
.topbar,
.header,
.navbar,
.nav-bar,
.top-bar {
    background: #000000 !important;
    background-color: #000000 !important;
    border-color: #111111 !important;
}

.header-top,
.site-header,
.main-header {
    background: #000000 !important;
}

h1.home-content-tit {
    display: none !important;
}

/* ========== ØVERSTE BOKS (Welcome) = lilla (INGEN glow) ========== */
.home-content .home-content-text p,
.home-content .prose p {
    color: #754DD4 !important;
    font-weight: 700 !important;
    font-family: 'Rajdhani', sans-serif !important;
}

/* ========== NEDERSTE BOKS = regnbue WAVE (venstre → højre) ========== */
.index-section .index-section-body,
.index-section .index-section-body div,
.index-section .index-section-body p,
.index-section .prose,
.index-section .prose p,
.index-section .content-field,
.index-section .content-field p {
    text-align: center !important;
    font-size: 32px !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
    font-family: 'Rajdhani', sans-serif !important;
    
    background: linear-gradient(
        90deg,
        #ff0000,
        #ff7f00,
        #ffff00,
        #00ff00,
        #0000ff,
        #4b0082,
        #9400d3,
        #ff0000
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    -webkit-text-fill-color: transparent;
    
    animation: rainbow-wave 3s linear infinite !important;
}

/* Links i nederste boks */
.index-section a {
    color: #a78bfa !important;
}
/* Gør modulets top banner kortere og mere minimalistisk */
.module {
    padding: 10px 15px; /* Reducer padding for mere kompakt layout */
    margin-bottom: 10px; /* Mellemrum mellem moduler */
    border-radius: var(--border-radius);
    border: var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    /* Hvis du ønsker en fast højde, kan du tilføje nedenfor:
    height: 150px; */
}

/* For titlen i modulet, gør den mindre og fjerner absolut positionering */
h2.module-title {
    font-family: Rajdhani;
    font-size: 20px; /* Mindre tekststørrelse */
    font-weight: 700;
    line-height: 24px;
    margin-top: 0; /* Fjern absolut positionering */
    position: static; /* Fjern absolut positionering */
    color: #F4F4F5;
}

/* Optional: Juster overskriftens margin for mindre plads */
h2.module-title {
    margin-bottom: 10px;
}

/* Hvis du vil have endnu mere minimalistisk, kan du også fjerne eller reducere padding i .module-body */
.module-body {
    padding: 10px; /* Mindre padding */
}

/* For at gøre bannere mere flade og mindre, kan du evt. justere baggrundsfarve eller border-radius */