
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0d9ed8;
    --secondary-color: #0a7cb8;
    --dark-bg: #0a0e1a;
    --darker-bg: #05070f;
    --light-text: #ffffff;
    --gray-text: #a0a0a0;
    --accent-gradient: linear-gradient(135deg, #0d9ed8 0%, #0a7cb8 100%);
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(13, 158, 216, 0.2);
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(13, 158, 216, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--light-text);
}

.plus {
    color: var(--primary-color);
    font-weight: 900;
}

.logo-subtitle {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--gray-text);
    margin-top: -5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s;
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger div {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #000;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
    image-rendering: auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.7) 0%, rgba(13, 158, 216, 0.2) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(10, 14, 26, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.plus-hero {
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(13, 158, 216, 0.8);
}

.hero-subtitle {
    display: block;
    font-size: 1.2rem;
    letter-spacing: 8px;
    color: var(--gray-text);
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--gray-text);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(13, 158, 216, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--accent-gradient);
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(13, 158, 216, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(13, 158, 216, 0.5);
}

.discord-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: #5865F2;
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
}

.discord-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.5);
    background: #4752C4;
}

.discord-button svg {
    width: 24px;
    height: 24px;
}


.credit {
    margin-top: 3rem;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.credit p {
    font-size: 0.9rem;
    color: var(--gray-text);
}

.credit-name {
    color: var(--primary-color);
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50px;
    animation: scroll 2s infinite;
}

.section {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 50px;
}

.about {
    background: var(--darker-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-text p {
    color: var(--gray-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.features-list .icon {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(13, 158, 216, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.feature-card p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* Rules Section */
.rules {
    background: var(--dark-bg);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.rule-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2.5rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.rule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.rule-card:hover::before {
    opacity: 1;
}

.rule-card:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.rule-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(13, 158, 216, 0.4);
}

.rule-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.rule-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

.secondary-button {
    display: inline-block;
    margin-top: 3rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.secondary-button:hover {
    background: var(--primary-color);
    color: var(--light-text);
}

.whitelist {
    background: var(--darker-bg);
}

.whitelist-content-center {
    max-width: 800px;
    margin: 0 auto;
}

.wl-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.wl-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.wl-step {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.step-number {
    min-width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--gray-text);
}

.staff {
    background: var(--dark-bg);
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.staff-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.staff-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(13, 158, 216, 0.2);
}

.staff-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.staff-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.staff-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.staff-card p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.contact {
    background: var(--darker-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info p {
    color: var(--gray-text);
    margin-bottom: 2rem;
}

.social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    text-decoration: none;
    color: var(--light-text);
    transition: all 0.3s;
}

.social-link:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.social-icon {
    font-size: 1.5rem;
}

.server-info {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2.5rem;
    border-radius: 15px;
}

.server-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.info-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-item:last-child {
    border-bottom: none;
}

.copy-text {
    background: rgba(13, 158, 216, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-family: monospace;
    color: var(--primary-color);
}

.status-online {
    color: #4caf50;
    font-weight: 600;
}

.status-offline {
    color: #f44336;
    font-weight: 600;
}

/* Boutique Styles */
.boutique {
    padding: 6rem 0;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(5, 10, 20, 0.98) 0%, rgba(10, 15, 30, 0.95) 100%);
}

.boutique .container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    max-width: 100%;
    padding: 0 2rem;
}

.shop-sidebar {
    position: sticky;
    top: 120px;
    width: 280px;
    background: linear-gradient(135deg, rgba(13, 158, 216, 0.08) 0%, rgba(5, 10, 20, 0.95) 100%);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(13, 158, 216, 0.3);
    border-radius: 24px;
    padding: 2rem;
    flex-shrink: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(13, 158, 216, 0.15);
    transition: all 0.3s ease;
}

.shop-sidebar:hover {
    border-color: rgba(13, 158, 216, 0.6);
    box-shadow: 0 25px 70px rgba(13, 158, 216, 0.25);
    transform: translateY(-5px);
}

.shop-sidebar::before {
    display: none;
}

.shop-sidebar h3 {
    color: var(--light-text);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(13, 158, 216, 0.5));
}

.shop-sidebar h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(13, 158, 216, 0.8);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.2rem;
    color: var(--gray-text);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    position: relative;
    background: transparent;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-gradient);
    border-radius: 0 3px 3px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 10px rgba(13, 158, 216, 0.6);
}

.sidebar-link::after {
    display: none;
}

.sidebar-link:hover {
    background: rgba(13, 158, 216, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
    border-color: rgba(13, 158, 216, 0.3);
    box-shadow: 0 0 20px rgba(13, 158, 216, 0.2);
}

.sidebar-link:hover::before {
    opacity: 1;
}

.sidebar-link.active {
    background: var(--accent-gradient);
    color: var(--light-text);
    font-weight: 700;
    box-shadow: 0 0 25px rgba(13, 158, 216, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.sidebar-link.active::before {
    opacity: 0;
}

.sidebar-link.active::after {
    display: none;
}

.shop-content {
    flex: 1;
    min-width: 0;
    width: 100%;
    overflow: hidden;
}

.shop-category {
    margin-bottom: 5rem;
    scroll-margin-top: 120px;
    padding: 3.5rem;
    background: linear-gradient(135deg, rgba(5, 10, 20, 0.98) 0%, rgba(10, 15, 30, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 2px solid rgba(13, 158, 216, 0.25);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    width: 100%;
    overflow: visible;
    position: relative;
}

.shop-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(13, 158, 216, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.shop-category:hover::before {
    opacity: 1;
}

.shop-category:hover {
    border-color: rgba(13, 158, 216, 0.5);
    box-shadow: 0 20px 60px rgba(13, 158, 216, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.shop-category h2 {
    position: relative;
    padding-left: 1.5rem;
    padding-right: 0.5rem;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.shop-category-title {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 0.6rem;
    position: relative;
    padding-left: 1.5rem;
    padding-right: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.2;
}

.shop-category-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 80%;
    background: var(--accent-gradient);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(13, 158, 216, 0.6);
}

.shop-category h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 80%;
    background: var(--accent-gradient);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(13, 158, 216, 0.6);
}

.category-description {
    margin-top: 0.4rem;
    margin-bottom: 1.5rem;
    color: var(--gray-text);
    font-size: 1.05rem;
    padding-left: 1.5rem;
    padding-right: 1rem;
    line-height: 1.5;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    box-sizing: border-box;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
    margin-top: 1.2rem;
}

@media (min-width: 1600px) {
    .shop-grid {
        grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
        gap: 1.8rem;
    }
}

.shop-item {
    background: linear-gradient(135deg, rgba(5, 10, 20, 0.98) 0%, rgba(10, 15, 30, 0.95) 100%);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid rgba(13, 158, 216, 0.35);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(13, 158, 216, 0.2);
}

@keyframes neonPulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(13, 158, 216, 0.3), 0 0 50px rgba(13, 158, 216, 0.1);
    }
    50% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 40px rgba(13, 158, 216, 0.5), 0 0 70px rgba(13, 158, 216, 0.2);
    }
}

.shop-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    border-radius: 16px;
}

.shop-item:hover::before {
    opacity: 0.05;
}

.shop-item:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 0 25px 70px rgba(13, 158, 216, 0.6), 0 0 80px rgba(13, 158, 216, 0.4), 0 0 120px rgba(13, 158, 216, 0.2);
}

.shop-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    z-index: 1;
}

.shop-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(10, 14, 26, 0.95), transparent);
    pointer-events: none;
}

.shop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 100%;
    transition: transform 0.5s ease;
}

.shop-item:hover .shop-image img {
    transform: scale(1.15) rotate(1deg);
}

.shop-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(13, 158, 216, 0.5);
    z-index: 2;
}

.shop-info {
    padding: 1.5rem;
    background: transparent;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    overflow: hidden;
}

.shop-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: var(--light-text);
    font-weight: 700;
    letter-spacing: 0.3px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
}

.shop-info p {
    color: var(--gray-text);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
    font-weight: 400;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.shop-price {
    font-size: 1.6rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.8rem 0;
    display: inline-block;
    text-shadow: 0 0 30px rgba(13, 158, 216, 0.3);
}

.shop-button {
    background: var(--accent-gradient);
    color: white;
    border: 2px solid transparent;
    padding: 11px 26px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(13, 158, 216, 0.4);
    position: relative;
    overflow: hidden;
}

.shop-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.shop-button:hover::before {
    width: 300px;
    height: 300px;
}

.shop-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(13, 158, 216, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.shop-button:active {
    transform: translateY(-1px);
}

.shop-button:disabled {
    background: rgba(100, 100, 100, 0.3);
    cursor: not-allowed;
    box-shadow: none;
}

.shop-button:disabled:hover {
    transform: none;
    border-color: transparent;
}

.shop-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 158, 216, 0.5);
}

.shop-button:disabled {
    background: linear-gradient(135deg, #666 0%, #444 100%);
    cursor: not-allowed;
    opacity: 0.6;
}

.shop-button:disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(13, 158, 216, 0.3);
}

.shop-category {
    margin-bottom: 5rem;
}

.vip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1.2rem;
}

