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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2a2a2a;
    --accent-color: #404040;
    --dark-bg: #000000;
    --light-text: #e0e0e0;
    --gray-text: #808080;
    --gradient-1: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    --gradient-2: linear-gradient(135deg, #2a2a2a 0%, #0a0a0a 100%);
    --gradient-3: linear-gradient(135deg, #1f1f1f 0%, #000000 100%);
    --gradient-gold: linear-gradient(135deg, #3a3a3a 0%, #1a1a1a 50%, #000000 100%);
    --gradient-ruby: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #000000 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    overflow-x: hidden;
}

.cursor {
    display: none;
}

.cursor-follower {
    display: none;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: #d0d0d0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 15px;
    border-radius: 25px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    background: rgba(64, 64, 64, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(64, 64, 64, 0.3);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--light-text);
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: #000000;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

img.hero-bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: float 20s infinite ease-in-out;
    z-index: 1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-1);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--gradient-2);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.shape-3 {
    width: 500px;
    height: 500px;
    background: var(--gradient-3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    33% {
        transform: translateY(-30px) rotate(120deg) scale(1.1);
    }
    66% {
        transform: translateY(30px) rotate(240deg) scale(0.9);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(128, 128, 128, 0.5),
                     0 0 40px rgba(128, 128, 128, 0.3),
                     0 0 60px rgba(128, 128, 128, 0.1);
    }
    50% {
        text-shadow: 0 0 30px rgba(128, 128, 128, 0.8),
                     0 0 50px rgba(128, 128, 128, 0.5),
                     0 0 70px rgba(128, 128, 128, 0.3);
    }
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    animation: fadeInUp 1.5s ease;
    max-width: 80%;
    margin: 0 auto;
    padding: 0 20px;
    transform: translateX(-5px);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 4rem);
    line-height: 1.2;
    margin-bottom: 20px;
    animation: glow 3s ease-in-out infinite;
    color: #d0d0d0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    transform: translateX(-20px);
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInFromLeft 1s ease forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
}

.highlight {
    color: #c0c0c0;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: shimmer 3s linear infinite;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.cta-button {
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--gradient-2);
    border: none;
    border-radius: 50px;
    color: var(--light-text);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(64, 64, 64, 0.3);
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards, pulse 2s infinite 2s;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(224, 224, 224, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(64, 64, 64, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) translateX(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateX(-5px);
    }
}

.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 3;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(64, 64, 64, 0.8);
    border-radius: 50%;
    animation: particleFloat 8s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(64, 64, 64, 0.5);
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 0.3;
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 60%; left: 80%; animation-delay: 1s; }
.particle-3 { top: 30%; left: 70%; animation-delay: 2s; }
.particle-4 { top: 80%; left: 20%; animation-delay: 3s; }
.particle-5 { top: 10%; left: 50%; animation-delay: 4s; }
.particle-6 { top: 70%; left: 30%; animation-delay: 5s; }
.particle-7 { top: 40%; left: 90%; animation-delay: 6s; }
.particle-8 { top: 90%; left: 60%; animation-delay: 7s; }

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--accent-color);
    border-radius: 25px;
    opacity: 0.7;
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    margin: 10px auto;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: #b0b0b0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-2);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.title-underline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: slideShine 3s infinite;
}

@keyframes slideShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.devotion {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1a1a1a 100%);
}

.devotion-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lead-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #d0d0d0;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.devotion-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--light-text);
}

.devotion-text .lead-text {
    opacity: 1;
    transform: translateX(0);
}

.devotion-text p:not(.lead-text) {
    opacity: 1;
    transform: translateX(0);
}

.devotion-text p:nth-child(2) { animation-delay: 0.3s; }
.devotion-text p:nth-child(3) { animation-delay: 0.6s; }
.devotion-text p:nth-child(4) { animation-delay: 0.9s; }

