@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;800&family=Montserrat:wght@300;400;700&display=swap');

:root {
    --bg-dark: #0a0a0b;
    --bg-card: rgba(20, 20, 22, 0.7);
    --gold: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --crimson: #8e0e00;
    --accent-gradient: linear-gradient(135deg, #d4af37 0%, #8e0e00 100%);
    --text-primary: #ffffff;
    --text-muted: #b0b0b0;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Glassmorphism Effect */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
}

/* Background Particles Simulation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    z-index: -1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Language Selector */
.lang-selector {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-right: 20px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
}

.lang-selector::-webkit-scrollbar {
    display: none;
}

/* Custom Language Switcher Dropdown */
.lang-switcher {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gold);
    padding: 6px 12px;
    border-radius: 20px;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-switcher:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

.lang-switcher select {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 5px;
    text-transform: uppercase;
}

.lang-switcher::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--gold);
}

/* Header */
header {
    height: 100px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(10, 10, 11, 0.98);
    height: 70px;
    border-bottom: 1px solid var(--gold-glow);
    padding: 0 5%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--gold-glow);
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: var(--gold-glow);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-btn {
    padding: 10px 25px;
    font-size: 0.85rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    letter-spacing: 3px;
    color: var(--text-primary);
    background: rgba(10, 10, 11, 0.85);
    padding: 8px 15px;
    border-radius: 4px;
    border: 1px solid var(--gold-glow);
    backdrop-filter: blur(10px);
}

.logo span {
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold-glow);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(to right, #fff, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
}

/* Buttons */
.btn {
    padding: 20px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    /* Sharp, premium look */
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: #000;
    border: none;
}

.btn-primary:active {
    transform: scale(0.95);
    background: #fff;
}

.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    margin-left: 20px;
}

.btn-outline:hover {
    background: var(--gold);
    color: #000;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
    animation: pulse-glow 4s infinite ease-in-out;
}

.hero-image img {
    width: 100%;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    filter: contrast(1.1) brightness(1.1);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5), 0 0 20px var(--gold-glow);
    border: 1px solid var(--gold);
    animation: float-hero 6s infinite ease-in-out;
    transition: var(--transition);
}

@keyframes float-hero {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Section Headings */
.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-title div {
    width: 100px;
    height: 3px;
    background: var(--accent-gradient);
    margin: 0 auto;
}

/* Cards Section */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 100px;
}

.elegant-card {
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition);
}

.elegant-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-15px);
}

/* Strategic Form Styles */
.strategic-form-container {
    max-width: 1100px;
    margin: 60px auto;
}

.strategic-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.strategic-form .input-block.full-width {
    grid-column: span 2;
}

.strategic-form select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    color: #fff;
    padding: 10px 0;
    font-size: 1rem;
    outline: none;
    cursor: pointer;
    appearance: none;
}

.strategic-form select option {
    background: #0a0a0a;
}

.form-header-pro {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gold-glow);
}

.pro-badge-form {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* Fund Tracker */
.tracker-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #050505, #0a0a0b);
}

.tracker-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.progress-wrapper {
    background: rgba(255, 255, 255, 0.05);
    height: 15px;
    border-radius: 30px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gold-glow);
}

.progress-bar {
    height: 100%;
    background: var(--accent-gradient);
    width: 0%;
    /* Animated via JS */
    box-shadow: 0 0 20px var(--gold);
    transition: width 2s ease-out;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item h4 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold);
}

.stat-item p {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Carousel Comments Section */
.comments-section {
    padding: 100px 0;
    overflow: hidden;
    background: #050505;
}

.carousel-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    padding: 0 50px;
}

/* Side Gradients for fading edges */
.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, #050505, transparent);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, #050505, transparent);
}

/* Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid var(--gold-glow);
    border-radius: 50%;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.carousel-arrow:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 20px var(--gold-glow);
}

.arrow-left {
    left: 20px;
}

.arrow-right {
    right: 20px;
}


.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.track-move-left {
    animation: scrollLeft 180s linear infinite;
    /* Much slower (3 minutes for a loop) */
}

.track-move-right {
    animation: scrollRight 180s linear infinite;
    /* Much slower */
}

