/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loading-image {
    max-width: 200px;
    height: auto;
    border-radius: 12px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #1f1f1f;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FF55FF;
    letter-spacing: -0.02em;
}

.logo-extension {
    color: #AAAAAA;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: #FF55FF;
}

/* Cart Button */
.cart-button {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 0.5rem;
    padding: 0.75rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    font-family: inherit;
}

.cart-button:hover {
    background: #FF55FF;
    border-color: #FF55FF;
    box-shadow: 0 0 15px rgba(255, 85, 255, 0.4);
    transform: scale(1.05);
}

.snipcart-items-count {
    background: #FF55FF;
    color: white;
    border-radius: 50%;
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    animation: pulse 2s infinite;
}

.snipcart-items-count:empty {
    display: none;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.1);
    }
}

/* Page Management */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* Hero Section */
.hero {
    padding: 8rem 1.5rem 4rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.2;
}

.coming-soon-text {
    font-size: 1.125rem;
    font-weight: 400;
    color: #9ca3af;
    margin-bottom: 3rem;
    letter-spacing: 0.02em;
}

.hero-main {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.ip-container {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.ip-container:hover {
    border-color: #FF55FF;
    background: #1f1f1f;
    box-shadow: 0 0 20px rgba(255, 85, 255, 0.2);
}

.server-ip {
    font-size: 1.25rem;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    color: #FF55FF;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.copy-btn {
    background: #FF55FF;
    border: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    background: #e040e0;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 85, 255, 0.4);
}

/* Server Status Container */
.server-status-container {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #9ca3af;
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.status-dot.online {
    background: #10b981;
    animation: pulse 2s infinite;
}

.status-dot.offline {
    background: #ef4444;
}

.status-dot.checking {
    background: #f59e0b;
    animation: pulse 1s infinite;
}

.player-count-separator {
    color: #6b7280;
    margin: 0 0.25rem;
}

/* Game Modes Section */
.gamemodes {
    padding: 4rem 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #FF55FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gamemodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.gamemode-card {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gamemode-card.disabled {
    cursor: default;
    opacity: 0.7;
}

.gamemode-card:not(.disabled) {
    cursor: pointer;
}

.gamemode-card:not(.disabled)::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 85, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.gamemode-card:not(.disabled):hover::before {
    left: 100%;
}

.gamemode-card:not(.disabled):hover {
    border-color: #FF55FF;
    background: #1f1f1f;
    box-shadow: 0 10px 30px rgba(255, 85, 255, 0.2);
    transform: translateY(-5px);
}

.gamemode-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FF55FF;
}

.gamemode-description {
    color: #9ca3af;
    line-height: 1.6;
}

/* Leaderboards Section */
.leaderboards-section {
    padding: 4rem 1.5rem;
    background: #0f0f0f;
}

.coming-soon-container {
    text-align: center;
    padding: 4rem 2rem;
}

.coming-soon-large {
    font-size: 3rem;
    font-weight: 700;
    color: #FF55FF;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FF55FF 0%, #e040e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 85, 255, 0.3);
}

.coming-soon-subtitle {
    font-size: 1.25rem;
    color: #9ca3af;
    font-weight: 400;
}

.leaderboards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Leaderboards Row Layout for Stats Pages */
.leaderboards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.leaderboard-card {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.leaderboard-card:hover {
    border-color: #FF55FF;
    box-shadow: 0 5px 20px rgba(255, 85, 255, 0.15);
}

.leaderboard-header {
    padding: 1.5rem;
    border-bottom: 1px solid #333333;
    background: linear-gradient(135deg, #1f1f1f 0%, #2a1a2a 100%);
}

.leaderboard-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #FF55FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.leaderboard-list {
    padding: 0;
}

.leaderboard-item {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #2a2a2a;
    transition: background-color 0.3s ease;
}

.leaderboard-item:hover {
    background: rgba(255, 85, 255, 0.05);
}

.leaderboard-item:last-child {
    border-bottom: none;
}

.rank {
    font-size: 1rem;
    font-weight: 700;
    color: #FF55FF;
    width: 2rem;
    text-shadow: 0 0 10px rgba(255, 85, 255, 0.5);
}

.player-name {
    font-weight: 600;
    color: #ffffff;
    flex: 1;
    margin-left: 1rem;
}

.stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: #FF55FF;
    text-shadow: 0 0 10px rgba(255, 85, 255, 0.3);
}

/* Stats Pages */
.page-header {
    padding: 6rem 1.5rem 2rem;
}

.back-btn {
    background: #1a1a1a;
    border: 1px solid #333333;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-bottom: 2rem;
}

.back-btn:hover {
    background: #FF55FF;
    border-color: #FF55FF;
    box-shadow: 0 0 15px rgba(255, 85, 255, 0.4);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #FF55FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-container {
    padding: 0 1.5rem 4rem;
}

/* Footer */
.footer {
    background: #0f0f0f;
    border-top: 1px solid #1f1f1f;
    padding: 3rem 1.5rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-description {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF55FF;
}

.footer-links a.disabled {
    color: #6b7280;
    cursor: default;
    pointer-events: none;
}

.server-info {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid #1f1f1f;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* ===== SNIPCART FULL-SCREEN STYLING ===== */

/* Override Snipcart's default font */
.snipcart,
.snipcart *,
.snipcart-modal,
.snipcart-modal *,
.snipcart-layout,
.snipcart-layout * {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Modal Overlay - Full Screen */
.snipcart-modal {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    z-index: 10000 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
}

/* Modal Container - Full Screen */
.snipcart-modal__container {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: none !important;
    max-height: none !important;
    background: #0a0a0a !important;
    border: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    transform: none !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Modal Header */
.snipcart-modal__header {
    background: #1a1a1a !important;
    border-bottom: 1px solid #333333 !important;
    padding: 1.5rem 2rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-shrink: 0 !important;
}

.snipcart-modal__header-title {
    color: #ffffff !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, #ffffff 0%, #FF55FF 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin: 0 !important;
}

.snipcart-modal__close-button {
    background: #333333 !important;
    border: 1px solid #555555 !important;
    border-radius: 0.5rem !important;
    color: #ffffff !important;
    width: 3rem !important;
    height: 3rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 1.5rem !important;
}

.snipcart-modal__close-button:hover {
    background: #FF55FF !important;
    border-color: #FF55FF !important;
    box-shadow: 0 0 15px rgba(255, 85, 255, 0.4) !important;
    transform: scale(1.05) !important;
}

/* Continue Shopping Button in Header */
.snipcart-modal__header .snipcart-cart-summary__continue-shopping-button {
    background: linear-gradient(135deg, #FF55FF 0%, #e040e0 100%) !important;
    border: none !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 0.5rem !important;
    color: white !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    font-size: 0.875rem !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin-right: 1rem !important;
}

.snipcart-modal__header .snipcart-cart-summary__continue-shopping-button:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 0 20px rgba(255, 85, 255, 0.4) !important;
}

/* Modal Content - Full Screen */
.snipcart-modal__content {
    background: #0a0a0a !important;
    color: #ffffff !important;
    padding: 0 !important;
    flex: 1 !important;
    overflow-y: auto !important;
    scrollbar-width: thin !important;
    scrollbar-color: #FF55FF #1a1a1a !important;
}

.snipcart-modal__content::-webkit-scrollbar {
    width: 12px !important;
}

.snipcart-modal__content::-webkit-scrollbar-track {
    background: #1a1a1a !important;
}

.snipcart-modal__content::-webkit-scrollbar-thumb {
    background: #FF55FF !important;
    border-radius: 6px !important;
}

.snipcart-modal__content::-webkit-scrollbar-thumb:hover {
    background: #e040e0 !important;
}

/* Cart Summary - Full Width */
.snipcart-cart-summary {
    background: #0a0a0a !important;
    padding: 2rem !important;
    min-height: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* Cart Items - Full Width Grid */
.snipcart-item-line {
    background: #1a1a1a !important;
    border: 1px solid #333333 !important;
    border-radius: 1rem !important;
    margin-bottom: 2rem !important;
    padding: 2rem !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    display: grid !important;
    grid-template-columns: 100px 1fr auto auto auto !important;
    gap: 2rem !important;
    align-items: center !important;
}

.snipcart-item-line::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 85, 255, 0.05), transparent) !important;
    transition: left 0.5s ease !important;
}

.snipcart-item-line:hover::before {
    left: 100% !important;
}

.snipcart-item-line:hover {
    border-color: #FF55FF !important;
    box-shadow: 0 5px 20px rgba(255, 85, 255, 0.1) !important;
    transform: translateY(-2px) !important;
}

/* Product Image */
.snipcart-item-line__image {
    width: 100px !important;
    height: 100px !important;
    border-radius: 0.5rem !important;
    object-fit: cover !important;
}

/* Product Info */
.snipcart-item-line__product {
    color: #ffffff !important;
    min-width: 0 !important;
}

.snipcart-item-line__product-name {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 1.25rem !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.4 !important;
}

.snipcart-item-line__product-description {
    color: #9ca3af !important;
    font-size: 0.875rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
}

.snipcart-item-line__product-price {
    color: #FF55FF !important;
    font-weight: 700 !important;
    font-size: 1.5rem !important;
    text-shadow: 0 0 10px rgba(255, 85, 255, 0.3) !important;
}

/* Quantity Controls */
.snipcart-item-line__quantity {
    background: #333333 !important;
    border: 1px solid #555555 !important;
    border-radius: 0.5rem !important;
    padding: 0.75rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
}

.snipcart-item-line__quantity-button {
    background: #555555 !important;
    border: 1px solid #777777 !important;
    border-radius: 0.25rem !important;
    color: #ffffff !important;
    width: 2.5rem !important;
    height: 2.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
}

.snipcart-item-line__quantity-button:hover {
    background: #FF55FF !important;
    border-color: #FF55FF !important;
    transform: scale(1.1) !important;
}

.snipcart-item-line__quantity-input {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    text-align: center !important;
    font-weight: 600 !important;
    width: 3rem !important;
    font-size: 1.125rem !important;
}

/* Total Price */
.snipcart-item-line__total-price {
    color: #FF55FF !important;
    font-weight: 700 !important;
    font-size: 1.5rem !important;
    text-shadow: 0 0 10px rgba(255, 85, 255, 0.3) !important;
}

/* Remove Button */
.snipcart-item-line__remove-button {
    background: #ef4444 !important;
    border: 1px solid #dc2626 !important;
    border-radius: 0.5rem !important;
    color: white !important;
    padding: 0.75rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 0.875rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 3rem !important;
    height: 3rem !important;
}

.snipcart-item-line__remove-button:hover {
    background: #dc2626 !important;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4) !important;
    transform: scale(1.05) !important;
}

/* Custom Fields */
.snipcart-item-line__custom-fields {
    background: rgba(255, 85, 255, 0.1) !important;
    border: 1px solid rgba(255, 85, 255, 0.2) !important;
    border-radius: 0.5rem !important;
    padding: 1rem !important;
    margin-top: 1rem !important;
    grid-column: 1 / -1 !important;
}

.snipcart-item-line__custom-field {
    color: #ffffff !important;
    margin-bottom: 0.5rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.snipcart-item-line__custom-field:last-child {
    margin-bottom: 0 !important;
}

.snipcart-item-line__custom-field-label {
    color: #FF55FF !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
}

.snipcart-item-line__custom-field-value {
    color: #ffffff !important;
    font-weight: 500 !important;
    background: #333333 !important;
    padding: 0.25rem 0.75rem !important;
    border-radius: 0.25rem !important;
    font-size: 0.875rem !important;
}

/* Cart Total */
.snipcart-cart-summary__total {
    background: #1a1a1a !important;
    border: 1px solid #333333 !important;
    border-radius: 1rem !important;
    padding: 2rem !important;
    margin-top: 3rem !important;
    max-width: 500px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.snipcart-cart-summary__total-line {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 1.5rem !important;
    color: #9ca3af !important;
    font-size: 1.125rem !important;
}

.snipcart-cart-summary__total-line:last-child {
    margin-bottom: 0 !important;
}

.snipcart-cart-summary__total-line--total {
    border-top: 1px solid #333333 !important;
    padding-top: 1.5rem !important;
    margin-top: 1.5rem !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
}

.snipcart-cart-summary__total-amount {
    color: #FF55FF !important;
    font-weight: 700 !important;
    text-shadow: 0 0 10px rgba(255, 85, 255, 0.3) !important;
}

/* Checkout Button */
.snipcart-cart-summary__checkout-button {
    width: 100% !important;
    background: linear-gradient(135deg, #FF55FF 0%, #e040e0 100%) !important;
    border: none !important;
    padding: 1.5rem 2rem !important;
    border-radius: 0.75rem !important;
    color: white !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    font-size: 1.125rem !important;
    margin-top: 2rem !important;
    font-family: 'Inter', sans-serif !important;
}

.snipcart-cart-summary__checkout-button:hover {
    transform: scale(1.02) !important;
    box-shadow: 0 0 20px rgba(255, 85, 255, 0.4) !important;
}

/* Empty Cart */
.snipcart-cart-summary--empty {
    text-align: center !important;
    padding: 4rem 2rem !important;
    background: #0a0a0a !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important;
}

.snipcart-cart-summary__empty-cart-message {
    color: #9ca3af !important;
    font-size: 1.5rem !important;
    margin-bottom: 2rem !important;
    line-height: 1.6 !important;
}

.snipcart-cart-summary__empty-cart-icon {
    width: 5rem !important;
    height: 5rem !important;
    color: #555555 !important;
    margin-bottom: 2rem !important;
}

/* Continue Shopping Button */
.snipcart-cart-summary__continue-shopping-button {
    background: linear-gradient(135deg, #FF55FF 0%, #e040e0 100%) !important;
    border: none !important;
    padding: 1rem 2rem !important;
    border-radius: 0.75rem !important;
    color: white !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.snipcart-cart-summary__continue-shopping-button:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 0 20px rgba(255, 85, 255, 0.4) !important;
}

/* Form Elements */
.snipcart-form__field {
    margin-bottom: 2rem !important;
}

.snipcart-form__label {
    color: #ffffff !important;
    font-weight: 600 !important;
    margin-bottom: 0.75rem !important;
    display: block !important;
    font-size: 1rem !important;
}

.snipcart-form__input,
.snipcart-form__select,
.snipcart-form__textarea {
    background: #1a1a1a !important;
    border: 1px solid #333333 !important;
    border-radius: 0.5rem !important;
    color: #ffffff !important;
    padding: 1rem 1.25rem !important;
    width: 100% !important;
    font-family: 'Inter', sans-serif !important;
    transition: all 0.3s ease !important;
    font-size: 1rem !important;
}

.snipcart-form__input:focus,
.snipcart-form__select:focus,
.snipcart-form__textarea:focus {
    border-color: #FF55FF !important;
    box-shadow: 0 0 0 3px rgba(255, 85, 255, 0.1) !important;
    outline: none !important;
}

.snipcart-form__input::placeholder {
    color: #6b7280 !important;
}

/* Buttons */
.snipcart-button-primary {
    background: linear-gradient(135deg, #FF55FF 0%, #e040e0 100%) !important;
    border: none !important;
    padding: 1rem 2rem !important;
    border-radius: 0.75rem !important;
    color: white !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
}

.snipcart-button-primary:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 0 20px rgba(255, 85, 255, 0.4) !important;
}

.snipcart-button-secondary {
    background: #1a1a1a !important;
    border: 1px solid #333333 !important;
    padding: 1rem 2rem !important;
    border-radius: 0.75rem !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
}

.snipcart-button-secondary:hover {
    background: #333333 !important;
    border-color: #555555 !important;
}

/* Mobile Responsiveness for Snipcart */
@media (max-width: 767px) {
    .snipcart-modal__header {
        padding: 1rem !important;
    }
    
    .snipcart-modal__header-title {
        font-size: 1.5rem !important;
    }
    
    .snipcart-cart-summary {
        padding: 1rem !important;
    }
    
    .snipcart-item-line {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        text-align: center !important;
        padding: 1.5rem !important;
    }
    
    .snipcart-item-line__image {
        justify-self: center !important;
    }
    
    .snipcart-item-line__quantity {
        justify-content: center !important;
    }
    
    .snipcart-cart-summary__checkout-button {
        padding: 1rem !important;
        font-size: 1rem !important;
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .page-title {
        font-size: 3rem;
    }
    
    .coming-soon-large {
        font-size: 4rem;
    }
}

@media (max-width: 767px) {
    .nav-menu {
        display: none;
    }
    
    .nav-content {
        justify-content: space-between;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .coming-soon-large {
        font-size: 2.5rem;
    }
    
    .gamemodes-grid {
        grid-template-columns: 1fr;
    }
    
    .leaderboards-grid {
        grid-template-columns: 1fr;
    }
    
    .leaderboards-row {
        grid-template-columns: 1fr;
    }
}