#net-chatbot-container {
    position: fixed;
    bottom: 20px;
    z-index: 2147483647 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
}

#net-chatbot-container.net-chatbot-right {
    right: 20px;
}

#net-chatbot-container.net-chatbot-left {
    left: 20px;
}

#net-chatbot-trigger {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c20000 0%, #8b0000 100%);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

#net-chatbot-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

#net-chatbot-trigger .trigger-icon {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

#net-chatbot-trigger .trigger-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.chatbot-welcome-bubble {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    white-space: nowrap;
    font-size: 14px;
    color: #333;
    animation: fadeInBounce 0.5s ease;
    z-index: 999998;
}

.chatbot-welcome-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

@keyframes fadeInBounce {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    60% {
        opacity: 1;
        transform: translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

#net-chatbot-widget {
    position: fixed;
    bottom: 20px;
    width: 380px;
    max-width: calc(100vw - 40px);
    height: 600px;
    max-height: calc(100vh - 40px);
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
    z-index: 2147483647 !important;
}

#net-chatbot-container.net-chatbot-right #net-chatbot-widget {
    right: 20px;
}

#net-chatbot-container.net-chatbot-left #net-chatbot-widget {
    left: 20px;
}

#net-chatbot-widget.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-header {
    background: linear-gradient(135deg, #c20000 0%, #8b0000 100%);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 16px 16px 0 0;
}

.header-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.header-logo {
    height: 35px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s;
}

.header-logo:hover {
    transform: scale(1.05);
}

.header-info {
    flex: 1;
    margin-left: 15px;
}

.header-info h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.status-indicator {
    font-size: 12px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    display: inline-block;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.header-controls {
    display: flex;
    gap: 10px;
}

.header-controls button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.header-controls button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chatbot-consent-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    background: #f8f9fa;
}

.consent-icon {
    font-size: 60px;
    color: #c20000;
    margin-bottom: 20px;
}

