:root {
    --primary: #ff7300;
    --secondary: #ffa928;
    --dark: #1c1b22;
    --navy: #212132;
    --text-light: #fff;
    --text-dark: #1a1a1a;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    background: var(--dark);
    color: var(--text-light);
    font-family: 'Segoe UI', Arial, sans-serif;

    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
}

.discord-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ff7300;
}

.discord-link::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,115,0,0.4), transparent 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.discord-link:hover::before {
    opacity: 1;
}

footer {
    text-align: center;
    padding: 1.5rem 0;
}

footer a {
    margin-top: 0.6rem;
    display: inline-block;
	
}

.shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6em;

    margin: 0 auto;
    padding: 0.9em 2.2em;

    border-radius: 999px;
    background: linear-gradient(135deg, #ff7300, #ff9d2a);
    color: #fff;
    font-weight: bold;
    font-size: 1.05em;
    text-decoration: none;

    box-shadow: 0 0 20px rgba(255,115,0,0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255,115,0,0.7);
}

.vote-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;

    padding: 0.8em 2em;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff7300, #ff9d2a);
    color: #fff;
    font-weight: bold;
    font-size: 1.05em;
    text-decoration: none;

    box-shadow: 0 0 18px rgba(255,115,0,0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 28px rgba(255,115,0,0.6);
}

.hero-actions .vote-btn {
    background: transparent;
    border: 2px solid #ff7300;
    color: #ff7300;
}

.hero-actions .vote-btn:hover {
    background: #ff7300;
    color: #fff;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    letter-spacing: -1px;
}

.hero-accent {
    background: linear-gradient(90deg, #ff7300, #ff9d2a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #bbb;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.hero-btn-outline-light {
    border: 2px solid rgba(255,255,255,0.25);
    color: #fff;
    background: transparent;
}

.hero-btn-outline-light:hover {
    border-color: #ff7300;
    color: #ff7300;
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,115,0,0.08);
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(255,115,0,0.2);
    font-weight: 600;
    margin-bottom: 2rem;
}

.nav-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,115,0,0.06);
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255,115,0,0.15);
    font-weight: 600;
    margin-left: 1.5rem;
}

.nav-stats:hover {
    border-color: rgba(255,115,0,0.4);
    box-shadow: 0 0 12px rgba(255,115,0,0.25);
}

.nav-dot {
    width: 6px;
    height: 6px;
    background: #2cff2c;
    border-radius: 50%;
    box-shadow: 0 0 6px #2cff2c;
}

.nav-count {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 700;
}

