* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #FFF9E5, #FFF5D1);
    color: #333;
    line-height: 1.6;
    margin: 0;
    position: relative;
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

p {
    margin: 0;
    padding: 3px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

.header {
    padding: 20px 0;
}

.logo-img {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.3));
}

.animated-logo {
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.3)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.3)); }
}

.status-boxes {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.status-box {
    background: #fff;
    border: 2px solid #DAA520;
    border-radius: 15px;
    padding: 20px 15px;
    width: 200px;
    height: 120px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.status-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.status-box i {
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 10px;
}

.status-box p {
    font-size: 1rem;
    color: #333;
}

.status-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #DAA520;
    position: relative;
}

.sip, .sip-acc {
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 6px;
    background: #FFD700;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #DAA520;
    border-top: 2px solid #FFC107;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 5px;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.main-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 40px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.left-section {
    flex: 1;
    min-width: 300px;
}

.right-section {
    flex: 1;
    min-width: 300px;
}

.toggle-box {
    background: #fff;
    border: 2px solid #DAA520;
    border-radius: 20px;
    display: inline-block;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.toggle-buttons {
    display: flex;
    justify-content: center;
    gap: 0;
}

.toggle-btn {
    padding: 8px 20px;
    background: #FFD700;
    color: #333;
    border: none;
    border-right: 1px solid #DAA520;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.toggle-btn:last-child {
    border-right: none;
}

.toggle-btn.active {
    background: #DAA520;
    color: #fff;
}

.toggle-btn:hover {
    background: #FFC107;
    color: #333;
}

.toggle-content {
    border: 2px solid #DAA520;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 5px 15px rgba(0, 00, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.server-info-box {
    background: #1C2526;
    border-radius: 12px;
    padding: 0 0 20px 0;
    color: #fff;
}

.server-video {
    width: 100%;
    height: 300px;
    border-radius: 10px 10px 0 0;
    margin: 0;
    object-fit: cover;
    background: #000;
}

.divider {
    border: 0;
    height: 2px;
    background: #FFD700;
    margin: 15px 20px;
}

.version-boxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 20px;
}

.version-box {
    background: #2A3435;
    border: 1px solid #FFD700;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.version-note {
    font-size: 0.9rem;
    font-weight: 500;
    color: #FFD700;
    margin: 0;
    text-align: center;
}

.ip-section {
    background: #fff;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 15px;
    text-align: center;
}

.join-ip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.join-tooltip {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

.join-tooltip.show {
    opacity: 1;
    visibility: visible;
}

.ip-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #DAA520;
}

.ip-caret {
    margin-left: 5px;
}

.ip-caret i {
    color: #FFD700;
    transition: color 0.3s;
}

.join-ip:hover .ip-caret i {
    color: #FFC107;
}

.items {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #DAA520;
    border-radius: 15px;
    padding: 20px;
    width: 150px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.icon-wrapper {
    margin-bottom: 10px;
}

.item i {
    color: #FFD700;
    transition: transform 0.3s;
}

.item i:hover {
    transform: scale(1.2);
    color: #FFC107;
}

.item .title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #DAA520;
    text-shadow: none;
}

footer {
    margin-top: 60px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #DAA520;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.social {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.social-item i {
    color: #FFD700;
    transition: transform 0.3s, color 0.3s;
}

.social-item:hover i {
    transform: scale(1.2);
    color: #FFC107;
}

.decor-top-left, .decor-top-right, .decor-bottom-left, .decor-bottom-right {
    position: absolute;
    width: 50px;
    height: 50px;
    background: url('path/to/decor-image.png') no-repeat center;
    background-size: contain;
}

.decor-top-left { top: 20px; left: 20px; }
.decor-top-right { top: 20px; right: 20px; }
.decor-bottom-left { bottom: 20px; left: 20px; }
.decor-bottom-right { bottom: 20px; right: 20px; }

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

    .left-section, .right-section {
        width: 100%;
    }

    .item {
        width: 180px;
    }

    .status-box {
        width: 180px;
        height: 110px;
    }

    .server-video {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px;
    }

    .logo-img {
        width: 150px;
    }

    .item {
        width: 150px;
    }

    .status-box {
        width: 160px;
        height: 100px;
    }

    .server-video {
        height: 150px;
    }

    .divider, .version-boxes {
        margin: 15px 10px;
    }
}
