body {
    font-family: Arial, sans-serif;
    background-color: #e4b552;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* COUNTDOWN FULL SCREEN CONTAINER */
.countdown-full-container {
    display: none;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background-color: #e4b552;
    padding: 20px;
    box-sizing: border-box;
}

.countdown-content {
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.countdown-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 15px;
}


.countdown-subtitle {
    font-size: 1.1em;
    color: #666;
    margin: 15px 0 25px 0;
    font-weight: 500;
}

/* COUNTDOWN TIMER SIMPLE */
.countdown-timer-simple {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.countdown-item-simple {
    background-color: #fcf8f1;
    border: 2px solid #dbb434;
    border-radius: 8px;
    padding: 15px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
}

.countdown-value-simple {
    font-size: 1.8em;
    font-weight: 700;
    color: #dbb434;
    line-height: 1;
}

.countdown-label-simple {
    font-size: 0.75em;
    color: #999;
    margin-top: 4px;
    font-weight: 500;
}

.countdown-separator {
    font-size: 1.5em;
    color: #dbb434;
    font-weight: 700;
    margin: 0 5px;
}

.countdown-versions {
    font-size: 1.25em;
    color: #383838;
    margin: 20px 0 0 0;
    font-weight: 500;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-section {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo-minecraft {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 15px;
}

.container h1 {
    margin: 0;
    color: #2d2d2d;
    font-size: 2em;
}

section {
    margin: 25px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    max-width: 600px;
    text-align: center;
    border-left: 4px solid #dbb434;
}

.server-section {
    background-color: #fcf8f1;
}

.server-section h2 {
    color: #dbb434;
    margin-top: 0;

}

.server-section p {
    color: #666;
    margin: 10px 0;
}

button {
    padding: 12px 25px;
    font-size: 16px;
    cursor: pointer;
    background-color: #dbb434;
    color: #fff;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: 600;
    margin-top: 10px;
}

button:hover {
    background-color: #c5a12c;
}

code {
    background-color: #f0f0f0;
    padding: 8px 12px;
    border-radius: 5px;
    display: inline-block;
    margin: 10px 0;
}

.interactive-ip {
    font-size: 18px;
    user-select: all;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
    padding: 8px 12px;
    border-radius: 5px;
    background-color: #f5f5f5;
}

.interactive-ip:hover {
    background-color: #ffe8cc;
    border-color: #dbb434;
    color: #c5a12c;
}

.interactive-ip.copied {
    background-color: #e8f5e9;
    border-color: #4caf50;
    color: #2e7d32;
}

.copy-icon {
    height: 18px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.interactive-ip:hover .copy-icon {
    opacity: 1;
}

.button-group {
    margin-top: 30px;
}

.download-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #dbb434;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.download-link:hover {
    background-color: #c5a12c;
}

.backup-list {
    list-style-type: none;
    padding: 0;
}

.backup-list li {
    margin: 10px 0;
}

.backup-list a {
    color: #dbb434;
    text-decoration: none;
    transition: color 0.3s ease;
}

.backup-list a:hover {
    color: #c5a12c;
}

.none{
    display: none !important;
}

.tab {
    position: fixed;
    bottom: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px 10px 0 0;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tab a {
    color: #fff;
    text-decoration: none;
}

.tab:hover {
    background-color: #444;
}

.version {
    display: block;
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .countdown-timer-simple {
        gap: 5px;
    }

    .countdown-item-simple {
        padding: 12px 10px;
        min-width: 60px;
    }

    .countdown-value-simple {
        font-size: 1.5em;
    }

    .countdown-label-simple {
        font-size: 0.7em;
    }

    .countdown-separator {
        font-size: 1.2em;
        margin: 0 3px;
    }

    .countdown-content {
        padding: 30px 20px;
    }

    .countdown-logo {
        width: 80px;
        height: 80px;
    }

    .countdown-content h1 {
        font-size: 1.5em;
    }

    .container {
        padding: 30px 20px;
    }

    .logo-minecraft {
        width: 80px;
        height: 80px;
    }

    .container h1 {
        font-size: 1.5em;
    }
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .countdown-full-container {
        padding: 10px;
    }

    .countdown-content {
        padding: 20px 15px;
        border-radius: 8px;
    }

    .countdown-timer-simple {
        gap: 4px;
    }

    .countdown-item-simple {
        padding: 10px 8px;
        min-width: 55px;
    }

    .countdown-value-simple {
        font-size: 1.3em;
    }

    .countdown-label-simple {
        font-size: 0.65em;
    }

    .countdown-separator {
        font-size: 1em;
        margin: 0 2px;
    }

    .countdown-logo {
        width: 70px;
        height: 70px;
    }

    .countdown-content h1 {
        font-size: 1.3em;
    }

    .countdown-subtitle {
        font-size: 0.95em;
        margin: 10px 0 15px 0;
    }

    .countdown-versions {
        font-size: 0.95em;
    }

    .container {
        width: 100%;
        padding: 20px 15px;
        border-radius: 8px;
    }

    .header-section {
        margin-bottom: 30px;
    }

    section {
        margin: 15px auto;
        padding: 15px;
        max-width: 100%;
    }

    button {
        width: 100%;
        padding: 15px;
    }

    .interactive-ip {
        font-size: 16px;
        padding: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .copy-icon {
        height: 16px;
    }

    .logo-minecraft {
        width: 70px;
        height: 70px;
    }
}

/* START SERVER BUTTON STYLES */
.start-server-btn-red {
    background-color: #d32f2f;
    color: white;
    padding: 12px 30px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.start-server-btn-red:hover:not(:disabled) {
    background-color: #b71c1c;
}

.start-server-btn-red:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.start-server-btn-green {
    background-color: #2e7d32;
    color: white;
    padding: 12px 30px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    cursor: not-allowed;
    transition: all 0.3s ease;
    font-weight: bold;
}

.server-message {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

.error-message {
    background-color: #ffebee;
    color: #d32f2f;
    display: block;
}
