:root {
    --primary: #00acff;
    --primary-dark: #0088cc;
    --secondary: #5865f2;
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --text-main: #ffffff;
    --text-muted: #b0b0b0;
    --border: #333;
    --success: #2ecc71;
    --danger: #e74c3c;
    --warning: #f39c12;
    --font-main: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Nav */
header {
    background-color: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: bold;
    font-size: 1.5rem;
}

.logo img {
    height: 40px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

.cart-btn {
    position: relative;
    cursor: pointer;
    background: var(--primary);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    transition:
        background 0.3s,
        transform 0.2s;
}

.cart-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--danger);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.profile {
    position: relative;
}
.profile-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 0.4rem 0.6rem;
    border-radius: 20px;
    cursor: pointer;
}
.profile-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}
.profile-name {
    font-weight: 600;
}
.profile-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    min-width: 220px;
    padding: 0.5rem;
    display: none;
    z-index: 2001;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.profile-dropdown.open {
    display: block;
}
.profile-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.profile-meta strong {
    display: block;
}
.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem;
    color: var(--text-main);
    text-decoration: none;
    border-radius: 6px;
}
.dropdown-link:hover {
    background: var(--bg-dark);
}
.dropdown-link.danger {
    color: var(--danger);
}

.cart-count:not(:empty):not([data-count="0"]) {
    opacity: 1;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 6rem 2rem;
    background: radial-gradient(
        circle at center,
        rgba(0, 172, 255, 0.1) 0%,
        transparent 70%
    );
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInDown 1s ease-out;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.ip-box {
    background: var(--bg-card);
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition:
        border-color 0.3s,
        transform 0.2s;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.ip-box:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.ip-box span {
    margin-right: 0.5rem;
    font-family: monospace;
    font-size: 1.1rem;
}

/* Shop Section - Sidebar Layout */
.shop-section {
    padding: 4rem 0;
}

.shop-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Sidebar Styles */
.shop-sidebar h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.category-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: left;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
}

.category-btn:hover {
    background: #2a2a2a;
    color: var(--text-main);
}

.category-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.category-btn i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition:
        transform 0.3s,
        border-color 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--product-color);
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 0 15px var(--product-color);
}

.product-image {
    height: 200px;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.05) 0%,
        transparent 70%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.product-info .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--product-color);
    margin-bottom: 1rem;
}

.btn-add {
    width: 100%;
    padding: 0.8rem;
    background: var(--bg-dark);
    border: 1px solid var(--product-color);
    color: var(--product-color);
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
}

.btn-add:hover {
    background: var(--product-color);
    color: #fff;
    box-shadow: 0 0 10px var(--product-color);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.modal-content {
    background: var(--bg-card);
    margin: 5vh auto;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    border: 1px solid var(--border);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
}

.close-modal:hover {
    color: var(--text-main);
}

/* Cart Items */
.cart-items {
    margin: 2rem 0;
    max-height: 400px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 0.8rem;
    border-radius: 8px;
    gap: 1rem;
}

.cart-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.item-details {
    flex: 1;
}

.item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-dark);
    padding: 0.2rem;
    border-radius: 4px;
}

.item-controls button {
    background: none;
    border: none;
    color: var(--text-main);
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.item-controls button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    padding: 0.5rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 2rem 0;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* Checkout Form */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    color: var(--text-main);
    border-radius: 6px;
    font-size: 1rem;
}

.form-group input:focus {
    border-color: var(--primary);
    outline: none;
}

.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.payment-option input {
    display: none;
}

.payment-card {
    padding: 1rem;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.payment-option input:checked + .payment-card {
    border-color: var(--primary);
    background: rgba(0, 172, 255, 0.1);
}

.payment-card i {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.payment-option input:checked + .payment-card i {
    color: var(--primary);
}

.btn-checkout {
    width: 100%;
    padding: 1rem;
    background: var(--success);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-checkout:hover {
    background: #27ae60;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

/* Order Modal Specifics */
.order-success-icon {
    text-align: center;
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.order-content {
    text-align: center;
}

.order-details {
    background: var(--bg-dark);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    text-align: left;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.detail-row:last-child {
    border-bottom: none;
}

.close-order-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .shop-container {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        margin-bottom: 2rem;
    }

    .payment-methods {
        flex-direction: column;
    }

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

    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bump {
    animation: bump 0.3s ease-out;
}

@keyframes bump {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Server Status */
.server-status-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.server-status {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #666;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.server-status.online .status-indicator {
    background-color: #2ecc71;
    box-shadow: 0 0 10px #2ecc71;
}

.server-status.offline .status-indicator {
    background-color: #e74c3c;
    box-shadow: 0 0 10px #e74c3c;
}

.server-status.loading .status-indicator {
    background-color: #f1c40f;
    animation: pulse 1.5s infinite;
}

.status-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.status-label {
    font-size: 0.75rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.player-count {
    font-size: 0.95rem;
    font-weight: bold;
    color: #fff;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}

/* Paysafecard field visibility */
.psc-hidden {
    display: none !important;
    visibility: hidden;
    opacity: 0;
}

.psc-visible {
    display: block !important;
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Discord Login Modal */
.discord-login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.discord-login-modal.show {
    opacity: 1;
    pointer-events: all;
}

.discord-login-content {
    background: linear-gradient(145deg, var(--bg-card), #252525);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    width: 90%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    position: relative;
}

.discord-login-modal.show .discord-login-content {
    transform: translateY(0);
}

.discord-login-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5865f2, #4752c4);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
}

.discord-login-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #5865f2, #00acff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.discord-login-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.5;
}

.discord-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #5865f2, #4752c4);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.3);
    margin-bottom: 1rem;
    width: 100%;
    justify-content: center;
}

.discord-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(88, 101, 242, 0.4);
    background: linear-gradient(135deg, #4752c4, #5865f2);
}

.discord-login-btn i {
    font-size: 1.3rem;
}

.discord-login-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.discord-login-close:hover {
    background: var(--bg-dark);
    color: var(--text-main);
}

.discord-login-features {
    margin-top: 1.5rem;
    text-align: left;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.discord-login-features h4 {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.discord-login-features ul {
    list-style: none;
    padding: 0;
}

.discord-login-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.discord-login-features li i {
    color: var(--success);
    font-size: 0.8rem;
}
. c a r t - p r i c i n g   {   t e x t - a l i g n :   r i g h t ;   } 
 . o r i g i n a l - p r i c e   {   c o l o r :   v a r ( - - t e x t - m u t e d ) ;   t e x t - d e c o r a t i o n :   l i n e - t h r o u g h ;   f o n t - s i z e :   0 . 9 r e m ;   } 
 . d i s c o u n t - l i n e   {   c o l o r :   v a r ( - - s u c c e s s ) ;   m a r g i n :   0 . 2 r e m   0 ;   } 
 . d i s c o u n t - l a b e l   {   f o n t - w e i g h t :   5 0 0 ;   } 
 . d i s c o u n t - a m o u n t   {   f o n t - w e i g h t :   b o l d ;   } 
 . f i n a l - p r i c e   {   f o n t - s i z e :   1 . 1 r e m ;   c o l o r :   v a r ( - - p r i m a r y ) ;   m a r g i n - t o p :   0 . 3 r e m ;   } 
 # c o u p o n - m e s s a g e   {   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   g a p :   0 . 5 r e m ;   } 
 # c o u p o n - m e s s a g e   i   {   f o n t - s i z e :   1 r e m ;   }  
 