/* Manual Shared Styles */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background-color: var(--dark-bg);
    background-image: url('');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.return-pet-btn {
    pointer-events: none;
}

.accordion-button:not(.collapsed) {
    color: var(--light-text);
    background-color: var(--dark-bg);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(61, 90, 241, 0.25);
}

.main-content {
    padding-top: 100px;
    min-height: calc(100vh - 100px);
    position: relative;
    z-index: 2;
    background-color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
    .manual-title {
        font-size: 2rem;
    }
    
    .nav-menu {
        justify-content: center;
        margin-top: 15px;
    }
}
.pet-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.2);
}

.pet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.pet-card .card-img-top {
    border-radius: 8px 8px 0 0;
}

.pet-card .card-body {
    padding: 1.25rem 0 0;
}

.pet-attribute {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.pet-attribute i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.pet-attribute {
    margin-bottom: 8px;
}

.pet-attribute i {
    width: 24px;
    text-align: center;
    margin-right: 8px;
    color: var(--accent-color);
}

.return-pet-btn {
    margin-top: 10px;
}

.nft-badge {
    background: linear-gradient(45deg, #ff57a2, #3d5af1);
    color: white;
}

/* Styles pour les onglets du manuel */
.nav-tabs .nav-link {
    color: #ffffff !important;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.2);
}

.nav-tabs .nav-link.active {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

/* Style pour le contenu des onglets */
.tab-content {
    color: #ffffff;
}

/* Style pour les éléments de liste dans les onglets */
.list-group-item {
    background-color: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.1);
}

.list-group-item strong {
    color: #ffffff;
}

.vip-feature {
    position: relative;
    color: #ffc107;
}

.vip-feature::after {
    content: "VIP";
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ffc107;
    color: #212529;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 3px;
    font-weight: bold;
}

.step-list {
    counter-reset: step-counter;
    padding-left: 0;
}

.step-list li {
    position: relative;
    list-style: none;
    padding-left: 40px;
    margin-bottom: 15px;
    counter-increment: step-counter;
}

.step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary-color);
    color: var(--light-text);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}
.property-card {
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(61, 90, 241, 0.3);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.back-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(61, 90, 241, 0.4);
    color: var(--light-text);
}

.site-footer {
    background-color: rgba(10, 10, 10, 0.9);
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
}

/* Responsive */
@media (max-width: 768px) {
    .manual-title {
        font-size: 2rem;
    }
    
    .nav-menu {
        justify-content: center;
        margin-top: 15px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}
:root {
    --primary-color: #3d5af1;
    --secondary-color: #ff57a2;
    --dark-bg: #0a0a0a;
    --light-text: #ffffff;
    --accent-color: #3df0f1;
    --card-bg: rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-y: scroll;
    margin: 0;
    padding: 0;
}

/* Header */
.site-header {
    background-color: rgba(10, 10, 10, 0.9);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.logo img {
    height: 40px;
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-left: 20px;
}

.nav-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

/* Main Content */
.main-content {
    margin-top: 80px;
    padding: 20px 0 60px;
}

.manual-header {
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(61, 90, 241, 0.1) 0%, rgba(255, 87, 162, 0.1) 100%);
    margin-bottom: 40px;
}

.manual-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(61, 240, 241, 0.5);
}

.manual-subtitle {
    font-size: 1.5rem;
    color: var(--light-text);
    opacity: 0.9;
    margin-bottom: 20px;
}

.manual-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Manual Sections */
.manual-section {
    margin-bottom: 50px;
    background: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.manual-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.section-title {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

/* Cards & Badges */
.card-header.nft-card-header {
    background: linear-gradient(45deg, #8a2be2, #4b0082) !important;
}

.badge.nft-badge {
    background: linear-gradient(45deg, #8a2be2, #4b0082);
    color: white;
}

/* Cards */
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.card-header {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 15px 20px;
    border: none;
}

.card-body {
    padding: 20px;
}

/* Tables */
.table {
    color: var(--light-text);
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
}

.table thead th {
    background-color: var(--primary-color);
    border: none;
    padding: 15px;
}

.table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2a4bd9;
    transform: translateY(-2px);
}

/* Utility Classes */
.bg-dark {
    background-color: var(--dark-bg) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-warning {
    background-color: #ffc107 !important;
}

.text-white {
    color: var(--light-text) !important;
}

.text-dark {
    color: #212529 !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

/* Badges */
.badge {
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
}

.vip-badge {
    background-color: #ffc107;
    color: #212529;
}

.vip-only-badge {
    background-color: #212529;
    color: #ffffff;
}

/* Alerts */
.alert {
    border-radius: 8px;
    padding: 15px 20px;
    margin: 20px 0;
    border: none;
}

.alert-warning {
    background-color: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.alert-info {
    background-color: rgba(13, 110, 253, 0.2);
    color: #0dcaf0;
}

/* Images */
.manual-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.img-caption {
    text-align: center;
    font-style: italic;
    opacity: 0.8;
    margin-top: 5px;
    font-size: 0.9rem;
}

/* Footer */
.site-footer {
    background-color: rgba(10, 10, 10, 0.9);
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* Responsive */
@media (max-width: 768px) {
    .manual-title {
        font-size: 2.2rem;
    }
    
    .manual-subtitle {
        font-size: 1.2rem;
    }
    
    .manual-section {
        padding: 20px 15px;
    }
}

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

.manual-section {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2a4bd9;
}
