/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #000;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.3);
}

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

.nav-brand h1 {
    color: #ff1493;
    font-size: 2rem;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ff1493;
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff1493, #8a2be2);
    transition: width 0.3s ease;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="gradient"><stop offset="0%" stop-color="%23ff1493" stop-opacity="0.1"/><stop offset="100%" stop-color="%23000" stop-opacity="0"/></radialGradient></defs><circle cx="50" cy="50" r="50" fill="url(%23gradient)"/></svg>');
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    color: #fff;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(45deg, #ff1493, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255, 20, 147, 0.5); }
    to { text-shadow: 0 0 30px rgba(255, 20, 147, 0.8), 0 0 40px rgba(138, 43, 226, 0.5); }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: linear-gradient(45deg, #ff1493, #8a2be2);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.4);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 20, 147, 0.6);
}

.cta-secondary {
    background: transparent;
    color: #ff1493;
    border: 2px solid #ff1493;
}

.cta-secondary:hover {
    background: #ff1493;
    color: #fff;
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    max-width: 500px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255, 20, 147, 0.3);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff1493, #8a2be2);
    border-radius: 2px;
}

/* Ranking Section */
.ranking-section {
    background: linear-gradient(135deg, #111 0%, #000 100%);
    padding: 80px 0;
}

.ranking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: #ff1493;
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.3);
}

