/* Gama Casino - Main Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0f1923;
    color: #e0e0e0;
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #1a2332 0%, #0f1923 100%);
    padding: 15px 0;
    border-bottom: 3px solid #00d4aa;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Breadcrumbs */
.breadcrumbs {
    background: #1a2332;
    padding: 12px 0;
    border-bottom: 1px solid #2a3545;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin-left: 10px;
    color: #808080;
}

.breadcrumbs a {
    color: #808080;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #00d4aa;
}

.breadcrumbs span {
    color: #ffffff;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 12px;
    border-radius: 8px;
}

nav a:hover {
    color: #00d4aa;
    background: rgba(0, 212, 170, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #00d4aa 0%, #00f5c4 100%);
    color: #0f1923 !important;
    padding: 12px 28px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.4);
    transition: transform 0.3s, box-shadow 0.3s !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 212, 170, 0.5) !important;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 25, 35, 0.95) 0%, rgba(26, 35, 50, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #ffffff;
    line-height: 1.2;
}

.hero h1 span {
    color: #00d4aa;
}

.hero-subtitle {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #b0b0b0;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.hero-feature {
    text-align: center;
}

.hero-feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 212, 170, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 15px;
    border: 2px solid #00d4aa;
}

.hero-feature h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 8px;
}

.hero-feature p {
    color: #808080;
    font-size: 14px;
}

.btn-large {
    display: inline-block;
    background: linear-gradient(135deg, #00d4aa 0%, #00f5c4 100%);
    color: #0f1923;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 6px 25px rgba(0, 212, 170, 0.4);
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 212, 170, 0.5);
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: #1a2332;
    border-bottom: 1px solid #2a3545;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: #0f1923;
    border-radius: 15px;
    border: 1px solid #2a3545;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #00d4aa;
    margin-bottom: 10px;
}

.stat-label {
    color: #808080;
    font-size: 16px;
}

/* Features Section */
.features {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 20px;
}

.section-title p {
    color: #808080;
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, #1a2332 0%, #0f1923 100%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #2a3545;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4aa, #00f5c4);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #00d4aa;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 15px;
}

.feature-card p {
    color: #808080;
    line-height: 1.7;
}

/* Table Section */
.table-section {
    padding: 100px 0;
    background: #1a2332;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 50px;
    background: #0f1923;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.comparison-table th,
.comparison-table td {
    padding: 20px 25px;
    text-align: left;
    border-bottom: 1px solid #2a3545;
}

.comparison-table th {
    background: #1a2332;
    color: #00d4aa;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table tr:hover {
    background: #1a2332;
}

.comparison-table td:first-child {
    color: #ffffff;
    font-weight: 500;
}

/* Games Section */
.games {
    padding: 100px 0;
}

.games-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 30px;
    background: #1a2332;
    border: 1px solid #2a3545;
    border-radius: 50px;
    color: #b0b0b0;
    cursor: pointer;
    transition: all 0.3s;
}

.category-btn:hover, .category-btn.active {
    background: #00d4aa;
    color: #0f1923;
    border-color: #00d4aa;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.game-card {
    background: #1a2332;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #2a3545;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.game-image {
    height: 180px;
    background: linear-gradient(135deg, #2a3545 0%, #1a2332 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    position: relative;
}

.game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #00d4aa;
    color: #0f1923;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.game-info {
    padding: 20px;
}

.game-info h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 18px;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #808080;
    font-size: 14px;
}

.game-rating {
    color: #ffd700;
}

/* Steps Section */
.steps {
    padding: 100px 0;
    background: #1a2332;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    background: #0f1923;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid #2a3545;
    position: relative;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4aa 0%, #00f5c4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: #0f1923;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.step-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 22px;
}

.step-card p {
    color: #808080;
    line-height: 1.7;
}

