* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: #f5f5f5;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    background: rgba(253, 187, 45, 0.2);
    color: #fdbb2d;
}

main {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.hero {
    text-align: center;
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    margin-bottom: 40px;
    background-image: url('https://placehold.co/1200x400/1a2a6c/f5f5f5?text=ItsNotUs+Tribe+Dominates+ARK');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fdbb2d;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tribe-motto {
    font-style: italic;
    font-size: 1.3rem;
    margin-top: 20px;
    color: #fdbb2d;
}

.tribe-info {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.tribe-info h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #fdbb2d;
}

.info-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.info-text {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.info-text h3 {
    margin: 20px 0 15px;
    color: #fdbb2d;
}

.info-text ul {
    margin: 15px 0;
    padding-left: 20px;
}

.info-text li {
    margin-bottom: 10px;
}

.specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.specialty {
    display: flex;
    align-items: center;
    background: rgba(26, 42, 108, 0.8);
    padding: 10px 15px;
    border-radius: 5px;
}

.specialty i {
    margin-right: 10px;
    color: #fdbb2d;
}

.info-image {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.tribe-members {
    background: rgba(26, 42, 108, 0.8);
    padding: 20px;
    border-radius: 10px;
}

.tribe-members h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #fdbb2d;
}

.member {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.member img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.member-info h4 {
    color: #fdbb2d;
}

.featured-guides {
    margin-bottom: 40px;
}

.featured-guides h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.5rem;
    color: #fdbb2d;
}

.featured-guides > p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.guide-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.guide-card {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 3rem;
    color: #fdbb2d;
    margin-bottom: 20px;
}

.guide-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #fdbb2d;
}

.guide-card p {
    margin-bottom: 20px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    color: #fdbb2d;
    text-decoration: none;
    font-weight: bold;
}

.card-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.card-link:hover i {
    transform: translateX(5px);
}

.server-rules {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.server-rules h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #fdbb2d;
}

.rules-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.rule {
    background: rgba(26, 42, 108, 0.8);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.rule i {
    font-size: 2rem;
    color: #fdbb2d;
    margin-bottom: 15px;
}

.rule h3 {
    margin-bottom: 15px;
    color: #fdbb2d;
}

footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.footer-links a {
    color: #f5f5f5;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    color: #fdbb2d;
}

.footer-info {
    text-align: center;
    width: 100%;
}

.footer-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .info-content {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}