.consent-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.consent-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.consent-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.consent-accept-btn {
    background: linear-gradient(135deg, #c20000 0%, #8b0000 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.consent-accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(194, 0, 0, 0.3);
}

.consent-decline-btn {
    background: #e0e0e0;
    color: #666;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.consent-decline-btn:hover {
    background: #d0d0d0;
}

.consent-privacy-link {
    color: #007cba;
    text-decoration: underline;
    cursor: pointer;
    font-size: 13px;
}

.chatbot-privacy-modal {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.privacy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.privacy-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.privacy-close-btn {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.privacy-modal-content {
    font-size: 13px;
    line-height: 1.8;
    color: #555;
}

.privacy-modal-content h3 {
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #333;
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f8f9fa;

    /* Subtle message balloon pattern - inline SVG, no external file */
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.06'%3E%3Cpath d='M20,25 Q15,20 20,15 L35,15 Q40,20 35,25 L28,25 L25,30 L22,25 Z' fill='%23c20000'/%3E%3Ccircle cx='70' cy='70' r='4' fill='%23c20000'/%3E%3Cpath d='M65,40 Q60,35 65,30 L75,30 Q80,35 75,40 Z' fill='%23c20000'/%3E%3Ccircle cx='25' cy='75' r='2.5' fill='%23c20000'/%3E%3Ccircle cx='85' cy='15' r='3' fill='%23c20000'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100px 100px;
    background-position: 0 0;
    background-repeat: repeat;

    /* Infinite smooth flow - seamless endless animation */
    animation: patternFloat 30s linear infinite;
}

/* Seamless infinite diagonal flow - never stops, always smooth */
@keyframes patternFloat {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 50px;
    }
}

.chatbot-message {
    display: flex;
    margin-bottom: 15px;
    animation: fadeInUp 0.3s ease;
    align-items: flex-start;
    gap: 10px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.message-avatar img {
    width: 20px;
    height: 20px;
}

.message-avatar .dashicons {
    font-size: 15px;
    width: 20px;
    height: 20px;
    color: #666;
}

.message-content {
    max-width: 88%;
    padding: 10px 14px;
    border-radius: 18px;
    background: white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    word-wrap: break-word;
    font-size: 13px !important;
    line-height: 1.5;
}

.message-content * {
    font-size: 13px !important;
}

.chatbot-message.user .message-content {
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    color: white;
}

.chatbot-message.bot-error .message-content {
    background: #fee;
    color: #c00;
    border: 1px solid #fcc;
}

.loading-message .message-content {
    padding: 8px 16px;
    background: transparent;
    box-shadow: none;
}

.loading-animation {
    width: 40px;
    height: 40px;
}

.chatbot-contact-info {
    padding: 15px;
    background: #f0f8ff;
    border-radius: 8px;
    margin-top: 10px;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.chatbot-contact-info p {
    margin: 0 0 15px 0;
    font-weight: 500;
    color: #333;
    font-size: 13px !important;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 13px !important;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item span {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-item i {
    width: 20px;
    text-align: center;
    color: #c20000;
}

.contact-item strong {
    font-weight: 600;
    margin-right: 5px;
}

.contact-item a {
    color: #007cba;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #005a87;
    text-decoration: underline;
}

.search-results {
    margin-top: 15px;
}

.result-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.chatbot-page-header {
    padding: 10px 12px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
    font-weight: 500;
    font-size: 13px !important;
}

.chatbot-page-header:hover {
    background: #e9ecef;
}

.collapse-icon {
    transition: transform 0.3s;
    font-size: 12px;
}

.chatbot-page-content {
    padding: 12px;
    border-top: 1px solid #e0e0e0;
}

.chatbot-page-content p {
    margin: 0 0 12px 0;
    color: #666;
    line-height: 1.6;
    font-size: 13px !important;
}

.page-link-btn {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #c20000 0%, #8b0000 100%);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 12px !important;
    transition: all 0.3s;
}

.page-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.quick-actions-container {
    padding: 10px 15px;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.quick-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.quick-action-btn {
    padding: 5px 10px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    font-size: 12px !important;
    cursor: pointer;
    transition: all 0.3s;
    color: #495057;
}

.quick-action-btn:hover {
    background: linear-gradient(135deg, #c20000 0%, #8b0000 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.chatbot-input-area {
    background: white;
    border-top: 1px solid #e0e0e0;
    padding: 15px;
}

.input-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

#chatbot-input {
    flex: 1;
    padding: 8px 14px;
    border: 1px solid #dee2e6;
    border-radius: 25px;
    font-size: 13px !important;
    outline: none;
    transition: border-color 0.3s;
}

#chatbot-input:focus {
    border-color: #c20000;
}

.send-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c20000 0%, #8b0000 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.send-btn img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.chatbot-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px !important;
    color: #6c757d;
}

.footer-controls {
    display: flex;
    gap: 5px;
    align-items: center;
}

.chatbot-feedback { position: relative; }
.feedback-btn {
    background: transparent;
    border: 1px solid #dee2e6;
    padding: 6px 8px;
    border-radius: 8px;
    cursor: pointer;
    color: #6c757d;
}
.feedback-btn:hover { background: #f8f9fa; }
.feedback-form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    max-width: 90vw;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(230, 230, 230, 0.8);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 25px;
    z-index: 2150000000;
    box-sizing: border-box;
}

.feedback-inner { 
    display: flex; 
    flex-direction: column; 
    gap: 12px;
    width: 100%;
}

.feedback-title {
    color: #333;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.feedback-rating {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.fb-rate {
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.2s;
}

.fb-rate:hover {
    background: #f0f0f0;
    border-color: #ccc;
}

.fb-rate.active {
    background: #c20000;
    color: white;
    border-color: #c20000;
}

#fb-comment {
    width: 100%;
    min-height: 80px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    font-size: 13px;
    resize: vertical;
}

.feedback-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.feedback-actions button {
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 13px;
}

.feedback-actions button:hover {
    background: #f0f0f0;
}

.feedback-actions button[type="submit"] {
    background: #c20000;
    color: white;
    border-color: #c20000;
}

.feedback-actions button[type="submit"]:hover {
    background: #a80000;
}
.feedback-title { font-weight:600; font-size:13px; }
.feedback-rating { display:flex; gap:6px; }
.fb-rate { padding:6px 8px; border-radius:4px; border:1px solid #ddd; background:#f8f9fa; cursor:pointer; }
.fb-rate.active { background:#c20000; color:white; border-color:transparent; }
.feedback-actions { display:flex; gap:8px; justify-content:flex-end; }
#fb-comment { width:100%; min-height:60px; border:1px solid #e9e9e9; border-radius:6px; padding:6px; font-size:13px; }

.language-switch {
    display: flex;
    gap: 5px;
}

.lang-btn {
    padding: 3px 8px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    font-size: 11px !important;
    cursor: pointer;
    transition: all 0.3s;
}

.lang-btn.active {
    background: #c20000;
    color: white;
    border-color: #c20000;
}

.lang-btn:hover:not(.active) {
    background: #e9ecef;
}

.tts-btn {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.06);
    padding: 6px 8px;
    border-radius: 6px;
    cursor: pointer;
    color: #333;
    font-size: 14px;
}
.tts-btn.active {
    background: #c20000;
    color: white;
    border-color: transparent;
}

.about-btn {
    padding: 3px 8px;
    background: transparent;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    font-size: 11px !important;
    cursor: pointer;
    transition: all 0.3s;
    color: #6c757d;
}

.about-btn:hover {
    background: #e9ecef;
}

.chatbot-about-modal {
    display: none;
    position: absolute;
    bottom: 50px;
    left: 15px;
    right: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    padding: 20px;
    z-index: 1001;
}

.about-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.about-modal-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.about-close-btn {
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
}

.about-modal-content {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
}

.about-modal-content .version {
    margin-top: 10px;
    font-size: 12px;
    color: #999;
}

.powered-by {
    font-size: 11px !important;
}

.powered-by a {
    color: #c20000;
    text-decoration: none;
    font-weight: 600;
}

.powered-by a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    #net-chatbot-widget {
        width: calc(100vw - 20px);
        height: calc(100vh - 20px);
        bottom: 10px;
        right: 10px !important;
        left: 10px !important;
        border-radius: 12px;
    }
    
    .chatbot-header {
        border-radius: 12px 12px 0 0;
    }
    
    .message-content {
        max-width: 80%;
        font-size: 12px !important;
    }
}

.animated-entry {
    animation: fadeInUp 0.3s ease;
}

.theme-gradient-ocean #net-chatbot-trigger,
.theme-gradient-ocean .chatbot-header,
.theme-gradient-ocean .send-btn,
.theme-gradient-ocean .page-link-btn {
    background: linear-gradient(135deg, #2E3192 0%, #1BFFFF 100%) !important;
}

.theme-gradient-sunset #net-chatbot-trigger,
.theme-gradient-sunset .chatbot-header,
.theme-gradient-sunset .send-btn,
.theme-gradient-sunset .page-link-btn {
    background: linear-gradient(135deg, #ee9ca7 0%, #ffdde1 100%) !important;
}

.theme-gradient-forest #net-chatbot-trigger,
.theme-gradient-forest .chatbot-header,
.theme-gradient-forest .send-btn,
.theme-gradient-forest .page-link-btn {
    background: linear-gradient(135deg, #134e5e 0%, #71b280 100%) !important;
}

.theme-gradient-royal #net-chatbot-trigger,
.theme-gradient-royal .chatbot-header,
.theme-gradient-royal .send-btn,
.theme-gradient-royal .page-link-btn {
    background: linear-gradient(135deg, #141e30 0%, #243b55 100%) !important;
}

.theme-gradient-fire #net-chatbot-trigger,
.theme-gradient-fire .chatbot-header,
.theme-gradient-fire .send-btn,
.theme-gradient-fire .page-link-btn {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%) !important;
}

/* Theme-specific background patterns for chatbot messages */
.theme-gradient-ocean .chatbot-messages {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.06'%3E%3Cpath d='M20,25 Q15,20 20,15 L35,15 Q40,20 35,25 L28,25 L25,30 L22,25 Z' fill='%232E3192'/%3E%3Ccircle cx='70' cy='70' r='4' fill='%232E3192'/%3E%3Cpath d='M65,40 Q60,35 65,30 L75,30 Q80,35 75,40 Z' fill='%232E3192'/%3E%3Ccircle cx='25' cy='75' r='2.5' fill='%232E3192'/%3E%3Ccircle cx='85' cy='15' r='3' fill='%232E3192'/%3E%3C/g%3E%3C/svg%3E") !important;
}

.theme-gradient-sunset .chatbot-messages {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.06'%3E%3Cpath d='M20,25 Q15,20 20,15 L35,15 Q40,20 35,25 L28,25 L25,30 L22,25 Z' fill='%23ee9ca7'/%3E%3Ccircle cx='70' cy='70' r='4' fill='%23ee9ca7'/%3E%3Cpath d='M65,40 Q60,35 65,30 L75,30 Q80,35 75,40 Z' fill='%23ee9ca7'/%3E%3Ccircle cx='25' cy='75' r='2.5' fill='%23ee9ca7'/%3E%3Ccircle cx='85' cy='15' r='3' fill='%23ee9ca7'/%3E%3C/g%3E%3C/svg%3E") !important;
}

.theme-gradient-forest .chatbot-messages {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.06'%3E%3Cpath d='M20,25 Q15,20 20,15 L35,15 Q40,20 35,25 L28,25 L25,30 L22,25 Z' fill='%23134e5e'/%3E%3Ccircle cx='70' cy='70' r='4' fill='%23134e5e'/%3E%3Cpath d='M65,40 Q60,35 65,30 L75,30 Q80,35 75,40 Z' fill='%23134e5e'/%3E%3Ccircle cx='25' cy='75' r='2.5' fill='%23134e5e'/%3E%3Ccircle cx='85' cy='15' r='3' fill='%23134e5e'/%3E%3C/g%3E%3C/svg%3E") !important;
}

.theme-gradient-royal .chatbot-messages {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.06'%3E%3Cpath d='M20,25 Q15,20 20,15 L35,15 Q40,20 35,25 L28,25 L25,30 L22,25 Z' fill='%23141e30'/%3E%3Ccircle cx='70' cy='70' r='4' fill='%23141e30'/%3E%3Cpath d='M65,40 Q60,35 65,30 L75,30 Q80,35 75,40 Z' fill='%23141e30'/%3E%3Ccircle cx='25' cy='75' r='2.5' fill='%23141e30'/%3E%3Ccircle cx='85' cy='15' r='3' fill='%23141e30'/%3E%3C/g%3E%3C/svg%3E") !important;
}

.theme-gradient-fire .chatbot-messages {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.06'%3E%3Cpath d='M20,25 Q15,20 20,15 L35,15 Q40,20 35,25 L28,25 L25,30 L22,25 Z' fill='%23ff416c'/%3E%3Ccircle cx='70' cy='70' r='4' fill='%23ff416c'/%3E%3Cpath d='M65,40 Q60,35 65,30 L75,30 Q80,35 75,40 Z' fill='%23ff416c'/%3E%3Ccircle cx='25' cy='75' r='2.5' fill='%23ff416c'/%3E%3Ccircle cx='85' cy='15' r='3' fill='%23ff416c'/%3E%3C/g%3E%3C/svg%3E") !important;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Easter Egg - Tunc  Game */
.powered-by {
    cursor: default;
    user-select: none;
    transition: color 0.3s;
}

.powered-by:hover {
    color: #a0a0a0;
}

#dino-game-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #87CEEB, #98D8E8);
    border-radius: 10px;
    overflow: hidden;
}

.dino-game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 2px solid #ddd;
}

.dino-game-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

#close-dino-game {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
    padding: 0 5px;
}

#close-dino-game:hover {
    color: #ff4444;
}

#dino-game {
    position: relative;
    width: 100%;
    height: 200px;
    background: #fff;
    overflow: hidden;
    margin-top: 20px;
}

#dino {
    position: absolute;
    bottom: 0;
    left: 50px;
    width: 20px;
    height: 43px;
    background: #666;
    clip-path: polygon(
        22% 0%, 78% 0%, 100% 38%, 100% 100%,
        78% 100%, 78% 62%, 22% 62%, 22% 100%, 0 100%, 0 38%
    );
}

.dino-run {
    animation: dino-run 0.5s steps(2) infinite;
}

.dino-jump {
    animation: dino-jump 0.5s ease-out;
}

.dino-duck {
    height: 25px !important;
    margin-bottom: 0;
}

@keyframes dino-run {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(0.95); }
}

