.guests-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.guest-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    background: transparent;
    display: flex;
    flex-direction: column;
    height: 450px;
}

.guest-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.guest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.guest-card:hover .guest-image img {
    transform: scale(1.05);
}

.guest-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.9) 40%,
        rgba(0, 0, 0, 0.6) 80%,
        transparent 100%
    );
    text-align: center;
    transform: translateY(0);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.guest-name {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.guest-title {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1.2rem;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.guest-details {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.guest-details:hover {
    background: var(--primary-color);
    color: var(--text-color);
}

.guest-container {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 2rem;
}

.guest-page-content {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(177, 153, 79, 0.2);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
}

.guest-hero {
    width: 400px;
    height: 400px;
    overflow: hidden;
    border-radius: 50%;
    margin-bottom: 2rem;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(177, 153, 79, 0.2);
}

.guest-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.guest-hero:hover img {
    transform: scale(1.05);
}

.guest-page-title {
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.guest-page-subtitle {
    font-size: 1.5rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.8;
    font-style: italic;
}

.guest-description {
    color: var(--text-color);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 900px;
    text-align: justify;
}

.guest-description p {
    margin-bottom: 1.5rem;
}

.guest-gallery {
    margin-top: 4rem;
    width: 100%;
    padding: 0 2rem;
}

.guest-gallery h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.gallery-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.main-image {
    width: 100%;
    height: min-content;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(177, 153, 79, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-image:hover img {
    transform: scale(1.02);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        transparent 100%
    );
    padding: 2rem 1rem 1rem;
    text-align: center;
}

.image-caption p {
    color: var(--text-color);
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.thumbnail-slider {
    position: relative;
    padding: 0 50px;
    margin-top: 2rem;
}

.thumbnails {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.thumbnails::-webkit-scrollbar {
    display: none;
}

.thumbnails img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.thumbnails img.active {
    opacity: 1;
    border: 2px solid var(--primary-color);
    transform: translateY(-5px);
}

.thumbnails img:hover {
    opacity: 0.8;
    transform: translateY(-3px);
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(177, 153, 79, 0.1);
    border: 1px solid rgba(177, 153, 79, 0.3);
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-button:hover {
    background: rgba(177, 153, 79, 0.2);
}

.slider-button.prev {
    left: 0;
}

.slider-button.next {
    right: 0;
}

@media (max-width: 768px) {
    .guests-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .guest-container {
        padding: 1rem;
        margin-top: 60px;
    }

    .guest-page-content {
        padding: 1.5rem;
    }

    .guest-hero {
        width: 280px;
        height: 280px;
    }

    .guest-page-title {
        font-size: 2rem;
    }

    .guest-page-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .guest-description {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .main-image {
        height: 400px;
    }

    .thumbnails {
        gap: 1rem;
    }

    .thumbnails img {
        width: 120px;
        height: 80px;
    }

    .slider-button {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .guest-hero {
        width: 350px;
        height: 350px;
    }

    .guest-page-title {
        font-size: 2.5rem;
    }

    .guest-page-subtitle {
        font-size: 1.3rem;
    }

    .guest-description {
        font-size: 1.1rem;
    }
}

.moderators-section {
    margin-top: 4rem;
    width: 100%;
    padding: 0 2rem;
}

.moderators-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.moderators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.moderator-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(177, 153, 79, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.moderator-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.moderator-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.moderator-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.moderator-card:hover .moderator-image img {
    transform: scale(1.1);
}

.moderator-name {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.moderator-title {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

@media (max-width: 1024px) {
    .moderators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .moderators-section {
        padding: 0 1rem;
    }

    .moderators-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .moderators-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .moderator-image {
        width: 120px;
        height: 120px;
    }
} 