/* =========================
   FONTS
========================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;600;700&display=swap');

body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(145deg, #000000, #181818, #2b2b2b);
    color: white;
    font-family: 'DM Sans', sans-serif;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}
.gray {
    color: rgba(218, 218, 218, 0.6);
}
.gray2 {
    color: rgba(169, 169, 169, 0.8);
}
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0d0d0d;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #3a3a3a, #6a6a6a);
    border-radius: 10px;
    border: 2px solid #0d0d0d;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #5a5a5a, #ffffff);
}

html {
    scrollbar-width: thin;
    scrollbar-color: #5a5a5a #0d0d0d;
}

.topbar {
    position: relative;
    display: flex;
    align-items: center;
    height: 70px;
    padding: 20px 30px;
    padding-top: 75px;
}

.shacklogo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.shacklogo:hover {
    transform: scale(1.08);
}

.buttons {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}
.explorebutton, .supportbutton {
    display:flex;
    align-items:center;
    justify-content:center;

    background: white;
    width: 115px;
    height: 60px;
    border-radius: 22px;
    border: none;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s;
    transition-behavior: 0.2s;
    padding: 15px 25px;
    text-decoration: none;
}
.explorebutton:hover, .supportbutton:hover {
    background: #000000;
    color: white;
    border: 1px solid white;
}
.sidebuttons {
    margin-left: auto;
    display: flex;
    gap: 15px;
}

.homebutton,
.softwarebutton,
.minecraftbutton,
.teambutton,
.ticketbutton {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 250;
    cursor: pointer;
    transition: 0.4s;
}

.homebutton:hover,
.softwarebutton:hover,
.minecraftbutton:hover,
.teambutton:hover,
.ticketbutton:hover {
  transform: translateY(-5px);
  text-decoration: under
  line;
  cursor: pointer;
}


.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 120px auto;
    gap: 60px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 0;
}

.hero-text {
    font-size: 18px;
    opacity: 0.75;
    max-width: 500px;
}

.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 15px;
}

.hero-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-box {
    padding: 20px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}
.info-box:hover {
    background: rgba(219, 219, 219, 0.05);
    transform: translateY(-2px);
}
.info-number {
    font-size: 26px;
    font-weight: 800;
}

.info-label {
    font-size: 14px;
    opacity: 0.6;
}

.purpose-section {
    width: 90%;
    max-width: 1200px;
    margin: 120px auto;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    background: rgba(0,0,0,0.3);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
}

.purpose-title {
    font-size: 32px;
    font-weight: 700;
}

.purpose-text {
    opacity: 0.7;
    line-height: 1.6;
}

.purpose-tags span {
    display: inline-block;
    margin-right: 8px;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    font-size: 12px;
    transition: 0.4s;
}

.purpose-tags span:hover {
    background: rgba(255,255,255,0.1);
    cursor: pointer;
}
.purpose-box {
    padding: 20px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}
.purpose-box:hover {
    transform: translateY(-2px);
}
.features {
    display: flex;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: 90px auto;
    padding: 50px;
}

.feature-card {
    width: 300px;
    padding: 25px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.statistics {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 60px;
}

.stat {
    text-align: center;
}

.footer {
    display: flex;
    justify-content: space-between;
    padding: 50px;
    background: #222;
    margin-top: 120px;
}

.footer-link,
.documentation {
    display: block;
    color: white;
    text-decoration: none;
    margin-top: 10px;
}
.discordicon, .youtubeicon {
    width: 40x;
    height: 40px;
    transition: filter 0.3s ease;
}
* {
    box-sizing: border-box;
}