/* BehemothHax Store - Main Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Background */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="0.5" fill="white" opacity="0.8"/><circle cx="80" cy="40" r="0.3" fill="white" opacity="0.6"/><circle cx="40" cy="60" r="0.4" fill="white" opacity="0.7"/><circle cx="90" cy="80" r="0.2" fill="white" opacity="0.5"/><circle cx="10" cy="90" r="0.3" fill="white" opacity="0.6"/></svg>') repeat;
    animation: twinkle 3s ease-in-out infinite alternate;
}

.twinkling {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="30" cy="30" r="0.2" fill="cyan" opacity="0.8"/><circle cx="70" cy="70" r="0.3" fill="cyan" opacity="0.6"/><circle cx="50" cy="10" r="0.2" fill="cyan" opacity="0.7"/></svg>') repeat;
    animation: sparkle 2s linear infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.3; }
}

@keyframes sparkle {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 80px;
}

.nav-brand {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 80px;
}

.brand-logo {
    width: auto !important;
    height: auto !important;
    max-width: none !important;
    max-height: none !important;
    min-width: auto;
    min-height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
    flex-shrink: 0;
}

.brand-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* Brand logo - no size restrictions */

/* Pin the announcement button to the left inside the header brand area */
.header .nav-brand {
    position: relative;
}

/* MOVE TO RIGHT EDGE OF BRAND */
.header .nav-brand .announcement-btn {
    position: absolute;
    right: 0;          /* <-- add */
    left: auto;        /* <-- remove left pin */
    top: 50%;
    transform: translateY(-50%);
    padding: 0.6rem 0.9rem;
    min-width: 44px;
  }
  .header .nav-brand .brand-text {
    margin-left: 0;    /* reset */
    margin-right: 56px;/* space so text doesn’t overlap the button */
  }

.header .nav-brand .brand-text {
    display: flex;
    flex-direction: column;
    margin-left: 56px; /* prevent overlap with pinned button */
}