@keyframes dino-jump {
    0% { bottom: 0; }
    50% { bottom: 80px; }
    100% { bottom: 0; }
}

#obstacle {
    position: absolute;
    bottom: 0;
    left: 380px;
    width: 20px;
    height: 40px;
    background: #228B22;
    clip-path: polygon(
        50% 0%, 60% 20%, 75% 20%, 75% 40%,
        90% 40%, 90% 100%, 10% 100%, 10% 40%,
        25% 40%, 25% 20%, 40% 20%
    );
}

.ground {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #666;
    box-shadow: 0 2px 0 #ccc;
}

#score {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    font-family: 'Courier New', monospace;
}

#game-over {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#game-over h2 {
    color: #ff4444;
    margin: 0 0 10px 0;
}

#restart-game {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

#restart-game:hover {
    background: #45a049;
}

.game-instructions {
    text-align: center;
    padding: 10px;
    color: #666;
    background: rgba(255, 255, 255, 0.8);
}

.chatbot-name-input-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff5f0 100%);
}

/* Tunc game'i biraz daha detaylı yapam tunc not */
#dino::before {
    content: '👁';
    position: absolute;
    top: 5px;
    left: 25px;
    font-size: 8px;
}

.message-avatar i.fa-user-circle {
    font-size: 24px;
    color: #007cba;
}

