:root {
    --casino-gold: #FFD700;
    --casino-black: #1A1A1A;
    --casino-dark: #2C2C2C;
    --casino-light: #F5F5F5;
}

body.casino-theme {
    background-color: var(--casino-dark);
    color: var(--casino-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    background-color: var(--casino-black);
    border-bottom: 2px solid var(--casino-gold);
}

.navbar-brand {
    color: var(--casino-gold) !important;
    font-weight: bold;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--casino-light) !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--casino-gold) !important;
}

.casino-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--casino-gold);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-5px);
}

.card-title {
    color: var(--casino-gold);
}

.btn-primary {
    background-color: var(--casino-gold);
    border-color: var(--casino-gold);
    color: var(--casino-black);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #FFE44D;
    border-color: #FFE44D;
    color: var(--casino-black);
    transform: translateY(-2px);
}

.btn-outline-light {
    border-color: var(--casino-gold);
    color: var(--casino-gold);
}

.btn-outline-light:hover {
    background-color: var(--casino-gold);
    color: var(--casino-black);
}

.btn-success {
    background-color: #2E7D32;
    border-color: #2E7D32;
    color: white;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #388E3C;
    border-color: #388E3C;
    transform: translateY(-2px);
}

.footer {
    background-color: var(--casino-black);
    color: var(--casino-light);
    padding: 20px 0;
    margin-top: auto;
    border-top: 2px solid var(--casino-gold);
}

.footer a {
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--casino-gold) !important;
}

/* Responsivní úpravy */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .casino-card {
        margin-bottom: 20px;
    }
}

/* Chat zprávy */
.chat-message {
    color: var(--casino-light);
}

.chat-message strong {
    color: var(--casino-gold);
}

/* Tipy */
.tip-item h5,
.tip-item p,
.tip-item small {
    color: var(--casino-light);
}

/* Tabulky */
.table-dark,
.table-dark td,
.table-dark th {
    color: var(--casino-light);
    border-color: var(--casino-gold);
}

/* Text v kartách */
.card-text,
.card-body p,
.card-body small {
    color: var(--casino-light);
}

/* Upravíme odkazy v přihlašovacích formulářích */
.login-form a, 
.register-form a,
a.login-link,
a.register-link {
    color: var(--casino-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-form a:hover,
.register-form a:hover,
a.login-link:hover,
a.register-link:hover {
    color: #FFE44D;  /* Světlejší odstín zlaté při najetí myší */
    text-decoration: underline;
}

/* Přidáme definici pro text-gold třídu */
.text-gold {
    color: var(--casino-gold) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.text-gold:hover {
    color: #FFE44D !important;
    text-decoration: underline;
}

/* Styly pro stránku O nás */
.lead {
    font-size: 1.2rem;
    line-height: 1.6;
}

.fa-3x {
    font-size: 3em;
    margin-bottom: 1rem;
}

footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid var(--casino-gold);
}

/* Responzivní úpravy */
@media (max-width: 768px) {
    .lead {
        font-size: 1.1rem;
    }
    
    .casino-card {
        margin-bottom: 1rem;
    }
}

/* Úprava nadpisů v tmavých kartách */
.casino-card h2,
.casino-card h3,
.casino-card h4,
.casino-card h5,
.casino-card .card-title {
    color: var(--casino-gold);  /* Zlatá barva pro nadpisy */
}

.casino-card p,
.casino-card .card-text {
    color: #fff;  /* Bílý text pro odstavce */
}

/* AI Tip Hero sekce - Psychologicky přitažlivá a moderní */
.ai-tip-hero {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(26, 26, 26, 0.98) 25%, 
        rgba(40, 40, 40, 0.95) 50%, 
        rgba(26, 26, 26, 0.98) 75%, 
        rgba(0, 0, 0, 0.95) 100%);
    border: 3px solid transparent;
    border-radius: 30px;
    box-shadow: 
        0 20px 60px rgba(255, 215, 0, 0.4),
        0 0 100px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    padding: 3rem 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ai-tip-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 215, 0, 0.05) 0%, 
        rgba(255, 255, 255, 0.02) 25%, 
        rgba(255, 215, 0, 0.03) 50%, 
        rgba(255, 255, 255, 0.01) 75%, 
        rgba(255, 215, 0, 0.05) 100%);

    pointer-events: none;
}

.ai-tip-hero:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(255, 215, 0, 0.6),
        0 0 150px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 215, 0, 0.8);
}