.image-frame {
    position: relative;
    padding: 20px;
    background: var(--gradient-2);
    border-radius: 20px;
    animation: pulse 3s infinite;
    box-shadow: 0 0 50px rgba(64, 64, 64, 0.3),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-gold);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.5;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(64, 64, 64, 0.5);
    }
    50% {
        box-shadow: 0 0 60px rgba(64, 64, 64, 0.8);
    }
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--dark-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--light-text);
}

.goddess-photo {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 10px;
    transition: all 0.3s ease;
    /* Protection CSS contre la copie */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.goddess-photo:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
    pointer-events: none;
}

/* Protection globale supplémentaire */
.image-frame {
    position: relative;
    padding: 20px;
    background: var(--gradient-2);
    border-radius: 20px;
    animation: pulse 3s infinite;
    box-shadow: 0 0 50px rgba(64, 64, 64, 0.3),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    -webkit-user-select: none;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-gold);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}

.tribute {
    background: var(--dark-bg);
}

.tribute-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.tribute-text {
    text-align: left;
}

.tribute-content p {
    margin-bottom: 25px;
    line-height: 1.8;
    color: var(--light-text);
    font-size: 1.1rem;
}

.tribute-content .lead-text {
    opacity: 1;
    transform: translateY(0);
}

.tribute-content p:not(.lead-text) {
    opacity: 1;
    transform: translateY(0);
}

.tribute-content p:nth-child(2) { animation-delay: 0.2s; }
.tribute-content p:nth-child(3) { animation-delay: 0.4s; }
.tribute-content p:nth-child(4) { animation-delay: 0.6s; }
.tribute-content p:nth-child(5) { animation-delay: 0.8s; }
.tribute-content p:nth-child(6) { animation-delay: 1.0s; }

.personal {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1a1a1a 100%);
    min-height: 400px;
}

.personal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.personal-image .image-frame {
    position: relative;
    padding: 20px;
    background: var(--gradient-2);
    border-radius: 20px;
    animation: pulse 3s infinite;
    box-shadow: 0 0 50px rgba(64, 64, 64, 0.3),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-gold);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.5;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.personal-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--dark-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--light-text);
}

.personal-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--light-text);
}

.personal-text .lead-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #d0d0d0;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.personal-text .emphasis {
    color: var(--accent-color);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 23, 68, 0.5);
    animation: glow 2s ease-in-out infinite;
}

.personal-text strong {
    color: #c0c0c0;
    font-size: 1.1em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Section Donation */
.donation {
    padding: 100px 0;
    background: var(--gradient-1);
    position: relative;
}

.donation-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.donation-image {
    flex: 0 0 400px;
}

.donation-image .image-frame {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    background: linear-gradient(135deg, rgba(64, 64, 64, 0.2), transparent);
}

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

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

.donation-info {
    flex: 1;
    text-align: center;
}

.donation-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--light-text);
    opacity: 0.9;
}

.crypto-donation {
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid rgba(64, 64, 64, 0.3);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.crypto-address-container {
    margin-bottom: 30px;
}

.crypto-label {
    display: block;
    font-size: 1.1rem;
    color: #c0c0c0;
    margin-bottom: 15px;
    font-weight: 600;
}

.address-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.crypto-address {
    background: rgba(26, 26, 26, 0.8);
    color: #e0e0e0;
    padding: 15px 20px;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    border: 1px solid rgba(64, 64, 64, 0.5);
    word-break: break-all;
    max-width: 400px;
    user-select: all;
    -webkit-user-select: all;
    -moz-user-select: all;
    -ms-user-select: all;
}

.copy-btn {
    background: var(--gradient-2);
    color: var(--light-text);
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(64, 64, 64, 0.3);
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(64, 64, 64, 0.5);
}

.copy-btn:active {
    transform: translateY(0);
}

.donation-note {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(128, 128, 128, 0.3);
    border-radius: 10px;
    padding: 20px;
    text-align: left;
}

.donation-note p {
    margin-bottom: 10px;
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.donation-note p:last-child {
    margin-bottom: 0;
    text-align: center;
    font-style: italic;
    color: #c0c0c0;
}

.donation-note strong {
    color: #d0d0d0;
}

.footer {
    background: #0a0a0a;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(64, 64, 64, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: #b0b0b0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    color: var(--light-text);
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid rgba(64, 64, 64, 0.3);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-2);
    border-color: transparent;
    color: var(--light-text);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--light-text);
}