.track-move-left:hover,
.track-move-right:hover {
    animation-play-state: paused;
    /* Pause on hover to allow reading */
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.comment-card {
    width: 450px;
    padding: 30px;
    flex-shrink: 0;
    display: flex;
    gap: 20px;
    min-height: 250px;
    /* Increased to allow for 10 sentences */
    height: auto;
}


.avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.mini-flag {
    position: absolute;
    bottom: -2px;
    right: -2px;
    font-size: 0.9rem;
    background: var(--bg-dark);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comment-body {
    flex-grow: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.user-mask {
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

.stars {
    color: #ffcc00;
    font-size: 0.8rem;
}

.comment-text {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* Post Comment Box */
.comment-post-box {
    margin-bottom: 50px;
    padding: 30px;
    border: 1px solid var(--gold-glow);
}

.comment-input-area {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comment-input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .comment-input-grid {
        grid-template-columns: 1fr !important;
    }

    .comment-post-box {
        padding: 20px !important;
    }

    .comment-actions {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .comment-actions button {
        width: 100%;
    }
}

.comment-input-area textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    color: #fff;
    font-family: inherit;
    resize: none;
    transition: var(--transition);
}

.comment-input-area textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.comment-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Responsive Additions */
.section-padding {
    padding: clamp(60px, 10vw, 120px) 20px;
}

.propos-card {
    padding: clamp(30px, 5vw, 60px);
    border-radius: 4px;
    border-left: 4px solid var(--gold);
}

.propos-title {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 30px;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.propos-content p {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.highlight-p {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    line-height: 1.8;
    color: var(--gold);
    font-weight: bold;
    margin-bottom: 20px;
}

.rating-input {
    color: var(--gold);
    font-size: 1.2rem;
    cursor: pointer;
}


/* Bottom Tab Bar (App-like) */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 70px;
    height: auto;
    /* Permet l'adaptation au contenu + padding */
    background: rgba(10, 10, 11, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--gold-glow);
    z-index: 2000;
    justify-content: space-around;
    align-items: center;
    padding-top: 10px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    box-sizing: border-box;
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.65rem;
    gap: 5px;
}

.tab-item i {
    font-size: 1.2rem;
    transition: var(--transition);
}

.tab-item.active {
    color: var(--gold);
}

.tab-item.active i {
    transform: translateY(-3px);
    text-shadow: 0 0 10px var(--gold-glow);
}

/* Floating Contact Button (Mobile) */
.fab-contact {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 90px;
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: #000;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: var(--transition);
}

.fab-contact:active {
    transform: scale(0.9);
}

@media (max-width: 768px) {
    .fab-contact {
        display: flex;
        animation: pulse 2s infinite;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 25px rgba(212, 175, 55, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    }
}

/* Institutional Section */
.institutional-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
    border-top: 1px solid var(--gold-glow);
    border-bottom: 1px solid var(--gold-glow);
}

.inst-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.instrument-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 30px;
    border-radius: 8px;
    transition: var(--transition);
}

.instrument-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.05);
}

.amount-badge {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.pro-tag {
    background: var(--gold);
    color: #000;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.ticker-wrap {
    background: #000;
    padding: 20px 0;
    border-top: 1px solid var(--gold-glow);
    border-bottom: 1px solid var(--gold-glow);
    overflow: hidden;
    /* Empêche le débordement horizontal */
    width: 100%;
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.ticker-item {
    margin-right: 50px;
    color: var(--gold);
    font-style: italic;
    opacity: 0.8;
}

/* Form Section */
.form-section {
    padding: 150px 0;
    background: #050505;
}

.form-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.form-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--gold);
}

.form-info p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.premium-form {
    display: grid;
    gap: 30px;
}

.input-block {
    position: relative;
}

.input-block input,
.input-block textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 0;
    color: #fff;
    font-family: inherit;
    font-size: 1.1rem;
    transition: var(--transition);
}

.input-block label {
    position: absolute;
    top: 15px;
    left: 0;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition);
}

.input-block input:focus~label,
.input-block input:valid~label,
.input-block textarea:focus~label,
.input-block textarea:valid~label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--gold);
}

.input-block input:focus,
.input-block textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(10px);
        padding: 30px 20px;
        border-radius: 24px;
        border: 1px solid rgba(212, 175, 55, 0.1);
        margin: 0 10px;
    }

    .hero-content p {
        margin: 0 auto 30px;
        border-left: none;
        border-bottom: 1px solid var(--gold-glow);
        padding-left: 0;
        padding-bottom: 15px;
        font-size: 1rem;
    }

    .hero-image {
        max-width: 320px;
        margin: 0 auto 30px;
    }

    .hero-image img {
        border-radius: 24px;
        aspect-ratio: 1/1;
        object-fit: cover;
    }

    .hero-grid {
        display: flex;
        flex-direction: column-reverse;
    }

    .menu-toggle {
        display: none;
        /* Hidden because we use bottom nav */
    }

    .nav-links {
        display: none;
        /* Hide top menu on mobile */
    }

    .bottom-nav {
        display: flex;
    }

    .hero {
        padding-bottom: 80px;
        padding-top: 80px;
    }

    .section-padding {
        padding-bottom: 100px;
    }

    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .inst-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .strategic-form {
        grid-template-columns: 1fr;
    }

    .strategic-form .input-block.full-width {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .carousel-arrow {
        display: none;
    }

    .comment-card {
        width: 300px;
        padding: 20px;
    }

    .carousel-container {
        padding: 0 10px;
    }

    .cta-group {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn {
        width: 100%;
        margin-left: 0 !important;
        margin-bottom: 0;
    }

    .btn-outline {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.4rem;
    }

    .stat-item h4 {
        font-size: 1.5rem;
    }

    .propos-card {
        padding: 20px;
    }
}

/* Modern Toast Notifications */
.toast-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.toast {
    background: rgba(10, 10, 11, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--gold);
    color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 300px;
    max-width: 450px;
    transform: translateX(120%);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto;
    border-left: 5px solid var(--gold);
}

.toast.active {
    transform: translateX(0);
}

.toast i {
    color: var(--gold);
    font-size: 1.4rem;
}

.toast-message {
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .toast-container {
        top: 20px;
        right: 20px;
        left: 20px;
    }

    .toast {
        min-width: auto;
        width: 100%;
        transform: translateY(-150%);
    }

    .toast.active {
        transform: translateY(0);
    }
}