* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff4655;
    --secondary-color: #0f1923;
    --accent-color: #00d4ff;
    --lol-primary: #c89b3c;
    --lol-secondary: #005a82;
    --valorant-primary: #ff4655;
    --valorant-secondary: #ece8e1;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --bg-dark: #0f1923;
    --bg-darker: #0a0e13;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background: rgba(15, 25, 35, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
}

.logo .accent {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-links a:hover {
    color: var(--primary-color);
    background: rgba(255, 70, 85, 0.1);
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.language-select {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--card-border);
    color: var(--text-light);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    outline: none;
}

.language-select:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
}

.language-select:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
}

.language-select option {
    background: var(--bg-dark);
    color: var(--text-light);
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-color: var(--primary-color);
}

.btn-donation-nav {
    background: linear-gradient(135deg, var(--primary-color), #ff6b7a);
    padding: 0.7rem 1.5rem !important;
    border-radius: 25px !important;
    font-weight: 600;
}

.btn-donation-nav:hover {
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 70, 85, 0.4);
    background: linear-gradient(135deg, #ff6b7a, var(--primary-color)) !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #0f1923 0%, #1a2332 100%);
    background-image: 
        linear-gradient(135deg, rgba(15, 25, 35, 0.85), rgba(26, 35, 50, 0.95)),
        url('https://images.contentstack.io/v3/assets/bltb6530b271fddd0b1/blt5c61ee3f3f9c74a4/5eb7cdc0ee797d5d77c448cb/V_AGENTS_587x900_KayO.png'),
        url('https://ddragon.leagueoflegends.com/cdn/img/champion/splash/Yasuo_0.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-darker) 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.btn-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--primary-color), #ff6b7a);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 70, 85, 0.3);
}

.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 70, 85, 0.5);
}

/* Game Sections */
.game-section {
    padding: 6rem 0;
    position: relative;
}

.rio-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #1a2332 50%, var(--bg-dark) 100%);
}

.lol-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #1a2332 50%, var(--bg-dark) 100%);
}

.valorant-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #2a1a1f 50%, var(--bg-dark) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rio-section .section-title {
    color: var(--primary-color);
}

.lol-section .section-title {
    color: var(--lol-primary);
}

.valorant-section .section-title {
    color: var(--valorant-primary);
}

/* Account Overview */
.account-overview {
    margin-bottom: 4rem;
}

.account-overview h3, h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.stat-icon {
    font-size: 3rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
}

.stat-info h4 {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
}

/* Content Details */
.content-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.detail-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-color);
}

.detail-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.detail-card:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-icon {
    font-size: 2.5rem;
}

.detail-header h4 {
    font-size: 1.5rem;
}

.detail-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.detail-stat {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    align-items: center;
    gap: 30px;
}

.detail-stat span:last-child {
  margin-left: auto;
}

.half {
    width: 49.1%;
}

.tier {
    width: 32%;
}

.detail-stat .label {
    width: 300px;
    color: rgba(255, 255, 255, 0.7);
}

.detail-stat .value {
    font-weight: 600;
    color: var(--accent-color);
}

.preProgressBar {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 1rem;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    transition: width 1s ease-out;
}

/* Mini Cards */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.mini-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.mini-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.mini-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.mini-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.mini-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Donation Section */
.donation-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a0a0f 0%, #2a1520 100%);
    text-align: center;
}

.donation-content {
    max-width: 900px;
    margin: 0 auto;
}

.donation-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #ff9a9e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.donation-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.btn-donation {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--primary-color), #ff6b7a);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 70, 85, 0.3);
}

.btn-donation:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 70, 85, 0.5);
}

/* Payment Page */
.payment-section {
    min-height: calc(100vh - 200px);
    padding: 10rem 0 4rem;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a2332 100%);
}

.payment-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 30px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.payment-container h1 {
    font-size: 2.1rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.payment-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

/* Policy Agreement Box */
.policy-agreement-box {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.policy-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 1.1rem;
}

.policy-checkbox {
    width: 24px;
    height: 24px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.policy-checkbox-text {
    color: var(--text-light);
    line-height: 1.6;
}

.policy-link-inline {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition);
}

.policy-link-inline:hover {
    color: var(--primary-color);
}

.policy-hint {
    margin: 0.75rem 0 0 2.5rem;
    color: #ffc107;
    font-size: 0.95rem;
    font-style: italic;
}

.payment-methods {
    display: grid;
    gap: 1.5rem;
    transition: var(--transition);
}

.payment-methods.disabled {
    opacity: 0.4;
    pointer-events: none;
    filter: grayscale(1);
}

.payment-method-btn {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
}

.payment-method-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon svg {
    width: 35px;
    height: 35px;
}

.method-info {
    text-align: left;
}

.method-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.method-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Payment Forms */
.payment-form {
    animation: fadeInUp 0.5s ease-out;
}

.payment-form h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.4);
}