/* Section Comments */
.comments {
    background: linear-gradient(180deg, #1a1a1a 0%, var(--dark-bg) 100%);
    padding: 100px 0;
}

.comments-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.comment-form-container {
    background: rgba(64, 64, 64, 0.05);
    border: 1px solid rgba(64, 64, 64, 0.2);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid rgba(64, 64, 64, 0.3);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--light-text);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(64, 64, 64, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.form-group textarea {
    min-height: 120px;
    max-height: 200px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-text);
}

.submit-button {
    padding: 15px 40px;
    background: var(--gradient-2);
    border: none;
    border-radius: 50px;
    color: var(--light-text);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(64, 64, 64, 0.3);
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(224, 224, 224, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(64, 64, 64, 0.5);
}

.submit-button:hover::before {
    width: 300px;
    height: 300px;
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.comments-list-container {
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid rgba(64, 64, 64, 0.3);
    border-radius: 20px;
    padding: 30px;
    max-height: 800px;
    overflow-y: auto;
    min-height: 600px;
}

.comments-list-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #c0c0c0;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comment-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(64, 64, 64, 0.25);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease forwards;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.comment-item:hover {
    border-color: rgba(64, 64, 64, 0.4);
    box-shadow: 0 5px 15px rgba(64, 64, 64, 0.2);
    transform: translateY(-2px);
}

.comment-item:has(.comment-media) {
    border-left: 3px solid var(--accent-color);
    background: rgba(64, 64, 64, 0.02);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-author {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1rem;
}

.comment-time {
    font-size: 0.85rem;
    color: var(--light-text);
}

.comment-message {
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
}

.loading-comments {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 40px;
    color: var(--light-text);
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(64, 64, 64, 0.3);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.no-comments {
    text-align: center;
    color: var(--light-text);
    padding: 40px;
    font-style: italic;
}

.success-message,
.error-message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
    animation: slideInDown 0.3s ease;
}

.success-message {
    background: rgba(46, 160, 67, 0.2);
    border: 1px solid rgba(46, 160, 67, 0.5);
    color: #4CAF50;
}

.error-message {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.5);
    color: #F44336;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.welcome-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.welcome-message.show {
    opacity: 1;
    visibility: visible;
}

.welcome-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a0a0a 100%);
    border: 3px solid;
    border-image: linear-gradient(135deg, #404040, #2a2a2a, #1a1a1a) 1;
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    max-width: 600px;
    position: relative;
    animation: welcomeAppear 1s ease;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.welcome-content::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #404040, #2a2a2a, #1a1a1a);
    border-radius: 30px;
    z-index: -1;
}

.welcome-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: sparkle 2s ease-in-out infinite;
}

.welcome-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #b8b8b8;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
    font-weight: 900;
    animation: glow 2s ease-in-out infinite;
}

.welcome-content p {
    font-size: 1.2rem;
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.5s both;
}

.welcome-content p a {
    color: #FFD700;
    text-decoration: underline;
    font-weight: bold;
    transition: all 0.3s ease;
}

.welcome-content p a:hover {
    color: #FFA500;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transform: scale(1.05);
}

