/* EliteGames Custom Cyberpunk Theme - FINAL VERSION */

:root {
    --primary-cyan: #00D9FF;
    --primary-blue: #0066FF;
    --primary-purple: #9D00FF;
    --dark-bg: #0a0e27;
    --card-bg: #1a1f3a;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --glow-cyan: 0 0 20px rgba(0, 217, 255, 0.5);
    --glow-purple: 0 0 20px rgba(157, 0, 255, 0.5);
}

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

body {
    background: #0a0e27;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-primary);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* DYNAMIC GALAXY BACKGROUND */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(0, 217, 255, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(157, 0, 255, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: galaxyMove 15s ease-in-out infinite;
}

@keyframes galaxyMove {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% { 
        transform: translate(50px, -30px) scale(1.1);
        opacity: 1;
    }
    66% { 
        transform: translate(-30px, 50px) scale(0.95);
        opacity: 0.8;
    }
}

/* ANIMATED STARS - More visible and dynamic */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 300%;
    height: 300%;
    background-image: 
        /* Large bright stars */
        radial-gradient(circle, rgba(255, 255, 255, 1) 2px, transparent 2px),
        radial-gradient(circle, rgba(0, 217, 255, 0.9) 2px, transparent 2px),
        radial-gradient(circle, rgba(157, 0, 255, 0.8) 1.5px, transparent 1.5px),
        /* Medium stars */
        radial-gradient(circle, rgba(255, 255, 255, 0.8) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(0, 217, 255, 0.7) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.6) 1px, transparent 1px),
        /* Small stars - cosmic dust */
        radial-gradient(circle, rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        radial-gradient(circle, rgba(0, 217, 255, 0.4) 1px, transparent 1px),
        radial-gradient(circle, rgba(157, 0, 255, 0.3) 1px, transparent 1px);
    background-size: 
        550px 550px,
        450px 450px, 
        500px 500px,
        350px 350px,
        400px 400px,
        300px 300px,
        250px 250px,
        280px 280px,
        320px 320px;
    background-position: 
        0 0,
        40px 60px, 
        130px 270px,
        70px 100px,
        250px 150px,
        150px 200px,
        50px 120px,
        180px 80px,
        220px 240px;
    pointer-events: none;
    z-index: 0;
    animation: starsFloat 200s linear infinite;
    opacity: 0.9;
}

@keyframes starsFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-33.33%, -33.33%); }
}

/* Landing Page Styles */
.landing-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.logo-container {
    position: relative;
    margin-bottom: 30px;
}

.landing-logo {
    width: 180px;
    height: 180px;
    animation: floatLogo 4s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(0, 217, 255, 0.6));
    position: relative;
    z-index: 2;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.3), transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(8deg); }
}

@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

.landing-title {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 8px;
    animation: slideInDown 1s ease-out, titleGlow 3s ease-in-out infinite;
}

@keyframes slideInDown {
    0% { opacity: 0; transform: translateY(-50px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.6)); }
    50% { filter: drop-shadow(0 0 30px rgba(157, 0, 255, 1)); }
}

.landing-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    letter-spacing: 3px;
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Feature Cards */
.features-container {
    display: flex;
    gap: 25px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.feature-card {
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    padding: 25px 20px;
    min-width: 180px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out backwards;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
    background: rgba(26, 31, 58, 0.9);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.feature-card h3 {
    color: var(--primary-cyan);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: bold;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Floating Weapons - REMOVED, replaced with particles */

/* GALAXY PARTICLES - Animated floating orbs */
.landing-page::before,
.landing-page::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
}

.landing-page::before {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -100px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.3), transparent);
    animation: particleFloat1 20s ease-in-out infinite;
}

.landing-page::after {
    width: 350px;
    height: 350px;
    bottom: 10%;
    right: -80px;
    background: radial-gradient(circle, rgba(157, 0, 255, 0.3), transparent);
    animation: particleFloat2 25s ease-in-out infinite;
}

@keyframes particleFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, -50px) scale(1.2); }
    66% { transform: translate(-50px, 100px) scale(0.9); }
}

@keyframes particleFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-80px, 60px) scale(0.9); }
    66% { transform: translate(60px, -80px) scale(1.15); }
}

