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

body {
    font-family: 'Arial', sans-serif;
    background: url('https://i.imgur.com/GoXRuFP.png') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    padding: 20px;
}

header {
            background: rgba(144, 238, 144, 0.7);
            padding: 20px;
            text-align: center;
            border-bottom: 3px solid #2e8b57;
        }
        


.info-item {
            background: rgba(255, 255, 255, 0.8);
            padding: 10px 20px;
            border: 2px solid #2e8b57;
            border-radius: 8px;
            font-weight: bold;
            text-align: center;
        }

h1, h2, h3 {
            color: #2e8b57;
            margin-bottom: 20px;
        }

h4 {
            color: #FF0000;
            font-size: 25px;
            margin-bottom: 20px;
        }

.container {
            max-width: 1300px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.85);
            border: 3px solid #2e8b57;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
            overflow: hidden;
}

.server-info {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 15px;

}

.discord-btn {
            background: #7289da;
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
}

        .discord-btn:hover {
            background: #5b6ed7;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


.server-info h2, .server-info h3 {
    margin: 10px 0;
    color: #006400;
}

.server-info h4 {
    margin: 10px 0;
    font-size: 18px;
    color: #FF0000;
}

.server-info a {
    color: #006400;
    text-decoration: none;
    font-weight: bold;
}

.server-info a:hover {
    text-decoration: underline;
}

        .tabs {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            background: rgba(144, 238, 144, 0.7);
            padding: 10px;
            border-bottom: 3px solid #2e8b57;
}
	
.tabs a {
    text-decoration: none;
    padding: 10px 15px;
    background: #006400;
    color: white;
    border-radius: 5px;
    transition: all 0.3s;
    border: 2px solid #008000;
}

.tabs a:hover {
    background: #228B22;
    transform: translateY(-2px);
}

.tabs a.active {
    background: #32CD32;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 128, 0, 0.5);
}

.tab-content {
    padding: 20px;
    min-height: 400px;
}

.tab-panel {
    padding: 15px;
    border: 2px solid #008000;
    border-radius: 8px;
    background: rgba(245, 255, 245, 0.8);
}

.tab-panel h2 {
    color: #006400;
    margin-bottom: 15px;
    border-bottom: 2px solid #008000;
    padding-bottom: 5px;
}

.tab-panel h3 {
    margin: 10px 0;
    color: #006400;
}

.tab-panel h4 {
    margin: 10px 0;
    font-size: 18px;
    color: #FF0000;
}

.tab-panel p {
    margin: 10px 0;
    line-height: 1.6;
}

.tab-panel ul, .tab-panel ol {
    margin: 10px 0 20px 20px;
}

.tab-panel li {
    margin: 5px 0;
}

.map-links {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.map-links a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #006400;
    transition: transform 0.3s;
}

.map-links a:hover {
    transform: scale(1.05);
}

.map-links img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border: 2px solid #008000;
    border-radius: 5px;
    margin-bottom: 10px;
}

.market-link {
    text-align: center;
    margin-top: 20px;
}

.market-link a {
    display: inline-block;
    text-decoration: none;
    color: #006400;
    transition: transform 0.3s;
}

.market-link a:hover {
    transform: scale(1.05);
}

.market-link img {
    width: 400px;
    height: auto;
    border: 2px solid #008000;
    border-radius: 5px;
    margin-bottom: 10px;
}

.carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel img {
    width: 800px;
    height: 600px;
    object-fit: cover;
    border: 2px solid #008000;
    border-radius: 5px;
    flex-shrink: 0;
}

iframe {
    border: 2px solid #008000;
    border-radius: 8px;
    width: 100%;
    height: 1240px;
}

@media (max-width: 768px) {
    .tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tabs a {
        width: 80%;
        text-align: center;
        margin-bottom: 5px;
    }
    
    .map-links {
        flex-direction: column;
        align-items: center;
    }
    
    .carousel {
        flex-direction: column;
        align-items: center;
    }
    
    .carousel img {
        width: 100%;
        max-width: 300px;
    }
}