.close-welcome {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-welcome:hover {
    background: rgba(64, 64, 64, 0.2);
    transform: rotate(90deg);
}

@keyframes welcomeAppear {
    0% {
        transform: scale(0.5) rotateY(180deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        filter: brightness(1.5);
    }
}

/* Styles spéciaux pour Goddess Scarlett */
.goddess-username {
            color: #d0d0d0;
    font-family: 'Playfair Display', serif !important;
    font-weight: 900 !important;
    font-size: 1.3rem !important;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: goddessGlow 3s ease-in-out infinite;
    letter-spacing: 1px;
    position: relative;
}

.goddess-username::before {
    content: '👑 ';
    font-size: 1rem;
}

.goddess-username::after {
    content: ' ✨';
    font-size: 0.9rem;
}

@keyframes goddessGlow {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    }
    50% {
        filter: brightness(1.3) drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    }
}

.goddess-form-label {
    display: none !important;
}

.goddess-username-display {
            color: #d0d0d0;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.1rem;
    padding: 10px 20px;
    border: 2px solid;
    border-image: linear-gradient(135deg, #404040, #2a2a2a, #1a1a1a) 1;
    border-radius: 15px;
    text-align: center;
    animation: goddessGlow 3s ease-in-out infinite;
    position: relative;
    margin-bottom: 25px;
}

.goddess-username-display::before {
    content: '👑 Goddess Scarlett ✨';
            color: #d0d0d0;
}

/* Scrollbar personnalisé pour la liste des commentaires */
.comments-list-container::-webkit-scrollbar {
    width: 8px;
}

.comments-list-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.comments-list-container::-webkit-scrollbar-thumb {
    background: var(--gradient-2);
    border-radius: 10px;
}

.comments-list-container::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Live Section */
.live-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.live-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(64, 64, 64, 0.1) 0%, transparent 50%);
}

.live-content {
    position: relative;
    z-index: 1;
}

.live-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.live-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.live-platform-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid rgba(64, 64, 64, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: var(--light-text);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.live-platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(64, 64, 64, 0) 0%, rgba(64, 64, 64, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.live-platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(64, 64, 64, 0.3);
    border-color: rgba(64, 64, 64, 0.5);
}

.live-platform-card:hover::before {
    opacity: 1;
}

.live-platform-card:hover .platform-icon {
    transform: scale(1.2) rotate(5deg);
}

.live-platform-card:hover .platform-link {
    color: #d0d0d0;
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
    display: inline-block;
}

.live-platform-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    color: #d0d0d0;
}

.live-platform-card p {
    font-size: 0.95rem;
    color: var(--gray-text);
    margin-bottom: 15px;
}

