/* DOSE SMP STORE - FULL STYLESHEET */

body {
    /* FIXED BACKGROUND: Points to your uploaded 'bg.jpg' */
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), 
                url('/bg.jpg'); 
    
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    font-family: 'Inter', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the whole website */
}

/* NAVIGATION BAR */
.navbar {
    width: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #111;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #888;
    text-decoration: none;
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links a.active {
    color: #00ff88;
    border-bottom: 2px solid #00ff88;
    padding-bottom: 5px;
}

.nav-links a:hover {
    color: white;
}

/* CREDITS TOP LEFT */
.credits {
    font-size: 10px;
    font-weight: 900;
    color: #444;
    line-height: 1.4;
    text-transform: uppercase;
}

.credits span {
    color: #00ff88;
}

/* DISCORD LINK TOP RIGHT */
.discord-btn {
    color: #5865F2;
    font-weight: 900;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
}

/* STORE HEADER */
.store-header {
    text-align: center;
    padding: 80px 0 50px;
}

.store-header h1 {
    font-size: 60px;
    margin: 0;
    font-weight: 900;
    letter-spacing: 5px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.store-header p {
    color: #555;
    font-size: 16px;
    margin-top: 10px;
}

/* THE 2-COLUMN GRID (Khali nahi dikhega) */
.main-content {
    width: 90%;
    max-width: 1150px;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 BOXES PER ROW */
    gap: 30px;
    margin-bottom: 100px;
}

/* THE ITEM BOXES (CARDS) */
.item-card {
    background: rgba(12, 12, 12, 0.95);
    border: 1px solid #222;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    position: relative;
    min-height: 350px; /* Makes boxes same height */
}

.item-card:hover {
    transform: translateY(-12px);
    border-color: #00ff88;
    background: rgba(18, 18, 18, 1);
}

.item-info h2 {
    font-size: 28px;
    margin: 0;
    font-weight: 900;
    text-transform: uppercase;
}

.item-price {
    font-size: 40px;
    font-weight: 900;
    color: #00ff88;
    margin: 15px 0;
}

.perks-list {
    list-style: none;
    padding: 0;
    color: #999;
    line-height: 1.8;
    font-size: 15px;
    margin: 20px 0;
    text-align: left;
}

/* BUY BUTTON */
.buy-btn {
    background: #00ff88;
    color: black;
    border: none;
    padding: 18px 0;
    font-weight: 900;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    width: 100%;
    transition: 0.3s;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

.buy-btn:hover {
    background: #ffffff;
    transform: scale(1.02);
}

/* BADGES (Limited, Hot Deal, etc.) */
.tag-badge {
    position: absolute;
    top: 20px;
    right: 25px;
    background: #fbbf24;
    color: black;
    font-size: 10px;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 900;
    text-transform: uppercase;
}

/* MOBILE FIX: Change to 1 row on phones */
@media (max-width: 900px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    
    .store-header h1 {
        font-size: 40px;
    }
}

/* FOOTER */
footer {
    width: 100%;
    padding: 80px 0;
    text-align: center;
    color: #333;
    font-size: 12px;
    border-top: 1px solid #111;
    background: rgba(0,0,0,0.3);
}