/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #333;
    color: white;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

nav a:hover {
    background-color: #444;
    border-radius: 4px;
}

.nav-left {
    display: flex;
    gap: 1rem;
}

.nav-center {
    font-weight: bold;
}

.nav-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-container {
background-color: #1f1ffa;
text-align: center;
font-family: Arial;
font-size: 14px;
font-style: normal;
font-weight: bold;
text-decoration: blink;
text-transform: uppercase;
color: #000000;
background-color: #ffffff;
}


/* User Stats */
.user-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-card {
    background-color: #f5f5f5;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Card and Image Display */
.card {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.image-display {
    text-align: center;
}

.image-display img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Flash Messages */
.flash {
    padding: 1rem;
    margin: 1rem 0;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    text-align: center;
}

/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    background: url(/static/Background.png) center center/cover no-repeat;
    background-size: cover;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

/* Battle Pass Styles */
.battlepass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.battlepass-item {
    text-align: center;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
    background-color: white;
}

.battlepass-image {
    max-width: 100%;
    height: auto;
}

.unlock-button {
    width: 100%;
    padding: 10px;
} 

h1{
  color: rgb(0, 0, 0);
  text-align: center;
}

