body{
    overflow-x: hidden;
    text-decoration: none;
    font-family: var(--font-main);
    width: 100vw;
    height: 100vh;
}

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

body {
    background: #f8eed8;
    font-family: "Cinzel", serif;
    color: #4b2d12;
}



.guild-page {
    width: 100%;
    padding: 40px 20px 80px;
}

.guild-title {
    text-align: center;
    font-size: 3rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #4a2c11;
    margin-top: 50px;
}

.guild-subtitle {
    text-align: center;
    color: #8a7254;
    margin-bottom: 50px;
    font-size: 1rem;
}



.guild-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}



.guild-card {
    width: 560px;
    background: #f8eed8;
    border: 5px solid #8d6a3d;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 0 rgba(82, 55, 22, 0.4);
}



.card-header {
    background: #4b2807;
    color: #dcb16a;
    text-align: center;
    padding: 20px;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 4px;
}



.card-content {
    padding: 30px;
}

.card-description {
    color: #6b4d2d;
    line-height: 1.8;
    font-size: 0.95rem;
    min-height: 90px;
}



.requirements-box {
    border: 2px solid #d4a45c;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0 25px;
    background: #fbf3e5;
}

.requirements-box h3 {
    color: #c4a172;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.requirements-box p {
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
    color: #5a3b1b;
}



.guild-btn {
    width: 100%;
    background: #cc8700;
    border: 2px solid #af7300;
    color: white;
    font-family: "Cinzel", serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.guild-btn:hover {
    background: #b87700;
}



@media (max-width: 1200px) {
    .guild-card {
        width: 450px;
    }
}

@media (max-width: 950px) {
    .guild-container {
        flex-direction: column;
        align-items: center;
    }

    .guild-card {
        width: 90%;
        max-width: 600px;
    }
}

@media (max-width: 600px) {
    .guild-title {
        font-size: 2rem;
    }

    .card-header {
        font-size: 1.5rem;
    }

    .card-content {
        padding: 20px;
    }
}