:root {
    --primary: #22c55e;
    --primary-glow: rgba(34, 197, 94, 0.4);
    --primary-hover: #4ade80;
    --bg-dark: #050507;
    --bg-card: #0d0d0f;
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --glass: rgba(13, 13, 15, 0.8);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    cursor: none; /* Custom cursor will be added via JS */
}

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

/* Custom Crosshair Cursor */
.cursor-dot {
    width: 4px;
    height: 4px;
    background-color: var(--primary);
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}

.cursor-outline {
    width: 30px;
    height: 30px;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, opacity 0.3s;
}

/* Crosshair Lines */
.cursor-outline::before, .cursor-outline::after {
    content: '';
    position: absolute;
    background-color: var(--primary);
    box-shadow: 0 0 5px var(--primary);
}

/* Horizontal line */
.cursor-outline::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

/* Vertical line */
.cursor-outline::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

/* Gap in the middle of the crosshair */
.cursor-outline {
    mask: radial-gradient(circle, transparent 4px, black 5px);
    -webkit-mask: radial-gradient(circle, transparent 4px, black 5px);
}

/* Premium Background Glow */
.bg-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at var(--x) var(--y), rgba(34, 197, 94, 0.15) 0%, transparent 50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), 
                url('../img/hero.png') center/cover no-repeat;
    filter: hue-rotate(-150deg) saturate(1.5);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    z-index: 10;
    background: var(--glass);
    padding: 4rem;
    border-radius: 40px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-inline: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1.1rem;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(9, 9, 11, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

/* Features Section */
.features {
    padding: 100px 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(24, 24, 27, 1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-gray);
}

/* How It Works Section */
.how-it-works {
    padding: 100px 5%;
    background: rgba(34, 197, 94, 0.02);
}

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

.step-card {
    position: relative;
    padding: 3rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    text-align: center;
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: black;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 0 20px var(--primary-glow);
    z-index: 5;
}

.step-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.step-card p {
    color: var(--text-gray);
    line-height: 1.6;
}


/* Trust Bar */
.trust-bar {
    background: rgba(9, 9, 11, 0.5);
    padding: 2rem 5%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.trust-label {
    color: var(--text-gray);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
/* Live Trades Section */
.live-trades {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-gray);
}

.trade-ticker {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.trade-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
}

.trade-card:hover {
    border-color: var(--primary);
    transform: scale(1.02);
}

.skin-img {
    width: 60px;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.2));
}

.trade-info {
    flex-grow: 1;
}

.skin-name {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
}

.trade-price {
    display: block;
    color: var(--primary);
    font-weight: 800;
}

.trade-status {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 900;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

/* Animations */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.btn-primary {
    animation: pulse 2s infinite;
}

/* Footer Section */
footer {
    padding: 80px 5% 40px;
    background: #000;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    margin-bottom: 40px;
}

.footer-logo {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    display: block;
}

.payments {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    opacity: 0.5;
    font-size: 1.5rem;
}

.copyright {
    color: #475569;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Animation Helpers */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glass Card Refinement */
.feature-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

/* Inventory Section Mockup */
.inventory-section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.inventory-login-placeholder {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    transition: var(--transition);
}

.inventory-login-placeholder h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.inventory-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
}

@media (max-width: 900px) {
    .inventory-container {
        grid-template-columns: 1fr;
    }
}

.inventory-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.search-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    outline: none;
    transition: var(--transition);
}
.search-input:focus {
    border-color: var(--primary);
}

.skin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.skin-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
}

.skin-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.skin-item.selected {
    border-color: var(--primary);
    background: rgba(34, 197, 94, 0.1);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

.skin-price {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: black;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 8px;
    z-index: 2;
}

.skin-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 1rem 0;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
    transition: var(--transition);
}

.skin-item.selected img {
    transform: scale(1.1);
}

.skin-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.skin-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.skin-wear {
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* Basket */
.inventory-basket {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.inventory-basket h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.basket-items {
    flex-grow: 1;
    overflow-y: auto;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.basket-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

.basket-item-name {
    color: var(--text-white);
    font-weight: 500;
}

.basket-item-price {
    font-weight: 800;
    color: var(--primary);
}

.empty-text {
    color: var(--text-gray);
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
}

.basket-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.w-100 {
    width: 100%;
    text-align: center;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--text-gray);
    box-shadow: none;
    transform: none;
    animation: none;
}
/* Contact Section */
.contact-section {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(24, 24, 27, 1);
}

.contact-avatar {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.contact-avatar img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary);
    box-shadow: 0 0 30px var(--primary-glow);
    aspect-ratio: 1 / 1;
}


.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    width: 100%;
    max-width: 200px;
}

.contact-method:hover {
    color: var(--primary);
    background: rgba(34, 197, 94, 0.1);
}

.general-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem;
    background: rgba(34, 197, 94, 0.05);
    border-radius: 24px;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.gen-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.gen-item i {
    color: var(--primary);
}

.gen-item h4 {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.gen-item a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.gen-item a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 5%;
    }
    
    .general-contact {
        padding: 2rem;
    }
}

@ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {   . h o w - i t - w o r k s   {   p a d d i n g :   6 0 p x   5 % ;   }   . s t e p s - g r i d   {   g a p :   2 r e m ;   }   }  
 