/* Bonuses Section */
.bonuses {
    padding: 100px 0;
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.bonus-card {
    background: linear-gradient(135deg, #1a2332 0%, #0f1923 100%);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid #2a3545;
    position: relative;
    overflow: hidden;
}

.bonus-card.popular {
    border-color: #00d4aa;
}

.bonus-card.popular::before {
    content: 'Популярный';
    position: absolute;
    top: 20px;
    right: -30px;
    background: #00d4aa;
    color: #0f1923;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
}

.bonus-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
}

.bonus-card h3 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 15px;
}

.bonus-card p {
    color: #808080;
    margin-bottom: 25px;
    line-height: 1.7;
}

.bonus-features {
    list-style: none;
    margin-bottom: 30px;
}

.bonus-features li {
    padding: 10px 0;
    border-bottom: 1px solid #2a3545;
    color: #b0b0b0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bonus-features li::before {
    content: '✓';
    color: #00d4aa;
    font-weight: bold;
}

.btn-bonus {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #00d4aa 0%, #00f5c4 100%);
    color: #0f1923;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-bonus:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
}

/* Providers Section */
.providers {
    padding: 80px 0;
    background: #1a2332;
}

.providers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.provider-logo {
    width: 120px;
    height: 60px;
    background: #0f1923;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #808080;
    font-size: 14px;
    border: 1px solid #2a3545;
    transition: all 0.3s;
}

.provider-logo:hover {
    border-color: #00d4aa;
    color: #00d4aa;
    transform: scale(1.05);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #1a2332;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #2a3545;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #ffffff;
    font-size: 18px;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #1a2332;
}

.faq-answer {
    padding: 0 30px 25px;
    color: #808080;
    display: none;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4aa;
    font-size: 20px;
    transition: transform 0.3s, background 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: #00d4aa;
    color: #0f1923;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a2332 0%, #0f1923 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta p {
    color: #808080;
    font-size: 20px;
    margin-bottom: 40px;
}

/* Footer */
footer {
    background: #0a1018;
    padding: 80px 0 40px;
    border-top: 1px solid #2a3545;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column h3 {
    color: #00d4aa;
    margin-bottom: 25px;
    font-size: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #808080;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #00d4aa;
}

.footer-column p {
    color: #808080;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #2a3545;
}

.footer-bottom p {
    color: #606060;
    margin-bottom: 10px;
}

.footer-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.footer-logo {
    width: 80px;
    height: 40px;
    background: #1a2332;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #808080;
    font-size: 12px;
    border: 1px solid #2a3545;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-features {
        flex-direction: column;
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .bonus-cards {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #00d4aa;
    color: #0f1923;
    padding: 8px;
    z-index: 200;
}

.skip-link:focus {
    top: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid #00d4aa;
    outline-offset: 2px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Review Section */
.review-section {
    padding: 80px 0;
    background: #1a2332;
}

.review-content {
    max-width: 900px;
    margin: 0 auto;
}

.review-content h2 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 30px;
}

.review-content h3 {
    font-size: 22px;
    color: #00d4aa;
    margin: 30px 0 15px;
}

.review-content p {
    color: #b0b0b0;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.review-content strong {
    color: #00d4aa;
}

/* Internal Links */
.internal-links {
    background: #0f1923;
    padding: 60px 0;
}

.internal-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.internal-link-card {
    background: #1a2332;
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #2a3545;
    text-decoration: none;
    transition: all 0.3s;
}

.internal-link-card:hover {
    border-color: #00d4aa;
    transform: translateY(-5px);
}

.internal-link-card h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 18px;
}

.internal-link-card p {
    color: #808080;
    font-size: 14px;
    margin: 0;
}

.internal-link-card .link-arrow {
    color: #00d4aa;
    margin-top: 15px;
    display: inline-block;
}

/* Support Widget */
.support-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.support-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4aa 0%, #00f5c4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 30px rgba(0, 212, 170, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    font-size: 28px;
}

.support-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(0, 212, 170, 0.6);
}

.support-popup {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 300px;
    background: #1a2332;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid #2a3545;
    display: none;
    overflow: hidden;
}