.nav-brand h1 {
    color: #00ffff;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.nav-brand .tagline {
    color: #ff4242;
    font-size: 0.9rem;
    display: block;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.auth-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.username {
    color: #00ffff;
    font-weight: 500;
}

.auth-buttons {
    display: flex;
    gap: 0.5rem;
}

.cart-btn {
    position: relative;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid #00ffff;
    color: #00ffff;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cart-count {
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Buttons */
.btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #00ffff, #0088ff);
    color: #000;
    border: 1px solid #00ffff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0088ff, #00ffff);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    padding: 3rem 0;
    min-height: calc(100vh - 100px);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 6rem 0 8rem 0;
    margin-bottom: 4rem;
    position: relative;
    min-height: 60vh;
    width: 100%;
}

.hero-content {
    text-align: left;
    max-width: 500px;
    z-index: 2;
    position: relative;
    margin-left: 2rem;
    flex-shrink: 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #00ffff, #0088ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.1;
    white-space: nowrap;
}

.highlight {
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.hero-description {
    font-size: 1.3rem;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.01em;
    opacity: 0.95;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #00ffff;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.product-image {
    position: relative;
    height: 288px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-status {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.product-status.undetected {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border: 1px solid #00ff00;
}

.product-status.detected {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
    border: 1px solid #ff0000;
}

.product-status.updating {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 1px solid #ffa500;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #00ffff;
    margin-bottom: 0.5rem;
}

.product-description {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00ffff;
    margin-bottom: 1rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.stock {
    color: #00ff00;
}

.warranty {
    color: #ffa500;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-actions .btn {
    flex: 1;
    padding: 0.7rem;
    font-size: 0.9rem;
    min-width: 100px;
}

/* Responsive adjustments for product actions */
@media (max-width: 768px) {
    .product-actions {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .product-actions .btn {
        flex: none;
        width: 100%;
    }
}

/* Payment Confirmation Styles */
.payment-confirmation-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-summary-box {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 150, 255, 0.05));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.1);
}

.order-summary-header {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.order-summary-header h4 {
    color: #00d4ff;
    font-size: 1.2rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-items {
    margin-bottom: 1rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
}

.order-item:last-child {
    border-bottom: none;
}

.order-total-section {
    background: rgba(0, 212, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.order-total-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.total-label {
    color: #ffffff;
}

.total-amount {
    color: #00d4ff;
    font-size: 1.3rem;
    font-weight: 700;
}

.payment-methods-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.payment-methods-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-process-section {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
}

.payment-process-box h4 {
    color: #ffc107;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-process-box p {
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

/* Enhanced Payment Actions */
.payment-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.purchase-now-btn {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.purchase-now-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #0099cc, #007399);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.purchase-now-btn:disabled {
    background: #666;
    cursor: not-allowed;
    opacity: 0.6;
}

.cancel-btn {
    background: transparent;
    border: 2px solid #666;
    color: #ccc;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-btn:hover {
    border-color: #999;
    color: #fff;
}

/* Responsive Payment Modal */
@media (max-width: 768px) {
    .payment-confirmation-container {
        gap: 1rem;
    }
    
    .order-summary-box,
    .payment-methods-section,
    .payment-process-section {
        padding: 1rem;
    }
    
    .payment-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .purchase-now-btn,
    .cancel-btn {
        width: 100%;
        justify-content: center;
    }
}

/* No Products */
.no-products {
    text-align: center;
    padding: 4rem 2rem;
    color: #888;
}

.no-products i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #444;
}

.no-products h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Discord Button */
.discord-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7289da, #5b6eae);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(114, 137, 218, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.discord-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 12px 40px rgba(114, 137, 218, 0.6);
}

.discord-btn i {
    color: white;
    font-size: 24px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    margin: 5% auto;
    padding: 0;
    border: 1px solid #00ffff;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.3);
}

.modal-header {
    background: rgba(0, 255, 255, 0.1);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: #00ffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.close:hover {
    color: #00ffff;
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Cart Styles */
.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
    color: #888;
}

.empty-cart i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #444;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.cart-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: bold;
    color: #00ffff;
    margin-bottom: 0.3rem;
}

.cart-item-price {
    color: #ccc;
    font-size: 0.9rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #00ffff;
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: rgba(0, 255, 255, 0.2);
}

.quantity-display {
    min-width: 30px;
    text-align: center;
    font-weight: bold;
    color: #fff;
}

.remove-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ff4444;
    background: rgba(255, 68, 68, 0.1);
    color: #ff4444;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: rgba(255, 68, 68, 0.2);
}

.cart-total {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00ffff;
}

.product-modal {
    max-width: 1500px;
}


.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.main-image-container {
    margin-bottom: 1rem;
}

.main-product-image {
    width: 105%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.preview-images {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
}

.preview-image {
    width: 90px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    border: 2px solid transparent;
}

.preview-image.active,
.preview-image:hover {
    opacity: 1;
    border-color: #00ffff;
}

.product-info-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.product-title {
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 0.8rem;
}

.product-features h4 {
    color: #00ffff;
    margin-bottom: 0.5rem;
}

.features-list {
    list-style: none;
    padding-left: 0;
}

.features-list li {
    padding: 0.3rem 0;
    color: #ccc;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff00;
    font-weight: bold;
}

.product-meta-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.meta-item {
    display: flex;
    justify-content: space-between;
}

.meta-label {
    color: #888;
}

.meta-value {
    color: #fff;
    font-weight: 500;
}

.status-undetected {
    color: #00ff00;
}

.status-detected {
    color: #ff0000;
}

.status-updating {
    color: #ffa500;
}

/* Payment Modal */
.payment-modal {
    max-width: 600px;
}

.order-summary {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.order-summary h4 {
    color: #00ffff;
    margin-bottom: 1rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-item:last-child {
    border-bottom: none;
}

.order-total {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.payment-methods h4 {
    color: #00ffff;
    margin-bottom: 1rem;
}

.payment-methods-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.payment-method {
    display: flex;
    align-items: center;
}


.payment-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.payment-info h4 {
    color: #fff;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.payment-info p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

.payment-process {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.payment-process h4 {
    color: #00ffff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.purchase-now-btn {
    background: #28a745; 
    color: #fff; 
    font-weight: bold; 
    padding: 12px 20px; 
    border-radius: 4px; 
    border: none; 
    font-size: 16px; 
    transition: background 0.3s ease, transform 0.2s ease; 
    cursor: pointer; 
}

.purchase-now-btn:hover {
    background: #218838; 
    transform: scale(1.05); 
}

.purchase-now-btn:disabled {
    background: #6c757d; 
    color: #aaa; 
    cursor: not-allowed; 
}


.cancel-btn {
    background: #f8f9fa; 
    color: #333; 
    border: 1px solid #ddd; 
    padding: 12px 20px; 
    border-radius: 4px; 
    font-weight: normal; 
    font-size: 16px; 
    transition: background 0.3s ease, transform 0.2s ease; 
    cursor: pointer; 
}

.cancel-btn:hover {
    background: #e2e6ea; 
    transform: scale(1.05); 
}

.cancel-btn:disabled {
    background: #d6d8db; 
    color: #aaa; 
    border: 1px solid #ccc; 
    cursor: not-allowed; 
}


/* Message Styles */
.message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 2000;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.message.success {
    background: linear-gradient(135deg, #00ff00, #00cc00);
    color: #000;
}

.message.error {
    background: linear-gradient(135deg, #ff4444, #cc0000);
}

.message.info {
    background: linear-gradient(135deg, #00ffff, #0088ff);
    color: #000;
}

/* Form Styles */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #00ffff;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.auth-switch {
    text-align: center;
    margin-top: 1rem;
    color: #ccc;
}

.auth-switch a {
    color: #00ffff;
    text-decoration: none;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        width: 100%;
        justify-content: space-between;
    }
    
    .hero {
        padding: 4rem 0 6rem 0;
        margin-bottom: 3rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 90%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-detail-container {
        grid-template-columns: 1fr;
    }
    
    .discord-btn,
    .chat-btn {
        width: 50px;
        height: 50px;
        bottom: 15px;
    }
    
    .discord-btn {
        left: 15px;
    }
    
    .discord-btn i,
    .chat-btn i {
        font-size: 20px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .payment-actions {
        flex-direction: column;
    }
    
    .auth-section {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .user-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 3rem 0 4rem 0;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 95%;
    }
    
    .product-card {
        margin: 0 10px;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}


