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

body {
    font-family: Arial, sans-serif;
    background-color: #111827;
    color: #f3f4f6;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    background-color: #0f172a;
    padding: 20px 0;
    border-bottom: 2px solid #2563eb;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    color: #60a5fa;
}

nav a {
    color: #f3f4f6;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #60a5fa;
}

.shop-button,
.main-button {
    background-color: #2563eb;
    padding: 10px 18px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.shop-button:hover,
.main-button:hover {
    background-color: #1d4ed8;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    max-width: 700px;
    margin: auto;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.wiki-section {
    padding: 60px 20px;
}

.wiki-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #60a5fa;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background-color: #1e293b;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #334155;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: white
}

.card:hover {
    transform: translateY(-5px);
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #0f172a;
    border-top: 2px solid #2563eb;
    margin-top: 40px;
}

.player-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.player-head {
    width: 64px;
    height: 64px;
    border-radius: 6px;
}

.player-name {
    font-size: 24px;
    margin-bottom: 0;
}

h3, pre {
    margin-top: 0;
    margin-bottom: 0;
}

.player {
  display: flex;
  align-items: flex-start; /* Aligns children to the top */
}

.bullet1 {
  padding-left: 50px;
}

a:visited {
    text-decoration: none;
    color: #FFFFFF
}
a {
    text-decoration: none;
}
.section-card, .section-card:visited, .section-card:hover, .section-card:focus, .section-card:active {
    text-decoration: none;
    color:#FFFFFF;
}

nav select {
    padding: 10px 15px;
    border-radius: 8px;
    border: none;
    background: #222;
    color: white;
    cursor: pointer;
    font-size: 16px;
}