/* Stats Bar */
.stats-bar {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    padding: 25px 45px;
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    animation: fadeInUp 1.5s ease-out 1s backwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: 2.3rem;
    font-weight: bold;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Steam Login Button */
.steam-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 217, 255, 0.4);
    transition: all 0.3s ease;
    animation: fadeInUp 1.2s ease-out 0.8s backwards;
}

.steam-login-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.steam-login-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 35px rgba(0, 217, 255, 0.7), 0 0 50px rgba(157, 0, 255, 0.4);
}

.steam-login-btn img {
    width: 28px;
    height: 28px;
}

/* Header - OPTIMIZED WITH LARGE LOGO */
.header {
    background: rgba(26, 31, 58, 0.95);
    backdrop-filter: blur(15px);
    padding: 8px 35px 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(0, 217, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.6);
    gap: 30px;
    position: relative;
    overflow: visible;
    height: 95px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    position: relative;
    height: 100%;
}

.header-logo {
    height: 160px;
    width: auto;
    filter: drop-shadow(0 5px 30px rgba(0, 217, 255, 0.9));
    position: relative;
    top: 35px;
    transition: all 0.4s ease;
    z-index: 110;
}

.header-logo:hover {
    filter: drop-shadow(0 8px 40px rgba(157, 0, 255, 1));
    transform: scale(1.05);
}

.header-title {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    animation: titleFloat 2.5s ease-in-out infinite;
    margin: 0;
}

.header-subtitle {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    animation: titleFloat 2.5s ease-in-out infinite 0.3s;
    margin: 0 20px 0 0;
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

/* Remove old text styles */
.header-text {
    display: none;
}


.header-center {
    flex: 1;
    max-width: 500px;
    margin: 0 20px;
}

.search-container {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-cyan);
    pointer-events: none;
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 25px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: var(--text-secondary);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
    background: rgba(0, 0, 0, 0.6);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.stats-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px 16px;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stats-badge:hover {
    background: rgba(0, 217, 255, 0.2);
    border-color: var(--primary-cyan);
    transform: translateY(-2px);
}

.badge-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-cyan);
    line-height: 1;
}

.badge-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logout-btn {
    padding: 10px 25px;
    font-size: 0.95rem;
    font-weight: bold;
    color: var(--text-primary);
    background: linear-gradient(135deg, #ff0066, #ff6600);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 0, 102, 0.4);
}

.logout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 0, 102, 0.7);
}

/* Main Content - COMPACT */
.main-content {
    padding: 25px 30px;
    max-width: 1800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Weapon Cards Grid - COMPACT */
.weapons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Weapon Card - COMPACT */
.weapon-card {
    background: rgba(26, 31, 58, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.weapon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(157, 0, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.weapon-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-cyan);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.4), 0 0 40px rgba(157, 0, 255, 0.2);
}

.weapon-card:hover::before {
    opacity: 1;
}

.card-header {
    padding: 15px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.15), rgba(157, 0, 255, 0.15));
    border-bottom: 1px solid rgba(0, 217, 255, 0.3);
}

.weapon-type {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.weapon-name {
    font-size: 1.05rem;
    font-weight: bold;
    color: var(--primary-cyan);
    margin: 0;
    transition: opacity 0.3s ease;
}

.card-body {
    padding: 15px;
    text-align: center;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skin-image {
    width: 100%;
    max-width: 180px;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
    transition: all 0.4s ease;
    cursor: pointer;
}

/* LOADING ONLY ON IMAGE */
.skin-image.loading-image {
    opacity: 0.3;
    transform: scale(0.9);
    filter: blur(5px) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
    cursor: wait;
}

.weapon-card:hover .skin-image:not(.loading-image) {
    transform: scale(1.08);
    filter: drop-shadow(0 8px 20px rgba(0, 217, 255, 0.4));
}

/* Preview Modal */
.preview-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 3000;
    cursor: pointer;
}

.preview-modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(26, 31, 58, 0.98);
    backdrop-filter: blur(20px);
    border: 3px solid rgba(0, 217, 255, 0.5);
    border-radius: 25px;
    padding: 50px;
    max-width: 90vw;
    max-height: 90vh;
    animation: modalZoom 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.4);
    cursor: default;
}