.ai-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.ai-badge .badge {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.9) 0%, 
        rgba(255, 255, 255, 0.95) 50%, 
        rgba(255, 215, 0, 0.9) 100%);
    color: #000;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 900;
    border: 2px solid rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.4),
        0 0 20px rgba(255, 215, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ai-badge .badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.5s ease;
}

.ai-badge .badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 1);
}

.ai-badge .badge:hover::before {
    left: 100%;
}

/* Hlavní nadpis - Psychologicky přitažlivý */
.ai-tip-hero h1.display-4 {
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #f0f0f0 25%, 
        var(--casino-gold) 50%, 
        #f0f0f0 75%, 
        #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4rem;
    font-weight: 900;
    text-shadow: none;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    position: relative;
    text-transform: uppercase;
}

.ai-tip-hero h1.display-4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--casino-gold), 
        transparent);
    border-radius: 2px;
    animation: titleGlow 3s ease-in-out infinite;
}

.price-section {
    margin: 30px 0;
}

.old-price {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 8px;
    text-decoration: line-through;
    position: relative;
    font-weight: 500;
}

.old-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(255, 0, 0, 0.8), 
        rgba(255, 0, 0, 0.4));
    transform: translateY(-50%);
    border-radius: 1px;
}

.current-price {
    margin: 20px 0;
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(255, 215, 0, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
}

.price-amount {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, 
        var(--casino-gold) 0%, 
        #FFE44D 50%, 
        var(--casino-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    letter-spacing: 1px;
    position: relative;
}

.price-amount::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        var(--casino-gold) 0%, 
        #FFE44D 50%, 
        var(--casino-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(8px);
    opacity: 0.5;
    z-index: -1;
}

.price-currency {
    font-size: 1.8rem;
    background: linear-gradient(135deg, 
        var(--casino-gold) 0%, 
        #FFE44D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 8px;
    font-weight: 700;
    letter-spacing: 1px;
}

.discount-badge {
    background: linear-gradient(135deg, 
        #00ff88 0%, 
        #00cc6a 25%, 
        #00ff88 50%, 
        #00cc6a 75%, 
        #00ff88 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 900;
    font-size: 1.2rem;
    display: inline-block;
    margin-top: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 25px rgba(0, 255, 136, 0.4),
        0 0 20px rgba(0, 255, 136, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.discount-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.6s ease;
}

.discount-badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(0, 255, 136, 0.6),
        0 0 30px rgba(0, 255, 136, 0.3);
}

.discount-badge:hover::before {
    left: 100%;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    margin-bottom: 2.5rem;
    position: relative;
    padding: 0 1rem;
}

.hero-description strong {
    color: var(--casino-gold);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.buy-ai-tip-btn {
    background: linear-gradient(135deg, 
        var(--casino-gold) 0%, 
        #FFE44D 25%, 
        #FFD700 50%, 
        #FFE44D 75%, 
        var(--casino-gold) 100%);
    border: none;
    padding: 18px 50px;
    font-size: 1.4rem;
    font-weight: 900;
    border-radius: 60px;
    box-shadow: 
        0 10px 30px rgba(255, 215, 0, 0.5),
        0 0 50px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    color: #000;
}

.buy-ai-tip-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.6s ease;
}

.buy-ai-tip-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(255, 215, 0, 0.7),
        0 0 80px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, 
        #FFE44D 0%, 
        var(--casino-gold) 25%, 
        #FFD700 50%, 
        var(--casino-gold) 75%, 
        #FFE44D 100%);
}

.buy-ai-tip-btn:hover::before {
    left: 100%;
}

.guarantee-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    margin-top: 2rem;
    padding: 15px 25px;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.guarantee-text::before {
    content: '✓';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--casino-gold);
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.guarantee-text:hover {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.15) 0%, 
        rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

/* Statistiky */
.stat-item {
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.success-proof {
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--casino-gold);
}

/* Tip kategorie */
.tip-category-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.tip-category-card:hover {
    transform: translateY(-5px);
    border-color: var(--casino-gold);
    background: rgba(255, 255, 255, 0.1);
}

.tip-stats .badge {
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 15px;
}

/* Tipaři karty */
.tipper-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    height: 100%;
}

.tipper-card:hover {
    transform: translateY(-5px);
    border-color: var(--casino-gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.tipper-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--casino-gold);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-label {
    color: #fff;
    font-size: 0.9rem;
}

.stat-value {
    font-weight: bold;
    font-size: 1rem;
}

.membership-info {
    background: rgba(255, 215, 0, 0.1);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.membership-price {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.membership-features {
    color: #fff;
}

.btn-outline-gold {
    border: 2px solid var(--casino-gold);
    color: var(--casino-gold);
    background: transparent;
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 8px 20px;
}

.btn-outline-gold:hover {
    background: var(--casino-gold);
    color: var(--casino-black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Důvody proč si koupit */
.reason-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-5px);
}

.reason-item h5 {
    color: var(--casino-gold);
    margin-bottom: 15px;
}

.reason-item p {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsivní úpravy pro nové prvky */
@media (max-width: 768px) {
    .price-amount {
        font-size: 2.5rem;
    }
    
    .buy-ai-tip-btn {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .tipper-card {
        margin-bottom: 20px;
    }
}

/* Styly pro nákupní stránku */
.casino-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #fff;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.casino-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--casino-gold);
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
    outline: none;
}

.casino-input::placeholder {
    color: #aaa;
}

.form-label {
    color: #fff;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-text {
    color: #fff;
    font-size: 0.85rem;
}

.payment-option {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.payment-option:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--casino-gold);
}

.form-check-input:checked {
    background-color: var(--casino-gold);
    border-color: var(--casino-gold);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.order-summary {
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.summary-item {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-total {
    padding: 15px 0 0 0;
    font-size: 1.2rem;
}

.border-gold {
    border-color: var(--casino-gold) !important;
}

.terms-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-check-label a {
    color: var(--casino-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-check-label a:hover {
    color: #FFE44D;
    text-decoration: underline;
}

.security-badges .badge {
    font-size: 0.8rem;
    padding: 8px 12px;
    border-radius: 20px;
}

.guarantee-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-5px);
}

.guarantee-item h5 {
    color: var(--casino-gold);
    margin-bottom: 15px;
}

.guarantee-item p {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.5;
} 

/* Purchase Notifications */
.purchase-notifications {
    margin-bottom: 2rem;
}

.notification-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.notification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #00ff88, #ffd700);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.notification-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.notification-title {
    color: #ffd700;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notification-list {
    min-height: 60px;
}

.notification-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: slideInUp 0.5s ease-out;
    transition: all 0.3s ease;
}

.notification-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.notification-item:last-child {
    margin-bottom: 0;
}

.notification-text {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
}

.notification-time {
    color: #ffd700;
    font-size: 0.8rem;
    font-weight: bold;
}

/* AI Robot Section Styles - Premium & Modern Design */
.ai-robot-section {
    margin: 1rem 0 2rem 0;
    position: relative;
}

.ai-robot-section::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(0, 255, 136, 0.05) 25%, 
        rgba(0, 255, 136, 0.05) 50%, 
        rgba(138, 43, 226, 0.05) 75%, 
        rgba(255, 215, 0, 0.1) 100%);
    border-radius: 25px;
    z-index: -1;

}

@keyframes gradientShift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.ai-robot-card {
    background: linear-gradient(145deg, 
        rgba(20, 20, 25, 0.95) 0%, 
        rgba(35, 35, 45, 0.9) 50%, 
        rgba(25, 25, 35, 0.95) 100%);
    border: 3px solid transparent;
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ai-robot-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(255, 215, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.ai-robot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.15), 
        rgba(0, 255, 136, 0.1), 
        rgba(255, 215, 0, 0.15), 
        transparent);

}

@keyframes premiumShimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.ai-robot-title {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: none;
    letter-spacing: 1px;
    position: relative;
}

.ai-robot-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #00ff88, #ffd700);
    border-radius: 2px;
}

@keyframes titleGlow {
    0%, 100% { opacity: 0.7; box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
    50% { opacity: 1; box-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
}

.ai-robot-subtitle {
    color: #e0e0e0;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    position: relative;
}

.ai-robot-subtitle::before {
    content: '🚀';
    margin-right: 8px;
}

@keyframes rocketBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.ai-robot-workspace {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-top: 2rem;
    position: relative;
}

.ai-robot-container {
    flex: 0 0 180px;
    display: flex;
    justify-content: center;
    position: relative;
}

.ai-robot-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

@keyframes robotAura {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

.ai-robot {
    position: relative;
    width: 120px;
    height: 150px;
    z-index: 2;
}

.robot-head {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, #4a4a4a, #2a2a2a, #1a1a1a);
    border: 3px solid #ffd700;
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
}

@keyframes robotFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.robot-eyes {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.eye {
    width: 12px;
    height: 12px;
    background: linear-gradient(145deg, #00ff88, #00cc6a);
    border-radius: 50%;
    box-shadow: 
        0 0 15px #00ff88,
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
}

.eye::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

@keyframes premiumBlink {
    0%, 90%, 100% { transform: scaleY(1); opacity: 1; }
    95% { transform: scaleY(0.1); opacity: 0.7; }
}

.eye.active {
    background: linear-gradient(145deg, #00ff88, #00cc6a);
    box-shadow: 
        0 0 20px #00ff88,
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: activeEye 2s ease-in-out infinite;
}

@keyframes activeEye {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.robot-mouth {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 8px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

@keyframes premiumTalk {
    0%, 100% { transform: translateX(-50%) scaleY(1); }
    50% { transform: translateX(-50%) scaleY(1.3); }
}

.robot-body {
    width: 90px;
    height: 80px;
    background: linear-gradient(145deg, #3a3a3a, #1a1a1a, #0a0a0a);
    border: 3px solid #ffd700;
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
    margin-top: -15px;
    box-shadow: 
        0 0 25px rgba(255, 215, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);

}

@keyframes bodyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.robot-antenna {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 25px;
    background: linear-gradient(180deg, #ffd700, #ffed4e);
    border-radius: 2px;

}

@keyframes antennaWave {
    0%, 100% { transform: translateX(-50%) rotate(0deg); }
    25% { transform: translateX(-50%) rotate(2deg); }
    75% { transform: translateX(-50%) rotate(-2deg); }
}

.robot-antenna::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #00ff88, #00cc6a);
    border-radius: 50%;

    box-shadow: 0 0 20px #00ff88;
}

@keyframes antennaGlow {
    0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.2); }
}

.robot-chest {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chest-light {
    width: 25px;
    height: 25px;
    background: radial-gradient(circle, #ffd700, #ffed4e);
    border-radius: 50%;

    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    position: relative;
}

.chest-light::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent);
    border-radius: 50%;

}

@keyframes chestPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes chestRipple {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.ai-analysis-panel {
    flex: 1;
    padding: 1.5rem;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.03) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.ai-analysis-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #00ff88, #00ff88, #ffd700);

}

@keyframes panelGlow {
    0% { background-position: -200px 0; }
    100% { background-position: 200px 0; }
}

.analysis-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    position: relative;
}

.analysis-status::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #00ff88, #ffd700);
    border-radius: 1px;

}

@keyframes statusBar {
    0%, 100% { width: 50px; }
    50% { width: 100px; }
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
}

.status-indicator.active i {
    color: #00ff88;

}

@keyframes statusPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.processing-time {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #ffd700;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.data-streams {
    margin-bottom: 1.5rem;
}

.data-stream {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(145deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(255, 215, 0, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.data-stream::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.1), 
        transparent);
    transition: left 0.5s ease;
}

.data-stream:hover::before {
    left: 100%;
}

.data-stream:hover {
    background: linear-gradient(145deg, 
        rgba(0, 0, 0, 0.5) 0%, 
        rgba(255, 215, 0, 0.1) 100%);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(5px);
}

.stream-label {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.stream-bars {
    display: flex;
    gap: 4px;
}

.bar {
    width: 10px;
    height: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.bar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #ffd700, #ffed4e);
    transition: height 0.4s ease;
}

.bar.active {
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    transform: scaleY(1.1);
}

.bar.active::before {
    height: 100%;
}

.ai-insights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.insight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(145deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(255, 215, 0, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.insight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.1), 
        transparent);
    transition: left 0.5s ease;
}

.insight-item:hover::before {
    left: 100%;
}

.insight-item:hover {
    background: linear-gradient(145deg, 
        rgba(0, 0, 0, 0.5) 0%, 
        rgba(255, 215, 0, 0.15) 100%);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.insight-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.insight-item:hover .insight-icon {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0.2));
    border-color: rgba(255, 215, 0, 0.5);
    transform: scale(1.1);
}

.insight-content {
    flex: 1;
}

.insight-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.3rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.insight-desc {
    font-size: 0.85rem;
    color: #e0e0e0;
    opacity: 0.9;
    line-height: 1.4;
    font-weight: 400;
}

.ai-tip-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--casino-black), var(--casino-dark));
    color: var(--casino-light);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 2px solid var(--casino-gold);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: slideInRight 0.5s ease-out;
}

/* AI Robot Animations */
@keyframes blink {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: 0; }
}

@keyframes talk {
    0%, 100% { transform: translateX(-50%) scaleY(1); }
    50% { transform: translateX(-50%) scaleY(1.5); }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* AI Robot Mobile Responsive Styles */
@media (max-width: 768px) {
    .ai-robot-workspace {
        flex-direction: column;
        gap: 2rem;
    }

    .ai-robot-container {
        flex: none;
        order: 2;
    }

    .ai-robot-title {
        font-size: 2rem;
    }

    .ai-analysis-panel {
        order: 1;
    }

    .analysis-status {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .data-stream {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .stream-label {
        min-width: auto;
    }

    .insight-item {
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }

    .insight-icon {
        min-width: auto;
    }

    .ai-robot-card {
        padding: 1.5rem;
    }

    .ai-robot {
        width: 100px;
        height: 130px;
    }

    .robot-head {
        width: 60px;
        height: 60px;
    }

    .robot-body {
        width: 80px;
        height: 60px;
        top: 55px;
    }
} 

/* Advanced Hover Effects & Animations */
.ai-robot-section:hover .ai-robot-card {
    transform: translateY(-5px);
}

.ai-robot-section:hover .ai-robot-container::before {
    animation: robotAura 2s ease-in-out infinite;
}

.ai-robot-section:hover .robot-head {
    animation: robotFloat 1.5s ease-in-out infinite;
}

.ai-robot-section:hover .eye {
    animation: premiumBlink 2s ease-in-out infinite;
}

.ai-robot-section:hover .eye.active {
    animation: activeEye 1s ease-in-out infinite;
}

.ai-robot-section:hover .robot-mouth {
    animation: premiumTalk 1.5s ease-in-out infinite;
}

.ai-robot-section:hover .robot-body {
    animation: bodyPulse 2s ease-in-out infinite;
}

.ai-robot-section:hover .robot-antenna {
    animation: antennaWave 1.5s ease-in-out infinite;
}

.ai-robot-section:hover .chest-light {
    animation: chestPulse 1s ease-in-out infinite;
}

.ai-robot-section:hover .chest-light::after {
    animation: chestRipple 1s ease-in-out infinite;
}

/* Premium Data Stream Animations */
.data-stream:nth-child(1) .bar.active::before {
    animation: dataFlow1 2s ease-in-out infinite;
}

.data-stream:nth-child(2) .bar.active::before {
    animation: dataFlow2 2.5s ease-in-out infinite;
}

.data-stream:nth-child(3) .bar.active::before {
    animation: dataFlow3 3s ease-in-out infinite;
}

@keyframes dataFlow1 {
    0%, 100% { height: 0%; }
    50% { height: 100%; }
}

@keyframes dataFlow2 {
    0%, 100% { height: 0%; }
    30% { height: 100%; }
    70% { height: 100%; }
}

@keyframes dataFlow3 {
    0%, 100% { height: 0%; }
    40% { height: 100%; }
    60% { height: 100%; }
}

/* Floating Notification Enhancement */
.ai-tip-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    font-weight: 600;
    z-index: 1000;
    animation: slideInRight 0.5s ease-out, float 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Hero Section Animations */
@keyframes heroShimmer {
    0%, 100% { 
        opacity: 0.3; 
        transform: translateX(-100%) translateY(-100%);
    }
    50% { 
        opacity: 0.6; 
        transform: translateX(100%) translateY(100%);
    }
}

@keyframes titleGlow {
    0%, 100% { 
        opacity: 0.7; 
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    50% { 
        opacity: 1; 
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
    }
}

@keyframes priceGlow {
    0%, 100% { 
        opacity: 0.5; 
        filter: blur(8px);
    }
    50% { 
        opacity: 0.8; 
        filter: blur(12px);
    }
}

@keyframes discountPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 12px 35px rgba(255, 71, 87, 0.6);
    }
}

/* Success Proof Enhancement */
.success-proof {
    position: relative;
    overflow: hidden;
}

.success-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.05), 
        transparent);
    animation: successShimmer 6s ease-in-out infinite;
}

@keyframes successShimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Stat Item Enhancement */
.stat-item {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.1), 
        transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

/* Tip Category Enhancement */
.tip-category-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tip-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.1), 
        transparent);
    transition: left 0.5s ease;
}

.tip-category-card:hover::before {
    left: 100%;
}

.tip-category-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

/* Tipper Card Enhancement */
.tipper-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tipper-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.1), 
        transparent);
    transition: left 0.5s ease;
}

.tipper-card:hover::before {
    left: 100%;
}

.tipper-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.4);
}

/* Button Enhancement */
.btn-outline-gold {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-outline-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.5s ease;
}

.btn-outline-gold:hover::before {
    left: 100%;
}

.btn-outline-gold:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.5);
}

/* Membership Info Enhancement */
.membership-info {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.membership-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.1), 
        transparent);
    transition: left 0.5s ease;
}

.membership-info:hover::before {
    left: 100%;
}

.membership-info:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
}

/* Reason Item Enhancement */
.reason-item {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reason-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.1), 
        transparent);
    transition: left 0.5s ease;
}

.reason-item:hover::before {
    left: 100%;
}

.reason-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
} 