:root {
    --primary: #4ade80;
    --error: #ef4444;
    --glass: rgba(0, 0, 0, 0.7);
    --text: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #111;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://ik.imagekit.io/tinchomika/tr:f-auto,pr-true/mc.png'); 
    background-size: cover;
    background-position: center;
    z-index: -2;
    filter: blur(5px); 
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); 
    z-index: -1;
}


.hero {
    text-align: center;
    padding: 3rem;
    background: var(--glass);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 600px;
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.title {
    font-family: 'VT323', monospace;
    font-size: 4rem;
    line-height: 1;
    text-shadow: 4px 4px 0px #000;
    margin-bottom: -10px;
}

.description {
    font-size: 1.1rem;
    color: #ddd;
    line-height: 1.5;
}

/* Server Status */
.status-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    box-shadow: 0 0 10px currentColor;
}

.online .indicator { background-color: var(--primary); color: var(--primary); }
.offline .indicator { background-color: var(--error); color: var(--error); }

/* IP Address Copy */
.ip-container {
    background: #222;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: monospace;
    font-size: 1.2rem;
    border: 2px solid #444;
    transition: all 0.2s;
    position: relative;
}
a {
    color: var(--primary);
}

.ip-container:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}
.btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #5865F2;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.copy-tooltip {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    padding: 4px 8px;
    font-size: 0.8rem;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
}

.ip-container:hover .copy-tooltip {
    opacity: 1;
}


.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #000;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
}
.btn-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
}