.support-popup.active {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.support-popup-header {
    background: linear-gradient(135deg, #00d4aa 0%, #00f5c4 100%);
    padding: 20px;
    text-align: center;
}

.support-popup-header h3 {
    color: #0f1923;
    font-size: 18px;
    margin-bottom: 5px;
}

.support-popup-header p {
    color: #0f1923;
    font-size: 12px;
    opacity: 0.8;
}

.support-popup-body {
    padding: 20px;
}

.support-popup-body p {
    color: #808080;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
}

.support-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #0f1923;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid #2a3545;
}

.support-link:hover {
    border-color: #00d4aa;
    transform: translateX(5px);
}

.support-link-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.support-link-icon.whatsapp {
    background: rgba(37, 211, 102, 0.2);
    color: #25d366;
}

.support-link-icon.telegram {
    background: rgba(0, 136, 204, 0.2);
    color: #0088cc;
}

.support-link-icon.chat {
    background: rgba(0, 212, 170, 0.2);
    color: #00d4aa;
}

.support-link-text h4 {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 2px;
}

.support-link-text span {
    color: #808080;
    font-size: 12px;
}

/* Providers Page */
.providers-page {
    padding: 80px 0;
}

.providers-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.provider-card {
    background: #1a2332;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #2a3545;
    transition: all 0.3s;
}

.provider-card:hover {
    border-color: #00d4aa;
    transform: translateY(-5px);
}

.provider-card h3 {
    color: #00d4aa;
    font-size: 20px;
    margin-bottom: 15px;
}

.provider-card p {
    color: #808080;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.provider-games {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.provider-game-tag {
    background: #0f1923;
    color: #b0b0b0;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid #2a3545;
}

/* Responsible Gambling */
.responsible-section {
    padding: 40px 0;
}

.responsible-card {
    background: #1a2332;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #2a3545;
    margin-bottom: 25px;
}

.responsible-card h3 {
    color: #00d4aa;
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.responsible-card p {
    color: #808080;
    line-height: 1.7;
}

.responsible-card ul {
    margin-top: 15px;
    margin-left: 20px;
}

.responsible-card li {
    color: #808080;
    margin-bottom: 8px;
    line-height: 1.6;
}

.warning-box {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid #ff6b6b;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
}

.warning-box h4 {
    color: #ff6b6b;
    margin-bottom: 10px;
}

.warning-box p {
    color: #b0b0b0;
    font-size: 14px;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    max-height: 500px;
    background: #1a2332;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid #2a3545;
    display: none;
    z-index: 999;
    overflow: hidden;
}

.chat-widget.active {
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.3s ease;
}

.chat-header {
    background: linear-gradient(135deg, #00d4aa 0%, #00f5c4 100%);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    color: #0f1923;
    font-size: 16px;
}

.chat-close {
    background: none;
    border: none;
    color: #0f1923;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    max-height: 350px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-message {
    max-width: 85%;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.chat-message.user {
    align-self: flex-end;
    background: #00d4aa;
    color: #0f1923;
    border-bottom-right-radius: 4px;
}

.chat-message.bot {
    align-self: flex-start;
    background: #0f1923;
    color: #e0e0e0;
    border-bottom-left-radius: 4px;
    border: 1px solid #2a3545;
}

.chat-input {
    display: flex;
    padding: 10px 15px;
    gap: 10px;
    border-top: 1px solid #2a3545;
}

.chat-input input {
    flex: 1;
    padding: 10px 15px;
    background: #0f1923;
    border: 1px solid #2a3545;
    border-radius: 25px;
    color: #fff;
    font-size: 14px;
}

.chat-input input:focus {
    outline: none;
    border-color: #00d4aa;
}

.chat-input button {
    width: 40px;
    height: 40px;
    background: #00d4aa;
    border: none;
    border-radius: 50%;
    color: #0f1923;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.2s;
}

.chat-input button:hover {
    transform: scale(1.1);
}

.chat-typing {
    display: flex;
    gap: 4px;
    padding: 10px 15px;
}

.chat-typing span {
    width: 8px;
    height: 8px;
    background: #808080;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
}