/* ===== VARIABLES CSS ===== */
:root {
    --primary-color: #ff2975;
    --secondary-color: #c77218;
    --accent-color: #ffa500;
    --dark-bg: #1a1a1a;
    --darker-bg: #0d1117;
    --text-light: #e1e8ed;
    --text-muted: #8b949e;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ET BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-light);
    background: var(--dark-bg);
}

/* ===== TYPOGRAPHY ===== */
h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 73px;
    width: 70%;
    margin: 0 auto 2rem auto;
}

.navbar-brand img {
    width: 200px;
}

.bi-list {
    font-size: 45px;
    color: var(--accent-color);
}

h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

header {
    padding: 1rem 0;
    margin-bottom: 2rem;
    position: fixed;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    top: 0;
    z-index: 10;
}

.hero {
    min-height: 640px;
    background: url('../images/preset-grid-hero.svg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 120px;
    padding: 30px 0;
}

.gradient-text {
    background: linear-gradient(135deg, rgb(255, 220, 66) 15%, #ff2975 50%, #c77218 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.btn-primary {
    padding: 15px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff2975 50%, #c77218 80%);
    border: none;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.primary-table tbody tr {
    padding: 10px;
    height: 50px;
    background: var(--darker-bg);
}

.primary-table tbody tr th {
    text-align: left;
    padding: 10px;
    border-bottom: 1px solid var(--dark-bg);
    width: calc(100% / 6);
}

.primary-table tbody tr td {
    padding: 10px;
    border-bottom: 1px solid var(--dark-bg);
    width: calc(100% / 5);
    height: 100px;
}

.explain {
    font-size: 1.2rem;
    width: 60%;
    margin: 0 auto;
    line-height: 1.5;
}

.classement {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
    text-align: left;
}

.fiche {
    min-height: 212px;
    background: rgba(13, 17, 23, 0.9);
    border: 1px solid rgba(255, 165, 0, 0.35);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--box-shadow);
}

.fiche.choix {
    border-color: var(--primary-color);
}

.fiche div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.fiche strong {
    font-size: 1.1rem;
}

.fiche p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.35;
    margin: 12px 0;
}

.fiche .btn {
    width: 100%;
    padding: 11px 12px;
    font-size: 0.95rem;
}

.rang,
.etiquette {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.rang {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff2975 50%, #c77218 80%);
    color: white;
    font-weight: 800;
}

.etiquette {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 0.78rem;
    font-weight: 700;
}

.primary-table tbody tr td:nth-child(1) {
    background: linear-gradient(135deg, rgb(255, 220, 66) 15%, #ff2975 50%, #c77218 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}

.primary-table tbody tr:nth-child(1) th:nth-child(2),
.primary-table tbody tr:nth-child(1) th:nth-child(3),
.primary-table tbody tr:nth-child(1) th:nth-child(4) {
    text-align: center;
}

.primary-table tbody tr td:nth-child(2),
.primary-table tbody tr td:nth-child(3),
.primary-table tbody tr td:nth-child(4) {
    text-align: center;
}

.primary-table tbody tr td:nth-child(2) span {
    background: linear-gradient(135deg, #ff2975 50%, #c77218 80%);
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
}

.primary-table tr td a {
    background: none !important;
    text-decoration: none;
    color: white;
    display: inline-block;
    border: 1px solid var(--primary-color);
}

.primary-table tr td a:hover {
    background: var(--primary-color) !important;
    color: white;
    transition: var(--transition);
    border: 1px solid var(--primary-color);
}

.note {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    text-align: center;
    line-height: 35px;
    min-width: 54px;
    width: auto;
    height: 50px;
    font-size: 20px;
}

section {
    padding: 2rem 0;
}







svg {
    width: 100%;
    height: auto;
    fill: var(--accent-color);
}

.avantage {
    background: var(--darker-bg);
    padding: 20px;
    position: relative;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 20px;
}

.avantage h4 {
    font-size: 2rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, rgb(255, 220, 66) 15%, #ff2975 50%, #c77218 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    position: relative;
    top: -20px;
}

.avantage p {
    width: 75%;
    text-align: center;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    margin-bottom: 20px;
}

ul li span svg {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 10px;
    fill: none;
}

ul li {
    display: flex;
    align-items: center;
}

.features-list {
    font-size: 15px;
}

.features-list strong {
    color: var(--primary-color);
}

.tab-avantage-inconvenients h5 {
    background: linear-gradient(135deg, rgb(255, 220, 66) 15%, #ff2975 50%, #c77218 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    margin-bottom: 10px;
}

.tab-avantage-inconvenients li {
    text-align: left;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--text-muted);
}

.img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 330px;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
}

.img-nudyfi {
    background: url('../images/nudify.png');
    background-size: cover;
}

.img-soulgen {
    background-image: url('../images/soulge1.png');
    background-size: cover;
}

.img-promptchan {
    background-image: url('../images/promptchan.jpg');
    background-size: cover;
}

.img-dreamGf {
    background-image: url('../images/dreamGf.png');
    background-size: cover;
}

.img-dreamGf:nth-child(2) {
    background: url('../images/dreamGf2.png');
    background-size: cover;
}

.bg-content {
    background: var(--darker-bg);
    padding: 20px;
    border-radius: 20px;
    padding: 40px;
}

.text-content>div:nth-child(1) {
    padding-right: 120px;
}

.video-container video {
    width: 100%;
    border-radius: 20px;
}

ul li .bi {
    font-size: 25px;
    margin-right: 20px;
}

.soulgen li {
    font-size: 15px;
}

.bi-x-lg {
    color: red;
}

.bi-check-all {
    color: var(--accent-color);
}

.nav-link {
    color: var(--secondary-color);
    font-weight: bold;
}

.nav-link:hover {
    color: var(--accent-color);
}

footer {
    background: var(--darker-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0px;
}

.fixed-footer {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 500px;
    display: none;
    text-align: center;
}

/* ===== MODAL DE VERIFICATION D'AGE ===== */
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.5s ease-out;
}

.age-modal-content {
    background: var(--dark-bg);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: slideInUp 0.5s ease-out;
    position: relative;
    overflow: hidden;
}

.age-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.age-modal-header h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.age-modal-body {
    margin: 2rem 0;
}

.warning-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.age-modal-body h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.age-modal-body p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.age-modal-body ul {
    text-align: left;
    color: var(--text-light);
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.age-modal-body ul li {
    margin-bottom: 0.5rem;
    position: relative;
}

.age-modal-body ul li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

.age-warning {
    color: var(--accent-color) !important;
    font-weight: 600;
    background: rgba(255, 165, 0, 0.1);
    padding: 0.8rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.age-modal-footer {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.btn-age-confirm,
.btn-age-deny {
    padding: 1rem 2rem;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.btn-age-confirm {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-age-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-age-deny {
    background: rgba(255, 41, 117, 0.2);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-age-deny:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Responsive pour le modal */
@media (max-width: 576px) {
    .age-modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }

    .age-modal-header h2 {
        font-size: 1.5rem;
    }

    .warning-icon {
        font-size: 3rem;
    }

    .age-modal-footer {
        gap: 0.8rem;
    }

    .btn-age-confirm,
    .btn-age-deny {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

.resume .bg-content {
    align-items: center;
}

.visuel {
    min-height: 280px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 220, 66, 0.35), transparent 28%),
        radial-gradient(circle at 80% 30%, rgba(255, 41, 117, 0.32), transparent 32%),
        linear-gradient(135deg, #1a1a1a 0%, #0d1117 100%);
    border: 1px solid rgba(255, 165, 0, 0.25);
}

.visuel1 {
    background-image: url('../images/img1.jpg');
    background-size: cover;
    background-position: center;
}

.visuel2 {
    background-image: url('../images/nudify.png');
    background-size: cover;
    background-position: center;
}

.visuel3 {
    background-image: url('../images/dreamGf2.png');
    background-size: cover;
    background-position: center;
}
