/* ---------------------------------------------------
   GLOBAL RESET
--------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #0d0d0d;
    color: white;
}

/* ---------------------------------------------------
   HEADER
--------------------------------------------------- */
header {
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    position: fixed;
    top: 0;
    z-index: 999;
    border-bottom: 2px solid #4de8ff22;
}

.logo {
    font-size: 26px;
    font-weight: 600;
    color: #4de8ff;
    letter-spacing: 1px;
}

nav a {
    text-decoration: none;
    color: white;
    margin-left: 25px;
    font-weight: 400;
    transition: 0.3s;
}

nav a:hover {
    color: #4de8ff;
}

/* ---------------------------------------------------
   HERO SECTION
--------------------------------------------------- */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;

    background: url('https://wallpapercave.com/wp/wp9104354.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    color: white;
}

.hero h1 {
    font-size: 54px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px black;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    text-shadow: 0 0 6px black;
}

/* HERO BUTTONS */
.buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn {
    background: #4de8ff;
    padding: 10px 25px;
    color: black;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 0 10px #4de8ff55;
}

.btn:hover {
    opacity: 0.8;
    box-shadow: 0 0 13px #4de8ffaa;
}

/* IP BOX */
.ip-box {
    padding: 10px 20px;
    background: #222;
    border: 1px solid #4de8ff;
    border-radius: 8px;
    cursor: pointer;
    color: #4de8ff;
    font-weight: 600;
    transition: 0.2s;
}

.ip-box:hover {
    background: #333;
}

.hidden {
    display: none;
}

/* ---------------------------------------------------
   GLOBAL SECTION FORMAT
--------------------------------------------------- */
section {
    padding: 80px 40px;
    text-align: center;
}

section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #4de8ff;
}

section p {
    font-size: 16px;
    opacity: 0.9;
}

/* ---------------------------------------------------
   ABOUT
--------------------------------------------------- */
.about p {
    max-width: 800px;
    margin: 10px auto;
}

/* ---------------------------------------------------
   SMP MODES
--------------------------------------------------- */
.modes {
    padding-top: 40px;
}

.mode {
    background: #111;
    margin: 30px auto;
    padding: 25px;
    max-width: 900px;
    border-radius: 10px;
    border-left: 4px solid #4de8ff;
    box-shadow: 0 0 10px #4de8ff22;
    transition: 0.3s;
}

.mode:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px #4de8ff55;
}

.mode-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* ---------------------------------------------------
   JOIN SECTION
--------------------------------------------------- */
.join ul {
    list-style: none;
    margin-top: 20px;
}

.join li {
    margin: 8px 0;
    font-size: 18px;
}

/* ---------------------------------------------------
   MARKET PAGE
--------------------------------------------------- */
.market-container {
    max-width: 900px;
    margin: auto;
}

.product {
    background: #111;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    border-left: 4px solid #4de8ff;
    margin-bottom: 25px;
    box-shadow: 0 0 10px #4de8ff22;
}

.product img {
    width: 220px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product .buy-btn {
    background: #4de8ff;
    padding: 10px 20px;
    color: #000;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

/* ---------------------------------------------------
   SUPPORT PAGE
--------------------------------------------------- */
.support-box {
    background: #111;
    padding: 25px;
    max-width: 700px;
    margin: auto;
    border-radius: 10px;
    border-left: 4px solid #4de8ff;
}

.discord-btn {
    background: #5865F2;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

/* ---------------------------------------------------
   FOOTER
--------------------------------------------------- */
footer {
    background: #111;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    border-top: 2px solid #4de8ff22;
}