@keyframes modalZoom {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

.preview-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 0, 102, 0.2);
    border: 2px solid rgba(255, 0, 102, 0.5);
    border-radius: 50%;
    color: #ff0066;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.preview-close:hover {
    background: rgba(255, 0, 102, 0.4);
    transform: rotate(90deg);
    box-shadow: 0 0 20px rgba(255, 0, 102, 0.6);
}

.preview-title {
    color: var(--primary-cyan);
    font-size: 2rem;
    margin-bottom: 35px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

.preview-image {
    max-width: 700px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 15px 40px rgba(0, 217, 255, 0.5));
    animation: imageFloat 3s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card-footer {
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
}

/* Select Dropdown */
.form-control,
.form-select {
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
}

.form-control option,
.form-select option {
    background: var(--card-bg);
    color: var(--text-primary);
}

/* Settings Button */
.btn-primary {
    width: 100%;
    padding: 10px;
    font-size: 0.95rem;
    font-weight: bold;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.6), 0 0 35px rgba(157, 0, 255, 0.3);
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 90px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(26, 31, 58, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-cyan);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 217, 255, 0.4);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.toast.show {
    transform: translateX(0);
}

.toast.toast-error {
    border-color: #ff0066;
    box-shadow: 0 5px 25px rgba(255, 0, 102, 0.4);
}

.toast-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: bold;
}

.toast.toast-error .toast-icon {
    background: linear-gradient(135deg, #ff0066, #ff6600);
}

.toast-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.toast-title {
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary-cyan);
}

.toast.toast-error .toast-title {
    color: #ff0066;
}

.toast-message {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Modal */
.modal {
    z-index: 2000 !important;
}

.modal-backdrop {
    z-index: 1050 !important;
    pointer-events: none !important;
}

.modal-backdrop.show {
    z-index: 1050 !important;
    pointer-events: none !important;
}

.modal-dialog {
    z-index: 1055 !important;
    pointer-events: auto !important;
}

.modal-content {
    background: var(--card-bg);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1055;
    pointer-events: auto !important;
}

.modal-body,
.modal-header,
.modal-footer {
    pointer-events: auto !important;
}

.modal-body input,
.modal-body select,
.modal-body button {
    pointer-events: auto !important;
    position: relative;
    z-index: 1056;
}

.modal-header {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(157, 0, 255, 0.2));
    border-bottom: 1px solid rgba(0, 217, 255, 0.3);
    padding: 20px;
    border-radius: 20px 20px 0 0;
}

.modal-title {
    color: var(--primary-cyan);
    font-weight: bold;
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(0, 217, 255, 0.3);
    padding: 15px;
    border-radius: 0 0 20px 20px;
}

.btn-secondary {
    padding: 10px 20px;
    font-weight: bold;
    background: rgba(160, 174, 192, 0.3);
    border: 1px solid rgba(160, 174, 192, 0.5);
    border-radius: 10px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(160, 174, 192, 0.5);
    transform: translateY(-2px);
}

.btn-danger {
    padding: 10px 20px;
    font-weight: bold;
    background: linear-gradient(135deg, #ff0066, #ff6600);
    border: none;
    border-radius: 10px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 0, 102, 0.3);
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 0, 102, 0.6);
}

/* Form Labels */
label {
    color: var(--primary-cyan);
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
}

/* Special Knife Card */
.knife-card {
    border-color: rgba(157, 0, 255, 0.4);
}

.knife-card:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 8px 25px rgba(157, 0, 255, 0.5);
}

.knife-card .card-header {
    background: linear-gradient(135deg, rgba(157, 0, 255, 0.25), rgba(0, 102, 255, 0.25));
}

/* Responsive Design */
@media (max-width: 1200px) {
    .weapons-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .landing-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .landing-subtitle {
        font-size: 1.1rem;
    }
    
    .header {
        flex-wrap: wrap;
        padding: 12px 20px;
    }
    
    .header-center {
        order: 3;
        width: 100%;
        margin: 10px 0 0 0;
        max-width: 100%;
    }
    
    .weapons-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }
    
    .stats-bar {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .toast {
        right: 10px;
        left: 10px;
        top: 80px;
    }
}