* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #0b0b0b;
    color: #ececec;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(11,11,11,1)), url("images/spawn.png") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-overlay {
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 5rem);
    margin-bottom: 10px;
    background: linear-gradient(to bottom, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-badge {
    display: inline-block;
    margin-top: 20px;
    padding: 5px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
}

.main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.logo {
    max-width: 220px;
    filter: drop-shadow(0 0 15px rgba(245, 197, 66, 0.3));
}

.text h2 {
    color: #f5c542;
    font-size: 2rem;
    margin-bottom: 15px;
}

.ip-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.ip-card {
    background: #161616;
    border: 1px solid #222;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.ip-card:hover {
    background: #1c1c1c;
    border-color: #f5c542;
    transform: translateY(-3px);
}

.ip-card span {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
}

.ip-card strong {
    display: block;
    font-size: 1.4rem;
    color: #fff;
}

.ip-card small {
    color: #f5c542;
    font-weight: 600;
}

.ip-card.copied {
    border-color: #4caf50;
}

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

.box {
    background: #111;
    padding: 30px;
    border-radius: 12px;
    border-bottom: 3px solid #333;
}

.green { color: #4caf50; margin-bottom: 10px; }
.yellow { color: #f5c542; margin-bottom: 10px; }

footer {
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}

footer a { color: #f5c542; text-decoration: none; }

@media (max-width: 768px) {
    .content { flex-direction: column; text-align: center; }
}