/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85)), 
                url('https://unsplash.com') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

/* Container Card */
.container {
    text-align: center;
    max-width: 600px;
    padding: 40px 20px;
    background: rgba(20, 20, 20, 0.6);
    border: 2px solid #333;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Logo Text (Simulating Minecraft style layout) */
.logo h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    color: #dedede;
    text-shadow: 3px 3px 0px #1a1a1a;
    font-weight: 800;
    margin-bottom: 10px;
}

.logo h1 span {
    color: #55ff55; /* Minecraft green color accent */
}

.subtitle {
    font-size: 1.1rem;
    color: #b3b3b3;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Countdown Grid */
.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.time-box {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #444;
    padding: 15px;
    border-radius: 6px;
    min-width: 80px;
}

.time-box span {
    font-size: 2rem;
    font-weight: bold;
    color: #ffaa00; /* Gold countdown numbers */
    display: block;
}

.time-box p {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    margin-top: 5px;
}

.live-text {
    font-size: 1.8rem;
    color: #55ff55;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(85, 255, 85, 0.4);
}

/* Click-to-Copy Server IP Box */
.ip-box {
    position: relative;
    display: inline-block;
    background: #222;
    border: 2px dashed #ffaa00;
    padding: 12px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
    margin-bottom: 30px;
}

.ip-box:hover {
    background: #2a2a2a;
    transform: scale(1.03);
}

/* Tooltip text */
.ip-box .tooltip {
    visibility: hidden;
    width: 120px;
    background-color: #111;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.75rem;
}

.ip-box:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s;
}

.discord-btn {
    background: #5865F2;
    color: white;
}

.discord-btn:hover {
    background: #4752C4;
}
