/* ===== LAYOUT ET SECTIONS ===== */
/* Organisation des sections principales */

/* Container principal */
.container {
    padding: 0 var(--container-padding);
    max-width: 1200px;
    margin: 0 auto;
}

/* Sections générales */
.hero-section,
.ranking-section,
.all-sites-section,
.tips-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.discord-section {
    padding: 80px 0;
}

/* Titres de section */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-weight: 700;
    color: var(--panda-black);
    display: inline-block;
    padding-bottom: 15px;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Grilles et flexbox */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-4, .col-md-6, .col-lg-6, .col-lg-8 {
    padding: 0 15px;
}

.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.text-center {
    text-align: center;
}

.text-md-end {
    text-align: right;
}