.hint {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}

/* Card Example Styles */
.card-example,
.rib-display {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid var(--card-border);
}

.example-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.example-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    margin-bottom: 1rem;
}

.card-chip {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.card-number {
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.card-holder {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.example-note {
    color: #ff9800;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-weight: 500;
}

/* RIB Display Styles */
.rib-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.rib-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--card-border);
}

.rib-row:last-child {
    border-bottom: none;
}

.rib-label {
    font-weight: 600;
    color: var(--accent-color);
}

.rib-value {
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

.example-rib {
    background: white;
    color: #1a1a1a;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.rib-header {
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #333;
    margin-bottom: 1.5rem;
}

.rib-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.rib-codes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin: 1rem 0;
    padding: 1rem;
    background: #f5f5f5;
    border-radius: 5px;
}

.rib-codes span {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.rib-example {
    margin-top: 2rem;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 2rem 0;
    animation: fadeInUp 0.5s ease-out;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    animation: scaleIn 0.5s ease-out;
}

.success-message h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.success-message p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.btn-submit, .btn-back {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-right: 1rem;
    margin-top: 1rem;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), #ff6b7a);
    color: var(--text-light);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 70, 85, 0.4);
}

.btn-back {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* PayPal Container Styles */
.paypal-container {
    max-width: 500px;
    margin: 0 auto;
}

#paypal-button-container {
    margin: 2rem 0;
    min-height: 150px;
}

/* Case à cocher pour frais PayPal */
.checkbox-group {
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #ffc107;
    border-radius: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #ffc107;
}

.checkbox-text {
    flex: 1;
    color: #ffc107;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Bouton PayPal Direct */
.btn-paypal-direct {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 32px;
    background: #0070ba;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 2rem 0 1rem 0;
    box-shadow: 0 4px 15px rgba(0, 112, 186, 0.3);
}

.btn-paypal-direct:hover:not(.disabled) {
    background: #005ea6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 112, 186, 0.4);
}

.btn-paypal-direct.disabled {
    background: #6c757d;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-paypal-direct svg {
    fill: white;
}

.paypal-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Crypto Payment Styles */
.crypto-select {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    cursor: pointer;
}

.crypto-address-display {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid var(--card-border);
}

.crypto-address-display h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.crypto-address {
    margin-bottom: 1.5rem;
}

.address-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.address-value {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 1px solid var(--accent-color);
}

.address-value code {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--accent-color);
    word-break: break-all;
}

.btn-copy {
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-copy:hover {
    background: #00b8e6;
    transform: scale(1.05);
}

.crypto-qr {
    text-align: center;
    margin-top: 1rem;
}

.qr-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.crypto-instructions {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.crypto-instructions h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.crypto-instructions ol {
    margin-left: 1.5rem;
    line-height: 1.8;
}

.crypto-note {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* Override PayPal button styles to match theme */
#paypal-button-container iframe {
    border-radius: 10px !important;
}

/* Coming Soon */
.coming-soon {
    text-align: center;
    padding: 3rem 0;
}

.coming-soon .icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.coming-soon h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.coming-soon p {
    color: rgba(255, 255, 255, 0.7);
}

/* Payment Status */
.payment-status {
    text-align: center;
    padding: 2rem 0;
    animation: fadeInUp 0.5s ease-out;
}

.status-animation {
    margin-bottom: 2rem;
}

.spinner {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border: 4px solid rgba(255, 70, 85, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

#statusTitle {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

#statusMessage {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.status-email {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    font-size: 1.1rem;
}

.status-email span {
    color: var(--accent-color);
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--card-border);
}

.footer p {
    color: rgba(255, 255, 255, 0.5);
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Image Gallery */
.image-gallery {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
}

.gallery-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 70, 85, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 1rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Galeries d'émotes et icônes - 4 colonnes max avec wrap */
[data-gallery="lol-emotes"],
[data-gallery="lol-icons"] {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    max-width: 100%;
    gap: 0.8rem;
}

[data-gallery="lol-emotes"] .gallery-item,
[data-gallery="lol-icons"] .gallery-item {
    aspect-ratio: 1/1;
    max-width: 120px;
}

[data-gallery="lol-emotes"] .gallery-item img,
[data-gallery="lol-icons"] .gallery-item img {
    object-fit: contain;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
}

/* Sélecteurs de variantes de couleur pour skins Valorant */
.skin-variants {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    padding: 8px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.variant-square {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(255, 70, 85, 0.3), rgba(0, 212, 255, 0.3));
    position: relative;
}

.variant-square:hover {
    transform: scale(1.15);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(255, 70, 85, 0.6);
}

.variant-square.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 70, 85, 0.8);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.variant-square.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

/* Animation pour les variantes */
@keyframes variantPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 70, 85, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 70, 85, 0.8);
    }
}

