:root {
    --gold: #d4af37;
    --gold-light: #f0d98d;
    --dark: #0b0b0b;
    --dark-soft: #1a1a1a;
    --dark-card: #141414;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'MedievalSharp', cursive;
    background-color: var(--dark);
    color: #eee;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
}

h3 {
    font-style: italic;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.9;
}

.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.navbar-brand{
display: inline-block;
background: linear-gradient(to right, #bd0045, #0060b3);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--gold) !important;
}

header {
    min-height: 100vh;
    background: url('/image/lord-of-the-rings-.jpg') center/cover fixed no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.85));
    z-index: 1;
}

.overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
    padding: 60px 40px;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
    animation: fadeInUp 1.5s ease forwards;
    backdrop-filter: blur(5px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    padding: 50px 0;
}

section h2 {
    position: relative;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

section h2::after {
    content: "✧";
    display: block;
    margin: 20px auto 0;
    color: var(--gold);
    font-size: 1.5rem;
}

.feature-card {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.faction-card {
    background: linear-gradient(145deg, var(--dark-card) 0%, var(--dark-soft) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
    height: 100%;
}

.faction-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

.faction-header {
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.faction-header h4 {
    color: var(--gold-light);
    margin: 0;
}

.faction-desc {
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.faction-features {
    list-style: none;
    padding: 0;
}

.faction-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gallery-img {
    border-radius: 15px;
    transition: transform 0.5s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    color: var(--gold);
    margin: 0;
    font-weight: bold;
}

.timeline {
    position: relative;
    margin: 50px auto;
    max-width: 900px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    width: 50%;
    padding: 30px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--dark);
    box-shadow: 0 0 15px var(--gold);
    z-index: 1;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.left::before {
    right: -10px;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item.right::before {
    left: -10px;
}

.timeline-content {
    background: var(--dark-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--gold);
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.3);
}

.team-card {
    background: var(--dark-soft);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid rgba(212, 175, 55, 0.2);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.team-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.link-card {
    background: var(--dark-card);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
    height: 100%;
}

.link-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
}

.link-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.btn-warning {
    background: var(--gold);
    border: none;
    color: var(--dark);
    font-weight: bold;
    padding: 0.8rem 2rem;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    color: var(--dark);
}

.btn-outline-warning {
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: bold;
    padding: 0.8rem 2rem;
    transition: all 0.3s ease;
}

.btn-outline-warning:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.modal-content {
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 15px;
}

footer {
    background: linear-gradient(to top, #000, var(--dark));
    padding: 60px 20px 40px;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

footer a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--gold-light);
    text-shadow: 0 0 10px var(--gold);
}

@media (max-width: 768px) {
    header {
        min-height: 80vh;
        background-attachment: scroll;
    }

    .overlay {
        padding: 40px 25px;
    }

    section {
        padding: 60px 0;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        text-align: left;
        left: 0 !important;
    }

    .timeline-item::before {
        left: 10px !important;
    }

    .gallery-img {
        height: 200px;
    }
}

/* ANIMATIONS VIVANTES POUR TOLKIEN */

/* Particules d'étoiles animées */
@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Animation de lueur dorée */
@keyframes goldGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.6); }
}

/* Icônes de factions animées */
.faction-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Lien Trello dans les cartes */
.faction-link {
    margin-top: 1.5rem;
    padding: 0.8rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    border-radius: 8px;
    font-weight: bold;
    color: var(--gold);
    transition: all 0.3s ease;
}

.faction-card:hover .faction-link {
    background: var(--gold);
    color: var(--dark);
    transform: scale(1.05);
}

/* Effet de pulsation sur les cartes au hover */
.faction-card:hover .faction-icon {
    animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Couleurs spécifiques pour chaque faction */
.faction-gondor:hover {
    border-color: #6495ed;
    box-shadow: 0 15px 50px rgba(100, 149, 237, 0.5);
}

.faction-rohan:hover {
    border-color: #228b22;
    box-shadow: 0 15px 50px rgba(34, 139, 34, 0.5);
}

.faction-isengard:hover {
    border-color: #8b4513;
    box-shadow: 0 15px 50px rgba(139, 69, 19, 0.5);
}

.faction-mordor:hover {
    border-color: #ff0000;
    box-shadow: 0 15px 50px rgba(255, 0, 0, 0.5);
}

.faction-elves:hover {
    border-color: #add8e6;
    box-shadow: 0 15px 50px rgba(173, 216, 230, 0.5);
}

.faction-dwarves:hover {
    border-color: #b8860b;
    box-shadow: 0 15px 50px rgba(184, 134, 11, 0.5);
}

/* Animation de l'overlay du header */
.overlay {
    animation: fadeInUp 1.5s ease forwards, goldGlow 3s ease-in-out infinite;
}

/* Effet de brillance sur le titre */
h1 {
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

/* Particules flottantes sur le header */
header::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(212, 175, 55, 0.4), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(212, 175, 55, 0.4), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(212, 175, 55, 0.4), transparent),
        radial-gradient(1px 1px at 30% 80%, rgba(212, 175, 55, 0.3), transparent);
    background-size: 200% 200%;
    animation: particlesFloat 20s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes particlesFloat {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

/* Séparateur animé après les h2 */
section h2::after {
    animation: twinkle 2s ease-in-out infinite;
}

/* Effet de vague sur les images de galerie */
.gallery-img {
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.5s;
    z-index: 1;
}

.gallery-item:hover::before {
    left: 100%;
}

/* Animation des features cards */
.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.feature-card:hover::before {
    opacity: 1;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Effet de lueur sur les boutons */
.btn-warning, .btn-outline-warning {
    position: relative;
    overflow: hidden;
}

.btn-warning::before, .btn-outline-warning::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-warning:hover::before, .btn-outline-warning:hover::before {
    width: 300px;
    height: 300px;
}

/* Timeline plus vivante */
.timeline-item {
    opacity: 0;
    animation: slideIn 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Point de la timeline qui pulse */
.timeline-item::before {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 15px var(--gold);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px var(--gold);
        transform: scale(1.2);
    }
}

/* Navbar avec effet de blur au scroll */
.navbar {
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.3);
}

/* Modal avec effet dramatique */
.modal.show {
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Curseur personnalisé sur les cartes cliquables */
.faction-card {
    cursor: pointer;
}

.faction-card:active {
    transform: translateY(-8px) scale(0.98);
}

/* Effet de brume sur le footer */
footer {
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.05), transparent);
    pointer-events: none;
}

/* Amélioration responsive */
@media (max-width: 768px) {
    .faction-icon {
        font-size: 3rem;
    }
    
    h1 {
        font-size: 2rem !important;
    }
    
    .faction-card {
        margin-bottom: 2rem;
    }
}
/* CORRECTIONS ET AMÉLIORATIONS */

/* Animation classe pour IntersectionObserver */
.animated {
    animation: fadeInUp 0.8s ease forwards !important;
    opacity: 1 !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CARROUSEL GALERIE */
.carousel-image {
    height: 600px;
    object-fit: cover;
    border-radius: 15px;
}

.carousel-inner {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(212, 175, 55, 0.4);
}

.carousel-caption {
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 2rem;
    bottom: 0;
    left: 0;
    right: 0;
}

.carousel-caption h5 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.carousel-caption p {
    font-size: 1.1rem;
    margin: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(212, 175, 55, 0.8);
    border-radius: 50%;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gold);
}

/* SECTION LIENS AVEC LOGOS */
.link-icon svg {
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    transition: transform 0.3s ease;
}

.link-card:hover .link-icon svg {
    transform: scale(1.1) rotate(5deg);
}

/* FACTIONS BIEN/MAL */
.faction-alliance-card {
    background: linear-gradient(145deg, var(--dark-card) 0%, var(--dark-soft) 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 3px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
    height: 100%;
}

.faction-good {
    border-color: rgba(100, 149, 237, 0.5);
}

.faction-evil {
    border-color: rgba(255, 0, 0, 0.5);
}

.faction-alliance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 60px rgba(212, 175, 55, 0.4);
}

.faction-good:hover {
    box-shadow: 0 15px 60px rgba(100, 149, 237, 0.6);
}

.faction-evil:hover {
    box-shadow: 0 15px 60px rgba(255, 0, 0, 0.6);
}

.alliance-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.alliance-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
    display: inline-block;
}

.alliance-subtitle {
    font-style: italic;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* ACCORDÉONS FACTIONS */
.factions-dropdown .accordion {
    background: transparent;
}

.accordion-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 0.5rem;
    border-radius: 10px !important;
    overflow: hidden;
}

.accordion-button {
    background: rgba(212, 175, 55, 0.1);
    color: #eee;
    font-weight: bold;
    border: none;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    font-family: 'Cinzel', serif;
}

.accordion-button:not(.collapsed) {
    background: rgba(212, 175, 55, 0.3);
    color: var(--gold);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background: rgba(0, 0, 0, 0.4);
    color: #eee;
    padding: 1.5rem;
}

.accordion-body ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.accordion-body ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.accordion-body ul li:last-child {
    border-bottom: none;
}

.accordion-body p {
    font-style: italic;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* RESPONSIVE AMÉLIORÉ */
@media (max-width: 768px) {
    .carousel-image {
        height: 400px;
    }
    
    .carousel-caption h5 {
        font-size: 1.3rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .faction-alliance-card {
        margin-bottom: 2rem;
    }
    
    .alliance-icon {
        font-size: 3rem;
    }
    
    .link-icon svg {
        width: 60px;
        height: 60px;
    }
}

/* Animation de float améliorée */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px);
    }
    50% { 
        transform: translateY(-15px);
    }
}
/* RÉDUCTIONS DE TAILLE */
section .container {
    max-width: 1100px;
}

section h2 {
    margin-bottom: 30px;
    font-size: 2rem;
}

section h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.overlay {
    padding: 40px 30px;
}

.faction-alliance-card {
    padding: 1.5rem;
}

.link-card {
    padding: 2rem 1.5rem;
}

.feature-card {
    padding: 1.5rem;
}

.team-card {
    padding: 1.5rem;
}

.timeline {
    max-width: 800px;
}

.carousel-image {
    height: 500px;
}

/* CORRECTION COULEURS - TOUT EN BLANC */
.text-muted {
    color: #ffffff !important;
    opacity: 0.9;
}

p.text-muted {
    color: #ffffff !important;
}

.small.text-muted {
    color: #ffffff !important;
}

.alliance-subtitle {
    color: #ffffff !important;
    opacity: 0.9;
}

.accordion-body {
    color: #ffffff;
}

.accordion-body p {
    color: #ffffff;
}

.carousel-caption p {
    color: #ffffff;
}

/* FOOTER PROFESSIONNEL */
footer {
    background: linear-gradient(to top, #000, var(--dark));
    padding: 40px 0;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.footer-youtube-links h6 {
    font-family: 'Cinzel', serif;
}

.youtube-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.youtube-link:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateX(5px);
}

.youtube-link svg {
    flex-shrink: 0;
}

.footer-center {
    padding: 0 1rem;
}

.footer-legal-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-legal-link:hover {
    color: var(--gold);
    text-decoration: underline;
}

.text-white {
    color: #ffffff !important;
}

/* RESPONSIVE AMÉLIORÉ */
@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .carousel-image {
        height: 350px;
    }
    
    .faction-alliance-card,
    .link-card,
    .feature-card,
    .team-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    footer .col-md-3,
    footer .col-md-6 {
        margin-bottom: 2rem;
        text-align: center !important;
    }
    
    .youtube-link {
        justify-content: center;
    }
}