:root {
    --primary: #F2684D;
    --secondary: #1F7A7A;
    --background: #FFF7ED;
    --text-dark: #253039;
    --light-neutral: #E1E4EA;
    --highlight: #F4C95D;
    --soft-pink: #FDE3DF;
}

.gamelles-body {
    background-color: var(--background);
    color: var(--text-dark);
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}
.btn-primary:hover {
    background-color: #e05a40;
    border-color: #e05a40;
}

.text-secondary { color: var(--secondary) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
}
.btn-secondary:hover {
    background-color: #186666;
    border-color: #186666;
}

.bg-highlight { background-color: var(--highlight) !important; }
.bg-soft-pink { background-color: var(--soft-pink) !important; }
.bg-light-alt { background-color: color-mix(in srgb, var(--secondary) 5%, white) !important; }

.gamelles-header {
    background-color: rgba(255, 247, 237, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--light-neutral);
}
.gamelles-header .nav-link {
    color: var(--text-dark);
    transition: all 0.3s;
}
.gamelles-header .nav-link:hover,
.gamelles-header .nav-link.active {
    background-color: var(--primary);
    color: white !important;
}

.gamelles-hero {
    background: linear-gradient(135deg, var(--background) 0%, color-mix(in srgb, var(--primary) 5%, white) 100%);
}
.hero-badge {
    background-color: var(--highlight);
    color: var(--text-dark);
    display: inline-block;
}
.hero-image-container {
    position: relative;
}
.hero-stats-card {
    background: white;
    bottom: -20px;
    right: 20px;
    max-width: 250px;
    backdrop-filter: blur(10px);
}
.stats-icon {
    background-color: var(--soft-pink);
    color: var(--primary);
}

.step-card {
    background: white;
    border: 2px solid transparent;
    transition: transform 0.3s, border-color 0.3s;
}
.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}
.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.ambassador-card {
    border: 3px solid white;
    box-shadow: 0 10px 30px rgba(37, 48, 57, 0.1);
}

.product-card {
    background: white;
    transition: transform 0.3s;
    position: relative;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}
.product-icon {
    width: 70px;
    height: 70px;
    background-color: var(--soft-pink);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.gamelles-footer {
    background-color: var(--text-dark);
    color: white;
}
.footer-link {
    color: color-mix(in srgb, white 70%, transparent);
    text-decoration: none;
    padding: 5px 0;
    display: inline-block;
    transition: color 0.3s;
}
.footer-link:hover {
    color: white;
}
.newsletter-form .form-control {
    border-color: var(--light-neutral);
}
.newsletter-form .btn {
    padding-left: 25px;
    padding-right: 25px;
}

.gamelles-main-content .markdown-body {
    font-size: 1.1rem;
}
.gamelles-main-content .markdown-body h2 {
    color: var(--secondary);
    border-bottom: 2px solid var(--highlight);
    padding-bottom: 10px;
    margin-top: 2rem;
}
.gamelles-main-content .markdown-body a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: color-mix(in srgb, var(--primary) 30%, transparent);
}
.gamelles-main-content .markdown-body blockquote {
    border-left: 4px solid var(--secondary);
    background-color: var(--soft-pink);
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
}

.gamelles-card {
    border: 1px solid var(--light-neutral);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
}
.gamelles-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(242, 104, 77, 0.1);
}
.gamelles-card-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}
.gamelles-card-body {
    padding: 1.5rem;
}
.gamelles-card-title a {
    color: var(--text-dark);
    text-decoration: none;
}
.gamelles-card-title a:hover {
    color: var(--primary);
}

.gamelles-pagination .page-link {
    color: var(--secondary);
    border-color: var(--light-neutral);
}
.gamelles-pagination .page-link:hover {
    background-color: var(--soft-pink);
    border-color: var(--primary);
}
.gamelles-pagination .active .page-link {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: white;
}

@media (max-width: 768px) {
    .display-4 { font-size: 2.5rem; }
    .display-5 { font-size: 2rem; }
    .gamelles-hero, .section { padding-top: 3rem !important; padding-bottom: 3rem !important; }
}