.nav-label {
    font-size: 0.7rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.online-dot {
    width: 10px;
    height: 10px;
    background: #2cff2c;
    border-radius: 50%;
    box-shadow: 0 0 10px #2cff2c;
    animation: pulse 1.8s infinite;
}

.online-count {
    color: #fff;
    font-size: 1.1rem;
}

.online-text {
    color: #aaa;
    font-size: 0.9rem;
}

@keyframes pulse {
    0% { box-shadow: 0 0 6px #2cff2c; }
    50% { box-shadow: 0 0 18px #2cff2c; }
    100% { box-shadow: 0 0 6px #2cff2c; }
}

.nav {
    background: linear-gradient(180deg, #1c1b22 0%, #181820 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    height: 72px;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,115,0,0.1);
    backdrop-filter: blur(10px);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.nav-logo img {
    height: 48px;
    width: 48px;
    border-radius: 10px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-links a {
    color: #bbb;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a.active {
    color: #ff7300;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #ff7300;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 20px rgba(255,115,0,0.2); }
    50% { box-shadow: 0 0 40px rgba(255,115,0,0.4); }
    100% { box-shadow: 0 0 20px rgba(255,115,0,0.2); }
}

.hero {
    background: url("https://controlbro.com/Images/mcwebsite.png") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
}

.section-divider {
    height: 120px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(255,115,0,0.05),
        transparent
    );
}

.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,115,0,0.25) 0%, rgba(255,115,0,0.08) 35%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #191922c8 0%, #0008 100%);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    position: relative;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--text-light);
    margin: 0 0 1.2rem 0;
    line-height: 1.1;
    text-shadow: 0 2px 8px #000b;
}

.hero h2 {
    font-size: 1.3rem;
    color: #ffe;
    margin: 0 0 2rem 0;
    font-weight: 500;
    text-shadow: 0 2px 8px #000b;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;

    padding: 0.8rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;

    transition: all 0.25s ease;
}

/* Primary (Shop) */
.hero-btn-primary {
    background: linear-gradient(135deg, #ff7300, #ff9d2a);
    color: #fff;
    box-shadow: 0 0 20px rgba(255,115,0,0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255,115,0,0.6);
}

/* Outline (Vote) */
.hero-btn-outline {
    border: 2px solid #ff7300;
    color: #ff7300;
    background: transparent;
}

.hero-btn-outline:hover {
    background: #ff7300;
    color: #fff;
}

/* Ghost (Features) */
.hero-btn-ghost {
    background: rgba(255,255,255,0.05);
    color: #fff;
}

.hero-btn-ghost:hover {
    background: rgba(255,255,255,0.12);
}

🔥 Replace your .server-ip with this:
.server-ip {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: #fff4;
    padding: 0 1.1rem;        /* remove vertical padding */
    height: 60px;             /* control height here */
    border-radius: 20px;
    color: var(--text-light);
    font-weight: bold;
    margin-top: 1rem;
    font-size: 1.15rem;
	animation: pulseGlow 6s infinite ease-in-out;
}

.server-ip code {
    background: #fff8;
    border-radius: 8px;
    padding: 0.15em 0.5em;
    font-size: 1em;
    font-family: 'Consolas', monospace;
    color: var(--primary);
    margin-right: 0.7em;
		animation: pulseGlow 6s infinite ease-in-out;
}

.server-ip button {
    height: 42px;            /* slightly smaller than container */
    padding: 0 1.6em;        /* horizontal only */
    border-radius: 999px;    /* perfect pill */
    font-size: 0.95em;
    display: flex;
    align-items: center;
    justify-content: center;
		animation: pulseGlow 6s infinite ease-in-out;
}

.server-ip button:hover {
    background: #fc8400;
}

.ipbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: rgba(30, 30, 40, 0.88);
    border-radius: 2em;
    padding: 0.7em 1.2em 0.7em 1.5em;
    box-shadow: 0 2px 24px 0 #0005;
    max-width: 520px;
    margin: 0 auto 2.5em auto;
    gap: 1em;
    backdrop-filter: blur(6px);
		animation: pulseGlow 6s infinite ease-in-out;
}

.ip-label {
    color: #fff;
    font-size: 1.12em;
    font-weight: bold;
    letter-spacing: 0.01em;
    margin-right: 0.5em;
}

.ip-address {
    background: #262b38;
    color: #ff7300;
    font-family: 'Consolas', monospace;
    font-size: 1.06em;
    font-weight: 600;
    border-radius: 0.8em;
    padding: 0.25em 0.9em;
    margin-right: 1.1em;
    border: 1.5px solid #38394d;
    letter-spacing: 0.03em;
    box-shadow: 0 1px 4px #0002;
    transition: background .18s, color .18s;
}

.copy-btn {
    background: #ff7300;
    color: #fff;
    border: none;
    border-radius: 1.5em;
    font-weight: bold;
    font-size: 1.12em;
    padding: 0.4em 1.5em;
    cursor: pointer;
    box-shadow: 0 1px 8px #0003;
    transition: background .18s;
	box-shadow: 0 0 12px rgba(255,115,0,0.4);

}

.copy-btn:hover {
    background: #ff881a;
}

.features-section {
    background: linear-gradient(
        180deg,
        #1c1b22 0%,
        #181820 60%,
        #15151b 100%
    );
    padding: 5rem 1rem;	
}

.features-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, #ff7300, #ff9d2a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, minmax(260px, 320px));
    gap: 3rem;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto 4rem auto;
    margin-bottom: 5rem;
}

.feature-card {
    background: linear-gradient(145deg, #1b1b24, #17171f);
    border-radius: 22px;
    padding: 2.2rem 1.4rem;
    min-width: 260px;
    max-width: 320px;
    flex: 1 1 260px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    border: 1px solid rgba(255,115,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(255,115,0,0.25);
    border: 1px solid rgba(255,115,0,0.25);
}

.feature-card .icon {
    margin-bottom: 0.7em;
}

.feature-card h3 {
    font-size: 1.15rem;
    color: var(--secondary);
    margin-bottom: 0.7em;
    font-weight: 700;
}

.feature-card p {
    font-size: 1.01rem;
    color: #bbb;
    margin: 0;
}

.staff-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 260px));
    gap: 3rem;
    justify-content: center;
    margin-top: 3rem;
}

.link-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 320px));
    gap: 2.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.link-card {
    background: linear-gradient(145deg, #23232b, #1a1a22);
    border-radius: 22px;
    padding: 1.8rem;
    flex: 1 1 280px;

    display: flex;
    align-items: center;
    gap: 1.2em;

    border: 1px solid rgba(255,115,0,0.08);
    text-decoration: none;
    color: #fff;

    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.link-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 28px rgba(255,115,0,0.25);
    border: 1px solid rgba(255,115,0,0.25);
}

.link-card .icon {
    margin-top: 0.2em;
    min-width: 2.3em;
    min-height: 2.3em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-card .icon svg {
    display: block;
}

.link-card .card-details {
    display: flex;
    flex-direction: column;
    gap: 0.2em;
}

.card-title {
    font-size: 1.2em;
    font-weight: 700;
    color: #fff;
}

.card-desc {
    font-size: 0.95em;
    color: #bbb;
}

@media (max-width: 900px) {
    .link-cards {
        flex-direction: column;
        gap: 1.5rem;
        max-width: 98vw;
    }

    .link-card {
        min-width: unset;
        max-width: unset;
    }
}

@media (max-width: 600px) {
    .ipbar {
        flex-direction: column;
        align-items: stretch;
        max-width: 97vw;
        gap: 0.6em;
        padding: 1em;
    }

    .ip-address {
        margin-right: 0;
        text-align: center;
    }
}

@media (max-width: 1100px) {
    .staff-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .staff-list {
        grid-template-columns: 1fr;
    }
}