@media (max-width: 1200px) {
    .vip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vip-grid {
        grid-template-columns: 1fr;
    }
}

.vip-item {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(13, 158, 216, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.3);
    padding-top: 3rem;
}

.vip-bronze {
    border-color: rgba(205, 127, 50, 0.7);
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.15), rgba(139, 69, 19, 0.05));
}

.vip-bronze:hover {
    border-color: rgba(205, 127, 50, 1);
    box-shadow: 0 10px 40px rgba(205, 127, 50, 0.5);
}

.vip-silver {
    border-color: rgba(192, 192, 192, 0.8);
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.15), rgba(169, 169, 169, 0.05));
}

.vip-silver:hover {
    border-color: rgba(192, 192, 192, 1);
    box-shadow: 0 10px 40px rgba(192, 192, 192, 0.5);
}

.vip-gold {
    border-color: rgba(255, 215, 0, 0.8);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.05));
}

.vip-gold:hover {
    border-color: rgba(255, 215, 0, 1);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.6);
}

.vip-item:hover {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.vip-featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(13, 158, 216, 0.1), rgba(13, 158, 216, 0.05));
}

.vip-premium {
    border-color: #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
}

.vip-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: white;
    padding: 12px 35px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(13, 158, 216, 0.4);
    white-space: nowrap;
    letter-spacing: 1px;
}