.product-rank {
    position: absolute;
    top: -10px;
    left: -10px;
    background: linear-gradient(45deg, #ff1493, #8a2be2);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
}

.product-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
    border-radius: 15px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-name {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.product-rating {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.product-price {
    font-size: 1.8rem;
    color: #ff1493;
    font-weight: 800;
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    color: #ccc;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff1493;
    font-weight: bold;
}

.product-cta {
    background: linear-gradient(45deg, #ff1493, #8a2be2);
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.product-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.5);
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #111, #000);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
}

.testimonial-content p {
    color: #ccc;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    color: #fff;
    display: block;
}

.testimonial-author span {
    color: #ff1493;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000, #1a1a1a);
    padding: 60px 0 20px;
    color: #ccc;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section h3 {
    color: #ff1493;
    font-size: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff1493;
}

/* Liens d'Autorité */
.authority-links, .official-partners {
    margin-top: 2rem;
}

.authority-links h4, .official-partners h4 {
    color: #ff1493;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.authority-links ul, .official-partners ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.authority-links li, .official-partners li {
    margin-bottom: 0.5rem;
}

.authority-links a, .official-partners a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.authority-links a:hover, .official-partners a:hover {
    color: #ff1493;
}

/* Nuage de Mots-Clés */
.keywords-cloud {
    grid-column: span 2;
}

.keywords-cloud h4 {
    color: #ff1493;
    margin-bottom: 1.5rem;
    text-align: center;
}

.keywords-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

.keyword-tag {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: #ccc;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: inline-block;
    text-align: center;
    line-height: 1.2;
}

.keyword-tag:hover {
    background: linear-gradient(135deg, #ff1493, #8a2be2);
    color: #fff;
    transform: translateY(-2px);
    border-color: #ff1493;
}

/* Tailles des mots-clés */
.keyword-tag.size-xl {
    font-size: 1.1rem;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ff1493, #8a2be2);
    color: #fff;
}

.keyword-tag.size-lg {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
}

.keyword-tag.size-md {
    font-size: 0.9rem;
    font-weight: 500;
}

.keyword-tag.size-sm {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
}

.keyword-tag.size-xs {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
}

/* Certifications Footer */
.footer-certifications {
    margin-top: 1rem;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.footer-certifications span {
    margin: 0 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

/* Responsive pour le footer */
@media (max-width: 768px) {
    .keywords-cloud {
        grid-column: span 1;
    }
    
    .keywords-grid {
        justify-content: flex-start;
    }
    
    .keyword-tag.size-xl {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
}
/* Floating Elements */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(45deg, #ff1493, #8a2be2);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, #000, #1a1a1a);
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .ranking-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Admin Styles */
.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: #0a0a0a;
    min-height: 100vh;
}

.admin-header {
    text-align: center;
    margin-bottom: 3rem;
}

.admin-header h1 {
    color: #ff1493;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.login-form {
    max-width: 400px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.login-form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 1rem;
    border: 2px solid #333;
    border-radius: 10px;
    background: #0a0a0a;
    color: #fff;
    font-size: 1rem;
}

.login-form input:focus {
    outline: none;
    border-color: #ff1493;
}

.admin-section {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.admin-section h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #333;
    border-radius: 8px;
    background: #0a0a0a;
    color: #fff;
    font-size: 1rem;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, #ff1493, #8a2be2);
    color: #fff;
}

.btn-secondary {
    background: #333;
    color: #fff;
}

.btn-danger {
    background: #dc3545;
    color: #fff;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.articles-list {
    display: grid;
    gap: 1rem;
}

.article-item {
    background: #0a0a0a;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-item h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.article-item p {
    color: #ccc;
    font-size: 0.9rem;
}

.article-actions {
    display: flex;
    gap: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Masquer les liens d'affiliation des moteurs de recherche */
.affiliate-link {
    text-decoration: none !important;
}

.affiliate-link:visited {
    color: inherit;
}

/* Anti-bot protection */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .affiliate-link[data-url] {
        pointer-events: auto;
    }
}

/* TikTok Section */
.tiktok-section {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    text-align: center;
}

.tiktok-section h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tiktok-section p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.tiktok-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.tiktok-embed {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tiktok-embed:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

.tiktok-embed blockquote {
    margin: 0;
    padding: 1rem;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
}

.tiktok-embed section a {
    color: #ff1493;
    text-decoration: none;
    font-weight: bold;
}

.tiktok-embed section p {
    color: #fff;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.tiktok-cta {
    margin-top: 2rem;
}

/* Section Communauté */
.community-section {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 80px 0;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 20, 147, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ff1493;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #ccc;
    font-size: 1.1rem;
}

.community-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-community {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-community:hover {
    transform: translateY(-5px);
    border: 2px solid #ff1493;
}

.feature-community h3 {
    color: #ff1493;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-community p {
    color: #ccc;
    line-height: 1.6;
}

.join-community {
    text-align: center;
    background: linear-gradient(135deg, #ff1493, #8a2be2);
    padding: 3rem;
    border-radius: 20px;
    color: #fff;
}

.join-community h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.join-community p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.close {
    color: #ccc;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ff1493;
}

.auth-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 2px solid #333;
}

.tab-btn {
    flex: 1;
    padding: 1rem;
    background: transparent;
    border: none;
    color: #ccc;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: #ff1493;
    border-bottom: 2px solid #ff1493;
}

.auth-form h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
}

.auth-form input,
.auth-form select {
    width: 100%;
    padding: 15px;
    margin-bottom: 1rem;
    border: 2px solid #333;
    border-radius: 10px;
    background: #0a0a0a;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.auth-form input:focus,
.auth-form select:focus {
    outline: none;
    border-color: #ff1493;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    margin-bottom: 1rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.social-login {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.social-login p {
    color: #ccc;
    margin-bottom: 1rem;
}

.social-btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 0 0.5rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn.tiktok {
    background: #000;
    color: #fff;
    border: 2px solid #ff0050;
}

.social-btn.tiktok:hover {
    background: #ff0050;
    transform: translateY(-2px);
}

.social-btn.google {
    background: #4285f4;
    color: #fff;
}

.social-btn.google:hover {
    background: #357ae8;
    transform: translateY(-2px);
}

/* Dashboard Utilisateur */
.user-dashboard {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 60px 0;
    margin-top: 2rem;
}

.user-dashboard h2 {
    color: #fff;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.dashboard-card {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 20, 147, 0.3);
}

.dashboard-card h3 {
    color: #ff1493;
    margin-bottom: 1.5rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info strong {
    color: #fff;
    font-size: 1.2rem;
}

.user-info p {
    color: #ccc;
    margin: 0;
}

.progress-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.progress-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.progress-item span {
    color: #ccc;
}

.progress-item strong {
    color: #ff1493;
    font-size: 1.1rem;
}

.favorite-products {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fav-product {
    background: rgba(255, 20, 147, 0.1);
    color: #ff1493;
    padding: 0.75rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

/* Bouton de Connexion Flottant */
.floating-login {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 999;
}

.login-btn {
    background: linear-gradient(45deg, #ff1493, #8a2be2);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.6);
}

/* Footer Social */
.social-footer {
    text-align: center;
    margin: 1rem 0;
}

.social-footer a {
    color: #ccc;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.social-footer a:hover {
    color: #ff1493;
}

/* Animations */
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .tiktok-videos {
        grid-template-columns: 1fr;
    }
    
    .community-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .community-features {
        grid-template-columns: 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-login {
        position: fixed;
        bottom: 20px;
        right: 20px;
        top: auto;
        transform: none;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

/* Loading spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #333;
    border-radius: 50%;
    border-top-color: #ff1493;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}