.variant-square:active {
    animation: variantPulse 0.3s ease;
}

.view-all-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 15px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 70, 85, 0.5);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.lightbox.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 70, 85, 0.9);
    border: none;
    color: white;
    font-size: 3rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: 300;
}

.lightbox-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg) scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 70, 85, 0.8);
    border: none;
    color: white;
    font-size: 3rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.2);
}

.lightbox-content {
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.lightbox-images-container {
    display: flex;
    gap: 0;
    align-items: center;
    height: 100%;
    min-width: 100%;
}

.lightbox-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    position: relative;
}

.lightbox-image {
    max-height: 80vh;
    max-width: 85vw;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Boutons de variantes de couleur dans la lightbox */
.lightbox-skin-variants {
    display: flex;
    position: absolute;
    bottom: 30px;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    border: 2px solid rgba(255, 70, 85, 0.3);
}

.variant-btn {
    width: 45px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 70, 85, 0.2), rgba(0, 212, 255, 0.2));
    color: white;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.variant-btn:hover {
    transform: scale(1.15);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 20px rgba(255, 70, 85, 0.6);
    background: linear-gradient(135deg, rgba(255, 70, 85, 0.4), rgba(0, 212, 255, 0.4));
}

.variant-btn.active {
    border-color: var(--primary-color);
    border-width: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 0 25px rgba(255, 70, 85, 0.9);
    transform: scale(1.1);
}

.variant-btn:active {
    transform: scale(0.95);
}

.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 70, 85, 0.9);
    padding: 1rem 2rem;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    z-index: 10002;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Custom Scrollbar for Lightbox */
.lightbox-content::-webkit-scrollbar {
    height: 10px;
}

.lightbox-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.lightbox-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.lightbox-content::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .language-switcher {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .payment-container {
        padding: 2rem 1.5rem;
    }

    .payment-method-btn {
        padding: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .lightbox-close {
        width: 50px;
        height: 50px;
        font-size: 2.5rem;
        top: 1rem;
        right: 1rem;
    }
    
    .lightbox-content {
        padding: 0 80px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .rib-codes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 80vh;
    }

    .btn-hero {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-content {
        padding: 0 60px;
    }
}

/* Policy Page Styles */
.policy-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.policy-content {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.policy-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.policy-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.warning-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.policy-warning p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffc107;
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--card-border);
}

.policy-section:last-of-type {
    border-bottom: none;
}

.policy-section h2 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.policy-text {
    color: var(--text-light);
    line-height: 1.8;
}

.policy-text p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.policy-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.policy-text ul,
.policy-text ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.policy-text li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.policy-link {
    color: var(--accent-color);
    text-decoration: underline;
    transition: var(--transition);
}

.policy-link:hover {
    color: var(--primary-color);
}

.policy-acceptance {
    background: rgba(255, 70, 85, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 2rem;
}

.policy-acceptance h2 {
    color: var(--primary-color);
}

.policy-contact {
    background: rgba(0, 212, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
}

.policy-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn-back,
.btn-proceed {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
    text-align: center;
}

.btn-back {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 2px solid var(--card-border);
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-proceed {
    background: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-proceed:hover {
    background: #ff5566;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 70, 85, 0.4);
}

.footer-link {
    color: var(--accent-color);
    text-decoration: none;
    margin-left: 1rem;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Responsive Policy Page */
@media (max-width: 768px) {
    .policy-content {
        padding: 2rem;
    }

    .policy-title {
        font-size: 2rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .policy-text p,
    .policy-text li {
        font-size: 1rem;
    }

    .policy-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-back,
    .btn-proceed {
        width: 100%;
    }
}