.platform-link {
    display: inline-block;
    color: var(--gray-text);
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-schedule {
    text-align: center;
    margin-top: 40px;
}

.schedule-info {
    color: var(--gray-text);
    font-size: 0.95rem;
    font-style: italic;
}

@media (max-width: 1024px) {
    .comments-content {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 800px;
    }
    
    .comments-list-container {
        max-height: 700px;
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        max-width: 80%;
        margin: 0 auto;
        padding: 30px 20px;
        transform: translateX(-8px);
        animation: fadeInUpTablet 1.5s ease;
    }
    
    @keyframes fadeInUpTablet {
        from {
            opacity: 0;
            transform: translateY(30px) translateX(-8px);
        }
        to {
            opacity: 1;
            transform: translateY(0) translateX(-8px);
        }
    }
    
    .hero-title {
        transform: translateX(-10px);
    }
    
    .donation-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }
    
    .donation-image {
        flex: 1;
        width: 100%;
        max-width: 100%;
    }
    
    .donation-image .image-frame {
        height: 300px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex !important;
        flex-direction: column;
        gap: 20px;
        padding: 30px;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 0 0 20px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active .nav-link {
        padding: 15px 20px;
        border-radius: 10px;
        text-align: center;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active .nav-link:hover {
        background: rgba(64, 64, 64, 0.15);
        transform: translateX(5px);
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }
    
    .devotion-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tribute-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .tribute-text {
        text-align: center;
    }
    
    .personal-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .personal-image {
        order: 1;
    }
    
    .personal-text {
        order: 2;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links,
    .footer-social {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .comments-content {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }
    
    .comment-form-container {
        order: 1;
    }
    
    .comments-list-container {
        order: 2;
        max-height: 500px;
        min-height: 400px;
    }
    
    /* Améliorations mobile pour les nouveaux éléments */
    
    .welcome-content {
        padding: 30px 20px;
        margin: 10px;
        max-width: calc(100% - 20px);
        border-radius: 20px;
    }
    
    .welcome-content h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .welcome-content p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .welcome-content p a {
        font-size: 1rem;
        word-break: break-all;
    }
    
    .comment-form {
        gap: 20px;
    }
    
    .form-group label {
        font-size: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .submit-button {
        padding: 12px 30px;
        font-size: 1rem;
        align-self: stretch;
        text-align: center;
    }
    
    .comments-list-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .comment-item {
        padding: 20px;
        margin-bottom: 15px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        margin-bottom: 8px;
    }
    
    .comment-author {
        font-size: 0.95rem;
    }
    
    .comment-time {
        font-size: 0.8rem;
    }
    
    .comment-message {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .goddess-username {
        font-size: 1.1rem !important;
    }
    
    .goddess-username-display {
        padding: 8px 15px;
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    /* Ajustements pour les très petits écrans */
    @media (max-width: 480px) {
        
        .welcome-content {
            padding: 20px 15px;
        }
        
        .welcome-content h2 {
            font-size: 1.5rem;
        }
        
        .comment-form-container,
        .comments-list-container {
            padding: 20px;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .hero-content {
            max-width: 85%;
            margin: 0 auto;
            padding: 20px 15px;
            transform: translateX(0px);
            animation: fadeInUpMobile 1.5s ease;
        }
        
        @keyframes fadeInUpMobile {
            from {
                opacity: 0;
                transform: translateY(30px) translateX(0px);
            }
            to {
                opacity: 1;
                transform: translateY(0) translateX(0px);
            }
        }
        
        .hero-title {
            font-size: clamp(1.6rem, 5vw, 2.5rem);
            transform: translateX(-20px);
        }
        
        .hero-subtitle {
            transform: translateX(10px);
        }
        
        .cta-button {
            transform: translateX(10px);
        }
        
    }
}

/* Styles pour le système d'upload de fichiers */
.file-upload-container {
    position: relative;
    margin-bottom: 15px;
}

.file-input {
    display: none;
}

.file-upload-label {
    display: inline-block;
    padding: 12px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--light-text);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    min-width: 200px;
}

.file-upload-label:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.file-upload-text {
    font-weight: 500;
}

.file-info {
    font-size: 0.8rem;
    color: var(--light-text);
    margin-top: 8px;
    text-align: center;
}

.file-preview {
    display: none;
    margin-top: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(64, 64, 64, 0.3);
}

.file-preview-image,
.file-preview-video {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

.file-preview-video {
    background: #000;
}

.remove-file-btn {
    display: none;
    margin-top: 10px;
    padding: 6px 12px;
    background: var(--accent-color);
    color: var(--light-text);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.remove-file-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
}

/* Styles pour l'affichage des médias dans les commentaires */
.comment-media {
    position: relative;
    margin-top: 15px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(64, 64, 64, 0.3);
}

.comment-image,
.comment-video {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.comment-image:hover,
.comment-video:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.comment-video {
    background: #000;
    max-height: 300px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.comment-media:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
}

/* Modal pour affichage en plein écran */
.media-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.media-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.media-modal-image,
.media-modal-video {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.media-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--light-text);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.media-modal-close:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

/* Responsive pour les médias */
@media (max-width: 768px) {
    .file-upload-label {
        min-width: 150px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .file-preview-image,
    .file-preview-video {
        max-height: 150px;
    }
    
    .comment-image,
    .comment-video {
        max-width: 100%;
    }
    
    .comment-video {
        max-height: 200px;
    }
    
    .media-modal-content {
        max-width: 95%;
        max-height: 85%;
    }
    
    .media-modal-close {
        top: -40px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    .media-modal-image,
    .media-modal-video {
        max-height: 80vh;
    }
}

@media (max-width: 480px) {
    .file-upload-label {
        min-width: 120px;
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .file-info {
        font-size: 0.7rem;
    }
    
    .file-preview-image,
    .file-preview-video {
        max-height: 120px;
    }
    
    .comment-video {
        max-height: 150px;
    }
    
    .media-modal-close {
        top: -35px;
        font-size: 25px;
        width: 35px;
        height: 35px;
    }
}