.vip-badge-bronze {
    background: linear-gradient(135deg, #CD7F32, #8B4513);
    box-shadow: 0 5px 20px rgba(205, 127, 50, 0.6);
}

.vip-badge-silver {
    background: linear-gradient(135deg, #E8E8E8, #A9A9A9);
    box-shadow: 0 5px 20px rgba(192, 192, 192, 0.6);
}

.vip-badge-gold {
    background: linear-gradient(135deg, #FFD700, #FF8C00);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.7);
}

.featured-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
}

.premium-tag {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.vip-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    min-height: 280px;
}

.vip-features li {
    padding: 1rem 0;
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.vip-features li:last-child {
    border-bottom: none;
}

.vip-item .shop-info {
    display: flex;
    flex-direction: column;
}

.vip-item .shop-button {
    margin-top: auto;
}

.unit-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(13, 158, 216, 0.6), 0 0 60px rgba(13, 158, 216, 0.4), 0 0 100px rgba(13, 158, 216, 0.2);
}

.unit-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.unit-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.unit-features li {
    padding: 0.7rem 0;
    color: var(--gray-text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.unit-features li:last-child {
    border-bottom: none;
}

.requirement {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.3);
    color: #FF9800;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--dark-bg);
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 0 50px rgba(13, 158, 216, 0.3);
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.modal-content h3 {
    color: var(--light-text);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.close {
    color: var(--gray-text);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--primary-color);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.payment-method {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.payment-method h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-icon {
    font-size: 1.5rem;
}

.payment-method ol {
    margin-left: 1.2rem;
    color: var(--gray-text);
}

.payment-method li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.payment-method strong {
    color: var(--light-text);
}

.important-notice {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.important-notice h4 {
    color: #f44336;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.important-notice ul {
    margin-left: 1.2rem;
    color: var(--gray-text);
}

.important-notice li {
    margin-bottom: 0.5rem;
}

/* Modal Info Styles */
.modal-info {
    background: linear-gradient(135deg, rgba(13, 158, 216, 0.08), rgba(13, 158, 216, 0.03));
    border: 1px solid rgba(13, 158, 216, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.modal-price {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 2rem 0;
    letter-spacing: 1px;
    text-shadow: 0 0 30px rgba(13, 158, 216, 0.3);
}

.payment-instruction {
    background: rgba(13, 158, 216, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.payment-instruction:hover {
    background: rgba(13, 158, 216, 0.08);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(13, 158, 216, 0.15);
}

.payment-instruction h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-instruction ol {
    margin-left: 1.5rem;
    color: var(--light-text);
    line-height: 2;
}

.payment-instruction li {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 0.5rem;
}

.payment-instruction li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.payment-instruction li a:hover {
    border-bottom: 2px solid var(--primary-color);
    text-shadow: 0 0 10px rgba(13, 158, 216, 0.5);
}

.payment-instruction strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Modal Images */
.modal-images {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 2rem auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal-images img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.modal-images img.slide-in-right {
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.modal-images img.slide-in-left {
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.modal-images img.slide-out-left {
    animation: slideOutLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.modal-images img.slide-out-right {
    animation: slideOutRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(50%);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(13, 158, 216, 0.8);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 5px;
}

.carousel-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(13, 158, 216, 0.6);
}

.indicator.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
    transform: scale(1.2);
}

.footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(13, 158, 216, 0.1);
    padding: 3rem 0 1rem;
}


.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, rgba(5, 10, 20, 0.98) 0%, rgba(13, 158, 216, 0.15) 100%);
    text-align: center;
    border-bottom: 2px solid rgba(13, 158, 216, 0.3);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(13, 158, 216, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--gray-text);
}

.general-header {
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.95) 0%, rgba(13, 158, 216, 0.15) 100%);
    border-bottom: 1px solid rgba(13, 158, 216, 0.3);
}

.general-header h1 {
    background: linear-gradient(135deg, #0d9ed8 0%, #0a7cb8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-header {
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.95) 0%, rgba(76, 175, 80, 0.15) 100%);
    border-bottom: 1px solid rgba(76, 175, 80, 0.3);
}

.legal-header h1 {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.illegal-header {
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.95) 0%, rgba(244, 67, 54, 0.15) 100%);
    border-bottom: 1px solid rgba(244, 67, 54, 0.3);
}

.illegal-header h1 {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guide-header {
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.95) 0%, rgba(255, 152, 0, 0.15) 100%);
    border-bottom: 1px solid rgba(255, 152, 0, 0.3);
}

.guide-header h1 {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rules-nav {
    background: var(--dark-bg);
    padding: 2rem 0;
    position: sticky;
    top: 70px;
    z-index: 100;
    border-bottom: 1px solid rgba(13, 158, 216, 0.1);
}

.rules-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.rule-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    text-decoration: none;
    color: var(--light-text);
    transition: all 0.3s;
}

.rule-category:hover,
.rule-category.active {
    border-color: var(--primary-color);
    background: rgba(13, 158, 216, 0.1);
}

.category-icon {
    font-size: 2rem;
}

.content-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--card-bg);
    border: 2px dashed var(--card-border);
    border-radius: 15px;
    margin: 2rem 0;
}

.content-placeholder p {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 1rem;
}

.content-placeholder ul {
    text-align: left;
    max-width: 500px;
    margin: 1.5rem auto;
    color: var(--gray-text);
}

.content-placeholder ul li {
    margin-bottom: 0.5rem;
}

/* Rules Images */
.rules-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0;
}

.rules-images img {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.rules-images img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(13, 158, 216, 0.2);
    border-color: var(--primary-color);
}

.legal-section,
.illegal-section,
.guide-section {
    background: var(--dark-bg);
}

.illegal-section {
    background: var(--darker-bg);
}

.wl-cta {
    text-align: center;
    margin-top: 3rem;
}

.wl-conditions {
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 2.5rem;
    margin-top: 3rem;
}

.wl-conditions h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.conditions-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.conditions-list li {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(13, 158, 216, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.conditions-list li:hover {
    background: rgba(13, 158, 216, 0.1);
    transform: translateX(5px);
}

.condition-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.conditions-list li span:not(.condition-icon) {
    flex: 1;
    color: var(--light-text);
    font-weight: 500;
}

.conditions-list li small {
    display: block;
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.notions {
    background: var(--darker-bg);
}

.notions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.notion-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s;
}

.notion-card:hover {
    transform: translateX(5px);
    border-left-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(13, 158, 216, 0.2);
}

.notion-number {
    display: inline-block;
    background: var(--accent-gradient);
    color: var(--light-text);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.notion-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.notion-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

.rules-selection {
    background: var(--darker-bg);
    padding: 80px 0;
}

.rules-menu {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rule-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-left: 4px solid var(--primary-color);
    border-radius: 10px;
    text-decoration: none;
    color: var(--light-text);
    transition: all 0.3s ease;
}

.rule-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 20px rgba(13, 158, 216, 0.2);
}

.rule-icon {
    font-size: 3rem;
    min-width: 60px;
    text-align: center;
}

.rule-content {
    flex: 1;
}

.rule-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    color: var(--light-text);
}

.rule-content p {
    color: var(--gray-text);
    font-size: 0.95rem;
}

.rule-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.rule-item:hover .rule-arrow {
    transform: translateX(10px);
}

/* Color variations */
.rule-general {
    border-left-color: #0d9ed8;
}

.rule-legal {
    border-left-color: #4caf50;
}

.rule-legal:hover {
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.2);
}

.rule-illegal {
    border-left-color: #f44336;
}

.rule-illegal:hover {
    box-shadow: 0 5px 20px rgba(244, 67, 54, 0.2);
}

.rule-guide {
    border-left-color: #ff9800;
}

.rule-guide:hover {
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.2);
}

/* Back Button */


/* Back Button */
.back-button {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.back-button:hover {
    transform: translateX(-5px);
}

.guide-section-block {
    margin-bottom: 4rem;
}

.guide-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.guide-header .guide-subtitle {
    color: #ff9800;
}

.hierarchy-diagram {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hierarchy-level {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hierarchy-box {
    padding: 1.5rem 3rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.3rem;
    text-align: center;
    border: 2px solid;
    transition: all 0.3s;
}

.hierarchy-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hierarchy-box.mob {
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
    color: #ffd700;
}

.hierarchy-box.mc {
    background: rgba(138, 43, 226, 0.1);
    border-color: #8a2be2;
    color: #8a2be2;
}

.hierarchy-box.gang {
    background: rgba(244, 67, 54, 0.1);
    border-color: #f44336;
    color: #f44336;
}

.hierarchy-box.set {
    background: rgba(255, 152, 0, 0.1);
    border-color: #ff9800;
    color: #ff9800;
}

.hierarchy-box.clique {
    background: rgba(13, 158, 216, 0.1);
    border-color: #0d9ed8;
    color: #0d9ed8;
}

.hierarchy-notes {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin-top: 2rem;
}

.hierarchy-notes p {
    color: var(--gray-text);
    margin-bottom: 0.5rem;
}

.hierarchy-notes p strong {
    color: var(--light-text);
}

.rules-block {
    background: rgba(244, 67, 54, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(244, 67, 54, 0.2);
}

.illegal-rule {
    border-left-color: #f44336;
}

.illegal-rule:hover {
    border-color: #f44336;
}

.illegal-rule .rule-number {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: var(--light-text);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(244, 67, 54, 0.4);
}

.content-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2.5rem;
    border-radius: 15px;
}

.content-box h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.content-box p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-box strong {
    color: var(--light-text);
}

.definitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.definition-card {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s;
}

.definition-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.definition-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-decoration: underline;
}

.definition-card p {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.definition-card ul {
    list-style: none;
    margin-top: 1rem;
}

.definition-card li {
    color: var(--light-text);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.definition-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.mort-rp-block {
    background: rgba(139, 0, 0, 0.1);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(139, 0, 0, 0.3);
}

.mort-rule {
    background: rgba(139, 0, 0, 0.1);
    border: 2px solid rgba(139, 0, 0, 0.3);
}

.mort-rule:hover {
    border-color: #8b0000;
}

.mort-rule h3 {
    color: #ff6b6b;
    font-size: 1.3rem;
    text-align: center;
}

.mort-definitions {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: center;
}

.mort-definitions p {
    color: var(--gray-text);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.mort-definitions strong {
    color: #ff6b6b;
}

.important-note {
    background: rgba(244, 67, 54, 0.1);
    border: 2px solid rgba(244, 67, 54, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.important-note p {
    color: var(--light-text);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.important-note p strong {
    color: #f44336;
}

.example-box {
    background: rgba(13, 158, 216, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.example-box h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.example-box p {
    color: var(--gray-text);
    margin-bottom: 0.5rem;
}

.footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(13, 158, 216, 0.1);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo p {
    color: var(--gray-text);
    margin-top: 1rem;
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray-text);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scroll {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--darker-bg);
        width: 100%;
        padding: 2rem;
        transition: right 0.3s;
        border-top: 1px solid var(--card-border);
    }

    .nav-links.active {
        right: 0;
    }

    .burger {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Boutique responsive */
    .boutique .container {
        flex-direction: column;
        gap: 2rem;
    }

    .shop-sidebar {
        position: static;
        width: 100%;
        margin-bottom: 1.5rem;
        padding: 1.5rem;
        top: 80px;
    }

    .shop-sidebar h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .sidebar-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .sidebar-link {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
        flex: 1 1 calc(50% - 0.4rem);
        min-width: 140px;
        justify-content: center;
    }

    .sidebar-link::after {
        display: none;
    }

    .shop-category {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }

    .shop-category h2 {
        font-size: 1.6rem;
        padding-left: 1.5rem;
    }

    .category-description {
        font-size: 1rem;
        padding-left: 1.5rem;
    }

    .shop-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .shop-image {
        height: 220px;
    }

    .shop-info {
        padding: 1.5rem;
    }

    .shop-info h3 {
        font-size: 1.4rem;
    }

    .shop-price {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .social-links {
        grid-template-columns: 1fr;
    }
}

/* Formulaire Whitelist */
.wl-form-section {
    background: linear-gradient(135deg, rgba(13, 158, 216, 0.05) 0%, rgba(10, 14, 26, 0.95) 100%);
    padding: 4rem 0;
}

.wl-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.wl-form {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--light-text);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group .required {
    color: #ff4444;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(13, 158, 216, 0.3);
    border-radius: 8px;
    color: var(--light-text);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(13, 158, 216, 0.1);
    box-shadow: 0 0 0 3px rgba(13, 158, 216, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group small {
    display: block;
    margin-top: 0.3rem;
    color: var(--gray-text);
    font-size: 0.85rem;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-bg);
    color: var(--light-text);
}

.form-section-title {
    margin: 2.5rem 0 1.5rem;
    padding: 1.5rem;
    background: rgba(13, 158, 216, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.form-section-title h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.form-section-title p {
    margin: 0.5rem 0 0;
    color: var(--gray-text);
    font-size: 0.9rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    margin-bottom: 0;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.7rem;
    margin-top: 0.2rem;
    cursor: pointer;
    accent-color: var(--primary-color);
    width: 18px;
    height: 18px;
}

.checkbox-group span {
    color: var(--light-text);
    font-weight: 400;
}

.form-submit {
    margin-top: 2rem;
    text-align: center;
}

.submit-button {
    background: var(--accent-gradient);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(13, 158, 216, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(13, 158, 216, 0.5);
}

.submit-button:active {
    transform: translateY(-1px);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.button-loading {
    display: none;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid #4caf50;
    color: #4caf50;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid #f44336;
    color: #f44336;
}

@media screen and (max-width: 768px) {
    .wl-form {
        padding: 1.5rem;
    }

    .submit-button {
        width: 100%;
        padding: 1rem 2rem;
    }
}

/* Conditions d'utilisation */
.conditions-content {
    max-width: 900px;
    margin: 0 auto;
}

.condition-block {
    background: linear-gradient(135deg, rgba(13, 158, 216, 0.05) 0%, rgba(10, 14, 26, 0.95) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(13, 158, 216, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.condition-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(13, 158, 216, 0.3);
    border-color: var(--accent-color);
}

.condition-number {
    min-width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(13, 158, 216, 0.4);
}

.condition-text h2 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.condition-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.condition-text ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.condition-text ul li::before {
    content: '▸';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.condition-text strong {
    color: var(--accent-color);
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .condition-block {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }

    .condition-number {
        min-width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .condition-text h2 {
        font-size: 1.2rem;
    }
}

/* Coming Soon Container */
.coming-soon-container {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(13, 158, 216, 0.05) 0%, rgba(10, 124, 184, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(13, 158, 216, 0.2);
    margin: 3rem auto;
    max-width: 800px;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.coming-soon-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0d9ed8 0%, #0a7cb8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-container p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.coming-soon-subtitle {
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-style: italic;
}

@media screen and (max-width: 768px) {
    .coming-soon-container {
        padding: 2rem 1rem;
    }

    .coming-soon-icon {
        font-size: 3rem;
    }

    .coming-soon-container h2 {
        font-size: 1.8rem;
    }

    .coming-soon-container p {
        font-size: 1rem;
    }
}

/* Styles pour le règlement illégal */
.illegal-section {
    background: var(--darker-bg);
}

/* Styles pour le règlement légal */
.legal-section {
    background: var(--darker-bg);
}

.legal-section .rule-section {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.03) 0%, rgba(10, 14, 26, 0.95) 100%);
    border: 2px solid rgba(76, 175, 80, 0.2);
}

.legal-section .rule-section::before {
    background: linear-gradient(180deg, #4CAF50 0%, #388E3C 100%);
}

.legal-section .rule-section:hover {
    box-shadow: 0 15px 50px rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.4);
}

.legal-section .section-icon {
    filter: drop-shadow(0 0 10px rgba(76, 175, 80, 0.5));
}

.legal-section .rule-section h2 {
    color: #4CAF50;
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-section .rule-list li::before {
    color: #4CAF50;
}

.legal-section .rule-list li:hover {
    background: rgba(76, 175, 80, 0.05);
}

.legal-section .warning-box {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(76, 175, 80, 0.05) 100%);
    border: 2px solid rgba(76, 175, 80, 0.4);
}

.legal-section .warning-box strong {
    color: #66bb6a;
}

.legal-section .preambule-section {
    border-color: rgba(33, 150, 243, 0.3);
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.05) 0%, rgba(10, 14, 26, 0.95) 100%);
}

.legal-section .preambule-section::before {
    background: linear-gradient(180deg, #2196F3 0%, #1976D2 100%);
}

.legal-section .preambule-section h2 {
    color: #2196F3;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-section .preambule-section .section-icon {
    filter: drop-shadow(0 0 10px rgba(33, 150, 243, 0.5));
}

.rule-section {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.03) 0%, rgba(10, 14, 26, 0.95) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(244, 67, 54, 0.2);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rule-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #f44336 0%, #d32f2f 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.rule-section:hover::before {
    opacity: 1;
}

.rule-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(244, 67, 54, 0.2);
    border-color: rgba(244, 67, 54, 0.4);
}

.section-icon {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(244, 67, 54, 0.5));
}

.rule-section h2 {
    font-size: 2.5rem;
    color: #f44336;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    padding: 0 2rem;
}

.rule-category-block {
    background: rgba(13, 158, 216, 0.03);
    border: 1px solid rgba(13, 158, 216, 0.15);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.rule-category-block h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rule-category-block h4 {
    font-size: 1.4rem;
    color: var(--light-text);
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
}

.rule-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rule-list li {
    padding: 1rem 0 1rem 2rem;
    color: var(--light-text);
    line-height: 1.8;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.rule-list li:last-child {
    border-bottom: none;
}

.rule-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #f44336;
    font-weight: bold;
    font-size: 1.2rem;
}

.rule-list li:hover {
    background: rgba(244, 67, 54, 0.05);
    padding-left: 2.5rem;
    border-radius: 8px;
}

.sub-list {
    list-style: none;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.sub-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--gray-text);
    font-size: 0.95rem;
    border-bottom: none;
}

.sub-list li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1rem;
}

.info-box {
    background: linear-gradient(135deg, rgba(13, 158, 216, 0.1) 0%, rgba(13, 158, 216, 0.05) 100%);
    border: 2px solid rgba(13, 158, 216, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
}

.info-box::before {
    content: 'ℹ️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--dark-bg);
    padding: 0 10px;
    font-size: 1.5rem;
}

.info-box p {
    color: var(--light-text);
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.info-box strong {
    color: var(--primary-color);
    font-weight: 600;
}

.warning-box {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.15) 0%, rgba(244, 67, 54, 0.05) 100%);
    border: 2px solid rgba(244, 67, 54, 0.4);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
}

.warning-box::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--dark-bg);
    padding: 0 10px;
    font-size: 1.5rem;
}

.warning-box p {
    color: var(--light-text);
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.warning-box p:last-child {
    margin-bottom: 0;
}

.warning-box strong {
    color: #ff6b6b;
    font-weight: 700;
}

.example-box {
    background: rgba(255, 152, 0, 0.05);
    border-left: 4px solid #ff9800;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.example-box strong {
    color: #ff9800;
    display: block;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.discord-section {
    border-color: rgba(88, 101, 242, 0.3);
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.05) 0%, rgba(10, 14, 26, 0.95) 100%);
}

.discord-section::before {
    background: linear-gradient(180deg, #5865F2 0%, #4752C4 100%);
}

.discord-section h2 {
    color: #5865F2;
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.discord-section .section-icon {
    filter: drop-shadow(0 0 10px rgba(88, 101, 242, 0.5));
}

.intro-section {
    border-color: rgba(76, 175, 80, 0.3);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(10, 14, 26, 0.95) 100%);
}

.intro-section::before {
    background: linear-gradient(180deg, #4CAF50 0%, #388E3C 100%);
}

.intro-section h2 {
    color: #4CAF50;
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-section .section-icon {
    filter: drop-shadow(0 0 10px rgba(76, 175, 80, 0.5));
}

/* Responsive pour règlement illégal */
@media screen and (max-width: 768px) {
    .rule-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .rule-section h2 {
        font-size: 2rem;
    }

    .section-icon {
        font-size: 2.5rem;
    }

    .section-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .rule-category-block {
        padding: 1.5rem;
    }

    .rule-category-block h3 {
        font-size: 1.5rem;
    }

    .rule-list li {
        padding: 0.8rem 0 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .info-box,
    .warning-box,
    .example-box {
        padding: 1.2rem;
        margin: 1rem 0;
    }

    .info-box::before,
    .warning-box::before {
        font-size: 1.2rem;
        top: -12px;
        left: 15px;
    }
}

/* Styles pour véhicules uniques showcase */
.unique-vehicle-showcase {
    padding: 5rem 4rem;
    background-image: url('../image/Capture_decran_2025-10-02_151528.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.unique-vehicle-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    border-radius: 24px;
    z-index: 1;
}

.unique-vehicle-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 650px;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border: none;
}

.unique-vehicle-content .coming-soon-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(13, 158, 216, 0.8));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.unique-vehicle-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0d9ed8 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    text-shadow: 0 0 40px rgba(13, 158, 216, 0.5);
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.8));
}

.unique-vehicle-content h3 {
    font-size: 1.8rem;
    color: #ff9800;
    margin: 2rem 0 1rem 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.unique-vehicle-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.9;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    font-weight: 500;
}

.unique-vehicle-content .coming-soon-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.unique-vehicle-content .shop-price {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0d9ed8 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 2rem 0 0.5rem 0;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(13, 158, 216, 0.8));
}

.unique-vehicle-content .shop-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 18px 45px;
    background: linear-gradient(135deg, #0d9ed8 0%, #0a7cb8 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(13, 158, 216, 0.4);
    border: 2px solid transparent;
}

.unique-vehicle-content .shop-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(13, 158, 216, 0.6);
    background: linear-gradient(135deg, #00d4ff 0%, #0d9ed8 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 1024px) {
    .unique-vehicle-showcase {
        padding: 4rem 3rem;
        min-height: 500px;
        justify-content: center;
    }

    .unique-vehicle-showcase::before {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
    }

    .unique-vehicle-content {
        text-align: center;
        max-width: 100%;
    }

    .unique-vehicle-content h2 {
        font-size: 2.5rem;
    }

    .unique-vehicle-content h3 {
        justify-content: center;
        font-size: 1.5rem;
    }

    .unique-vehicle-content .shop-price {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 768px) {
    .unique-vehicle-showcase {
        padding: 3rem 2rem;
        min-height: 450px;
    }

    .unique-vehicle-content h2 {
        font-size: 2rem;
    }

    .unique-vehicle-content h3 {
        font-size: 1.3rem;
    }

    .unique-vehicle-content p {
        font-size: 1rem;
    }

    .unique-vehicle-content .shop-price {
        font-size: 2.2rem;
    }
}