.chatbot-message.user .message-avatar i {
    color: #007cba;
}

.chatbot-message.bot .message-avatar img {
    /* Bot avatarrrr için */
}

/* NET GPTTTT Knowledge Base Results */
.kb-results {
    margin-top: 10px;
}

.kb-result-item {
    background: #680000;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.kb-result-header {
    padding: 12px 15px;
    cursor: pointer;
    background: white;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.kb-result-header:hover {
    background: #f8f9fa;
}

.kb-result-header .collapse-icon {
    transition: transform 0.3s;
    color: #c20000;
    font-weight: bold;
}

.kb-result-header.expanded .collapse-icon {
    transform: rotate(90deg);
}

.kb-result-content {
    padding: 15px;
    background: white;
}

.kb-result-content p {
    margin: 0 0 15px 0;
    line-height: 1.6;
}

.kb-link-btn {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #c20000 0%, #8b0000 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: transform 0.3s;
}

.kb-link-btn:hover {
    transform: translateX(5px);
}
.currency-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 12px;
    padding: 15px;
    margin: 10px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.currency-header {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.currency-card {
    background: white;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.currency-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.currency-card:last-child {
    margin-bottom: 0;
}

.currency-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.currency-info {
    flex: 1;
}

.currency-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    font-size: 14px;
}

.currency-rates {
    display: flex;
    gap: 15px;
    font-size: 13px;
}

.rate-buy {
    color: #28a745;
    font-weight: 500;
}

.rate-sell {
    color: #dc3545;
    font-weight: 500;
}

.currency-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e9ecef;
    font-size: 12px;
    color: #666;
}

.news-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 12px;
    padding: 15px;
    margin: 10px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.news-count {
    font-size: 12px;
    font-weight: 400;
    color: #666;
}

.news-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-card {
    background: white;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.news-thumbnail {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
}

.news-content {
    flex: 1;
}

.news-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.news-date {
    font-size: 12px;
    color: #666;
}

.news-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.news-read-more {
    color: #c20000;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-read-more .arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.news-card:hover .news-read-more .arrow {
    transform: translateX(5px);
}

.news-all {
    display: block;
    text-align: center;
    padding: 10px;
    margin-top: 12px;
    color: #c20000;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    background: white;
    transition: all 0.3s ease;
}

.news-all:hover {
    background: #c20000;
    color: white;
}

@media (max-width: 480px) {
    .currency-rates {
        flex-direction: column;
        gap: 5px;
    }
    
    .news-thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .news-content h4 {
        font-size: 13px;
    }

    .weather-cards {
        grid-template-columns: 1fr;
    }
    
    .weather-temp {
        font-size: 28px;
    }
    
    .weather-icon {
        font-size: 50px;
    }
}

.weather-container {
    background: linear-gradient(135deg, #e3f2fd 0%, #fff 100%);
    border-radius: 12px;
    padding: 15px;
    margin: 10px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.weather-header {
    font-size: 18px;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 15px;
    text-align: center;
}

.weather-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.weather-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.weather-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.weather-icon {
    font-size: 60px;
    margin-bottom: 10px;
    animation: weather-float 3s ease-in-out infinite;
}

@keyframes weather-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.weather-city {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.weather-temp {
    font-size: 36px;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 5px;
}

.weather-feels {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.weather-desc {
    font-size: 15px;
    font-weight: 600;
    color: #555;
    margin-bottom: 15px;
    padding: 8px;
    background: #f5f5f5;
    border-radius: 8px;
}

.weather-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.weather-detail {
    font-size: 12px;
    color: #666;
    padding: 6px;
    background: #fafafa;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.weather-detail span {
    font-size: 14px;
}

.weather-time {
    font-size: 11px;
    color: #999;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
}

/* Modal overlay stiller - feedback ve support icin */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2147483648 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal-container {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    z-index: 10;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #c20000;
}

.modal-header {
    padding: 30px 25px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.modal-icon {
    font-size: 48px;
    color: #c20000;
    margin-bottom: 15px;
}

.modal-header h2 {
    margin: 0 0 8px 0;
    font-size: 22px;
    color: #333;
}

.modal-header p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.modal-body {
    padding: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c20000;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.star-btn {
    background: transparent;
    border: none;
    font-size: 36px;
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s;
    padding: 5px;
}

.star-btn:hover,
.star-btn.active {
    color: #ffd700;
    transform: scale(1.2);
}

.modal-footer {
    padding: 0 25px 25px;
    text-align: center;
}

.submit-btn {
    background: linear-gradient(135deg, #c20000 0%, #8b0000 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(194, 0, 0, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 0, 0, 0.4);
}

/* Mobile icin ek duzeltmeler */
@media (max-width: 480px) {
    #net-chatbot-container {
        position: fixed !important;
        top: 0 !important;
        bottom: 0 !important;
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }

    #net-chatbot-trigger {
        position: fixed !important;
        bottom: 15px !important;
        right: 15px !important;
        z-index: 2147483647 !important;
    }

    #net-chatbot-widget {
        position: fixed !important;
        top: 0 !important;
        bottom: 0 !important;
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        border-radius: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .chatbot-header {
        border-radius: 0 !important;
        padding: 12px 15px;
        padding-top: max(12px, env(safe-area-inset-top));
    }

    .chatbot-messages {
        height: calc(100% - 200px) !important;
        padding-bottom: env(safe-area-inset-bottom);
    }

    .chatbot-input-area {
        padding-bottom: max(15px, env(safe-area-inset-bottom));
    }

    .modal-overlay {
        position: fixed !important;
        z-index: 2147483648 !important;
    }

    .modal-container {
        width: 90% !important;
        max-width: 90% !important;
        max-height: 80vh !important;
        border-radius: 12px !important;
        margin: 0 auto !important;
    }

    .modal-header {
        padding: 25px 20px 15px;
    }

    .modal-icon {
        font-size: 40px;
    }

    .modal-header h2 {
        font-size: 20px;
    }

    .modal-body {
        padding: 20px;
    }

    .star-btn {
        font-size: 32px;
    }
}