/* استایل‌های چت */
.contact-bubble {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(to right, #9D50BB, #FF6B6B);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
}
.contact-bubble i {
    font-size: 1.5rem;
    color: white;
}
.contact-modal {
    display: none;
    position: fixed;
    bottom: 90px;
    left: 20px;
    width: 300px;
    background: rgba(26,42,58,0.95);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
    z-index: 1000;
    border: 1px solid #FFD700;
}
.contact-modal h3 {
    color: #FFD700;
    margin-bottom: 15px;
    text-align: center;
}
.contact-modal textarea {
    width: 100%;
    background: #1A2A3A;
    border: 1px solid #2A3A4A;
    border-radius: 5px;
    padding: 10px;
    color: white;
    margin-bottom: 15px;
    min-height: 100px;
}
.contact-modal button {
    background: linear-gradient(to right, #FF6B6B, #9D50BB);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
}
.chat-messages {
    height: 200px;
    overflow-y: auto;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(0,0,0,0.2);
    border-radius: 5px;
}
.message {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 5px;
    max-width: 80%;
}
.user-message {
    background: #4CAF50;
    margin-right: auto;
}
.admin-message {
    background: #2E7D32;
    margin-left: auto;
}


        /* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Tajawal', sans-serif;
        }
        
        :root {
    scroll-behavior: smooth;

            --primary-color: #FFD700;
            --secondary-color: #0D1B2A;
            --bg-light: #1A2A3A;
            --text-color: #fff;
            --border-radius: 10px;
            --box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            --transition: all 0.3s ease;
        }
        
        body {
            background: #0D1B2A url('images/dota-bg.webp') no-repeat center center fixed;
            background-size: cover;
            color: white;
            min-height: 100vh;
        }

        /* Header Styles */
        
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.95), rgba(26, 42, 58, 0.95));
  backdrop-filter: blur(5px);
  border-bottom: 2px solid #FFD700;
}

        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .logo img {
            height: 85px;
            border-radius: 50%;
        }
        
        .logo-text {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .nav-links {
            display: flex;
            gap: 1.5rem;
        }
        
        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
        }
        
        .nav-links a:hover {
            background: rgba(255, 215, 0, 0.1);
            color: var(--primary-color);
        }
        
        .nav-links a.active {
            background: linear-gradient(to right, #FF6B6B, #9D50BB);
            color: white;
        }

        /* Main Container */
        
.container {
    animation: fadeInSection 0.7s ease;

  max-width: 1200px;
  margin: 160px auto 0 auto;
  background: rgba(13, 27, 42, 0.9);
  min-height: 100vh;
  border-radius: 0;
  padding: 20px;
  border: 1px solid #1A2A3A;
  backdrop-filter: blur(5px);
}


        /* User Profile Styles */
        .user-profile-container {
            position: absolute;
            left: 1.5rem;
            top: 1.5rem;
            z-index: 100;
        }
        
        .user-profile-wrapper {
            position: relative;
            display: inline-block;
        }
        
        .user-profile {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            cursor: pointer;
            transition: var(--transition);
            padding: 0.5rem;
            border-radius: 25px;
        }
        
        .user-profile:hover {
            background: rgba(255,215,0,0.1);
        }
        
        .user-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--bg-light);
            border: 2px solid var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .user-avatar i {
            font-size: 1.2rem;
            color: var(--primary-color);
        }
        
        .user-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .user-name {
            font-weight: 500;
            color: var(--primary-color);
            margin-left: 0.5rem;
        }
        
        .user-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--secondary-color);
            border: 1px solid var(--primary-color);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            width: 200px;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            transform: translateY(10px);
            z-index: 100;
        }
        
        .user-profile-wrapper.active .user-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-item {
            padding: 0.8rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.7rem;
            color: var(--text-color);
            text-decoration: none;
            transition: var(--transition);
            border-bottom: 1px solid rgba(255,215,0,0.1);
        }
        
        .dropdown-item:last-child {
            border-bottom: none;
        }
        
        .dropdown-item:hover {
            background: rgba(255,215,0,0.1);
            color: var(--primary-color);
        }
        
        .dropdown-item i {
            width: 20px;
            text-align: center;
        }
        
        /* Page Content Styles */
        .page-title {
            text-align: center;
            margin: 20px 0 40px;
            color: #FFD700;
            font-size: 2.5rem;
            text-shadow: 0 0 10px rgba(255,215,0,0.5);
        }
        
        /* Service Tabs */
        .service-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .service-tab {
            padding: 12px 30px;
            background: #1A2A3A;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: bold;
            border: 2px solid transparent;
        }
        
        .service-tab:hover {
            border-color: #FFD700;
        }
        
        .service-tab.active {
            background: linear-gradient(to right, #FF6B6B, #9D50BB);
            box-shadow: 0 0 15px rgba(157,80,187,0.5);
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
        }
        
        /* MMR Boost Section */
        .mmr-selection {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .mmr-box {
            background: rgba(26,42,58,0.7);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #2A3A4A;
        }
        
        .mmr-title {
            text-align: center;
            margin-bottom: 15px;
            color: #4ECDC4;
            font-size: 1.2rem;
        }
        
        .mmr-input-container {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .mmr-input {
            flex: 1;
            background: #1A2A3A;
            border: 1px solid #2A3A4A;
            border-radius: 5px;
            padding: 10px;
            color: white;
            text-align: center;
        }
        
        .mmr-slider-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .mmr-slider {
            flex: 1;
            -webkit-appearance: none;
            height: 10px;
            background: #1A2A3A;
            border-radius: 5px;
            outline: none;
        }
        
        .mmr-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #FFD700;
            cursor: pointer;
        }
        
        .mmr-value {
            width: 80px;
            text-align: center;
            font-weight: bold;
        }
        
        .rank-display {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 15px;
            gap: 10px;
        }
        
        .rank-icon {
            width: 60px;
            height: 60px;
            object-fit: contain;
        }
        
        .rank-name {
            font-size: 1.1rem;
            color: #FFD700;
        }
        
        /* Boost Type Selection */
        .boost-type {
            background: rgba(26,42,58,0.7);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            border: 1px solid #2A3A4A;
        }
        
        .boost-type h3 {
            text-align: center;
            margin-bottom: 20px;
            color: #FFD700;
        }
        
        .boost-options {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .boost-option {
            background: rgba(26,42,58,0.7);
            padding: 20px;
            border-radius: 10px;
            cursor: pointer;
            text-align: center;
            transition: all 0.3s;
            border: 2px solid transparent;
            flex: 1;
            min-width: 200px;
            max-width: 250px;
        }
        
        .boost-option:hover {
            border-color: #FFD700;
        }
        
        .boost-option.selected {
            background: linear-gradient(to right, #FF6B6B, #9D50BB);
            box-shadow: 0 0 15px rgba(157,80,187,0.5);
            border-color: transparent;
        }
        
        .boost-option i {
            font-size: 2rem;
            color: #4ECDC4;
            margin-bottom: 10px;
        }
        
        .boost-option h4 {
            margin-bottom: 5px;
            color: white;
        }
        
        .boost-option p {
            font-size: 0.9rem;
            color: #aaa;
        }
        
        .price-tag {
            font-size: 0.8rem;
            color: #FFD700;
            margin-top: 5px;
            font-weight: bold;
        }
        
        /* Role Selection */
        .role-selection {
            background: rgba(26,42,58,0.7);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            border: 1px solid #2A3A4A;
        }
        
        .role-selection h3 {
            text-align: center;
            margin-bottom: 20px;
            color: #FFD700;
        }
        
        .role-options {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .role-option {
            background: rgba(26,42,58,0.7);
            padding: 20px;
            border-radius: 10px;
            cursor: pointer;
            text-align: center;
            transition: all 0.3s;
            border: 2px solid transparent;
            flex: 1;
            min-width: 150px;
            max-width: 200px;
        }
        
        .role-option:hover {
            border-color: #FFD700;
        }
        
        .role-option.selected {
            background: linear-gradient(to right, #FF6B6B, #9D50BB);
            box-shadow: 0 0 15px rgba(157,80,187,0.5);
            border-color: transparent;
        }
        
        .role-option i {
            font-size: 2rem;
            color: #4ECDC4;
            margin-bottom: 10px;
        }
        
        .role-option h4 {
            margin-bottom: 5px;
            color: white;
        }
        
        /* Behaviour Boost Section */
        .behaviour-options {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .behaviour-option {
            background: rgba(26,42,58,0.7);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #2A3A4A;
        }
        
        .behaviour-option h3 {
            text-align: center;
            margin-bottom: 15px;
            color: #FFD700;
        }
        
        .behaviour-option i {
            font-size: 1.8rem;
            color: #4ECDC4;
            margin-bottom: 10px;
            display: block;
            text-align: center;
        }
        
        /* Video Container */
        .video-container-small {
            margin: 20px auto;
            text-align: center;
            border-radius: 10px;
            overflow: hidden;
            max-width: 400px;
        }
        
        .video-container-small video {
            width: 100%;
            border-radius: 10px;
            border: 2px solid #FFD700;
        }
        
        /* Extra Options */
        .extra-options {
            background: rgba(26,42,58,0.7);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            border: 1px solid #2A3A4A;
            position: relative;
        }
        
        .option-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #2A3A4A;
        }
        
        .option-item:last-child {
            border-bottom: none;
        }
        
        .option-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .option-info i {
            color: #9D50BB;
            font-size: 1.2rem;
        }
        
        .option-text h4 {
            margin-bottom: 3px;
            color: #FFD700;
        }
        
        .option-text p {
            font-size: 0.85rem;
            color: #aaa;
        }
        
        .switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
        }
        
        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #1A2A3A;
            transition: .4s;
            border-radius: 24px;
        }
        
        .slider:before {
            position: absolute;
            content: "";
            height: 16px;
            width: 16px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked + .slider {
            background-color: #9D50BB;
        }
        
        input:checked + .slider:before {
            transform: translateX(26px);
        }
        
        /* Price Box */
        .price-box {
            background: linear-gradient(135deg, #1A2A3A 0%, #2A3A4A 100%);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid #FFD700;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .price-amount {
            font-size: 2.5rem;
            color: #FFD700;
            margin: 10px 0;
        }
        
        .price-note {
            color: #4ECDC4;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        
        .buy-button {
            background: linear-gradient(to right, #FF6B6B, #9D50BB);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: bold;
            width: 100%;
        }
        
        .buy-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255,107,107,0.4);
        }
        
        /* LP Remove Section */
        .lp-option {
            background: rgba(26,42,58,0.7);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            border: 1px solid #2A3A4A;
        }
        
        .lp-option h3 {
            text-align: center;
            margin-bottom: 20px;
            color: #FFD700;
        }
        
        /* Benefits List */
        .benefits-list {
            margin: 20px 0;
            padding-right: 20px;
        }
        
        .benefits-list li {
            margin-bottom: 10px;
            position: relative;
            padding-right: 25px;
        }
        
        .benefits-list li:before {
            content: "✓";
            color: #4ECDC4;
            position: absolute;
            right: 0;
            font-weight: bold;
        }
        
        /* Footer */
        .footer {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #2A3A4A;
            flex-wrap: wrap;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }
        
        .footer-section h3 {
            color: #FFD700;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 8px;
        }
        
        .footer-section ul li a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section ul li a:hover {
            color: #4ECDC4;
        }
        
            text-align: center;
            margin: 20px 0;
            padding: 10px;
            background: rgba(26,42,58,0.7);
            border-radius: 10px;
            border: 1px solid #FFD700;
        }
        
        /* Contact Bubble */
        .contact-bubble {
    animation: bounceIn 0.5s ease;
    border: 2px solid #FFD700;
    box-shadow: 0 0 15px rgba(255,215,0,0.4);

            position: fixed;
            bottom: 20px;
            left: 20px;
            background: linear-gradient(to right, #9D50BB, #FF6B6B);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            z-index: 1000;
        }
        
        .contact-bubble i {
            font-size: 1.5rem;
            color: white;
        }
        
        .contact-modal {
    animation: slideUp 0.4s ease;
    border-radius: 15px;
    border: 2px solid #FFD700;
    box-shadow: 0 0 20px rgba(255,215,0,0.3);

            display: none;
            position: fixed;
            bottom: 90px;
            left: 20px;
            width: 300px;
            background: rgba(26,42,58,0.95);
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.5);
            z-index: 1000;
            border: 1px solid #FFD700;
        }
        
        .contact-modal h3 {
            color: #FFD700;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .contact-modal textarea {
            width: 100%;
            background: #1A2A3A;
            border: 1px solid #2A3A4A;
            border-radius: 5px;
            padding: 10px;
            color: white;
            margin-bottom: 15px;
            min-height: 100px;
        }
        
        .contact-modal button {
            background: linear-gradient(to right, #FF6B6B, #9D50BB);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 50px;
            cursor: pointer;
            width: 100%;
        }
        
        /* FAQ Section */
        .faq-item {
            margin-bottom: 15px;
            border-bottom: 1px solid #2A3A4A;
            padding-bottom: 15px;
        }
        
        .faq-question {
            color: #FFD700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            color: #aaa;
            padding-top: 10px;
            display: none;
        }
        
        .faq-answer.show {
            display: block;
        }
        
        /* استایل‌های چت آنلاین */
        .live-chat {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 999;
        }

        .chat-toggle {
            background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
            color: white;
            padding: 12px 20px;
            border-radius: 50px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }

        .chat-toggle:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
            background: linear-gradient(135deg, #81C784 0%, #4CAF50 100%);
        }

        .chat-modal {
            display: none;
            position: fixed;
            bottom: 80px;
            right: 20px;
            width: 350px;
            background: #2E7D32;
            border-radius: 10px;
            box-shadow: 0 0 25px rgba(0,0,0,0.6);
            z-index: 1000;
            border: 1px solid #4CAF50;
            overflow: hidden;
        }

        .chat-header {
            background: linear-gradient(to right, #4CAF50, #388E3C);
            color: white;
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chat-header h3 {
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1rem;
        }

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

        .status-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #8BC34A;
        }

        .close-chat {
            cursor: pointer;
            font-size: 20px;
            color: rgba(255,255,255,0.7);
            transition: color 0.3s;
        }

        .close-chat:hover {
            color: white;
        }

        .chat-messages {
            height: 300px;
            overflow-y: auto;
            padding: 15px;
            background: #1B5E20;
        }

        .chat-messages::-webkit-scrollbar {
            width: 5px;
        }

        .chat-messages::-webkit-scrollbar-thumb {
            background: #4CAF50;
            border-radius: 5px;
        }

        .user-message, .admin-message {
            padding: 10px 15px;
            margin-bottom: 15px;
            border-radius: 8px;
            position: relative;
            max-width: 80%;
            word-wrap: break-word;
            animation: fadeIn 0.3s ease-out;
        }

        .user-message {
            background: #4CAF50;
            margin-left: auto;
            border-bottom-right-radius: 0;
        }

        .admin-message {
            background: #2E7D32;
            margin-right: auto;
            border-bottom-left-radius: 0;
            border-left: 3px solid #4CAF50;
        }

        .message-time {
            display: block;
            font-size: 0.7em;
            opacity: 0.7;
            margin-top: 5px;
            text-align: left;
            color: #E0E0E0;
        }

        .chat-input-container {
            display: flex;
            padding: 10px;
            background: #2E7D32;
            border-top: 1px solid #388E3C;
        }

        .chat-input {
            flex: 1;
            padding: 10px 15px;
            background: #1B5E20;
            border: 1px solid #388E3C;
            color: white;
            border-radius: 20px;
            outline: none;
            transition: all 0.3s ease;
        }

        .chat-input:focus {
            border-color: #4CAF50;
            box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
        }

        .send-button {
            background: #4CAF50;
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            margin-right: 10px;
            cursor: pointer;
            transition: background 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .send-button:hover {
            background: #388E3C;
        }

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

        /* نسخه موبایل */
        @media (max-width: 768px) {
            .chat-modal {
                width: calc(100% - 40px);
                right: 20px;
                bottom: 70px;
            }
            
            .chat-toggle {
                padding: 10px 15px;
                font-size: 0.9rem;
            }
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
            }
            
            .nav-links {
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .user-profile-container {
                position: static;
                margin-bottom: 1rem;
                display: flex;
                justify-content: flex-end;
            }
            
            .user-name {
                display: none;
            }
            
            .user-dropdown {
                left: auto;
                right: 0;
            }
            
            .boost-options, .service-tabs, .role-options {
                flex-direction: column;
                align-items: center;
            }
            
            .behaviour-options {
                grid-template-columns: 1fr;
            }
            
            .footer-section {
                min-width: 100%;
            }
            
            .contact-modal {
    animation: slideUp 0.4s ease;
    border-radius: 15px;
    border: 2px solid #FFD700;
    box-shadow: 0 0 20px rgba(255,215,0,0.3);

                width: calc(100% - 40px);
                left: 20px;
            }
            
            .mmr-input-container {
                flex-direction: column;
            }
            
            .mmr-input {
                width: 100%;
            }
        }
    
    .neon-link {
      color: #FFD700;
      text-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700, 0 0 20px #FFA500;
      transition: all 0.3s ease-in-out;
    }
    .neon-link:hover {
      color: white;
      text-shadow: 0 0 10px #fff, 0 0 20px #FFD700, 0 0 30px #FFA500;
      transform: scale(1.05);
    }
    
    .fancy-title {
      font-size: 1.5rem;
      color: #FFD700;
      text-shadow: 0 0 8px #FFD700, 0 0 16px #FFA500;
      padding-bottom: 5px;
      margin-bottom: 10px;
      text-align: center;
    }
    
    .styled-select {
      background: linear-gradient(to right, #1A2A3A, #0D1B2A);
      color: #FFD700;
      border: 2px solid #FFD700;
      padding: 10px 15px;
      border-radius: 12px;
      font-size: 1rem;
      box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
      transition: 0.3s ease;
      width: 100%;
    }
    .styled-select:focus {
      outline: none;
      border-color: #FFA500;
      box-shadow: 0 0 12px #FFA500;
      background: #0D1B2A;
    }
    
    .styled-select:hover {
      transform: scale(1.02);
      box-shadow: 0 0 12px #FFD700;
    }
    .label-box {
      background: rgba(255, 215, 0, 0.1);
      padding: 10px 15px;
      color: #FFD700;
      border-radius: 10px;
      font-weight: bold;
      margin-bottom: 10px;
      font-size: 1.2rem;
      text-align: center;
      box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
    }
    .mmr-progress-bar {
      width: 100%;
      height: 14px;
      background: #1A2A3A;
      border-radius: 7px;
      margin: 10px 0 20px;
      overflow: hidden;
      box-shadow: inset 0 0 5px #000;
    }
    .mmr-progress-bar-fill {
      height: 100%;
      background: linear-gradient(to right, #FFD700, #FFA500);
      width: 0%;
      transition: width 0.6s ease-in-out;
    }
    
/* آواتار پیام‌ها */
.contact-modal .message-bubble {
  background: #1A2A3A;
  color: white;
  padding: 10px 14px;
  border-radius: 15px;
  margin-bottom: 10px;
  max-width: 85%;
  line-height: 1.6;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

.contact-modal .message-bubble.user {
  background: #4CAF50;
  align-self: flex-end;
  border-bottom-right-radius: 0;
}

.contact-modal .message-bubble.admin {
  background: #2E7D32;
  align-self: flex-start;
  border-bottom-left-radius: 0;
}

.contact-modal .quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.contact-modal .quick-replies button {
  background: #FFD700;
  color: #0D1B2A;
  border: none;
  border-radius: 20px;
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.3s;
  font-weight: bold;
}

.contact-modal .quick-replies button:hover {
  background: #FFA500;
}

/* انیمیشن‌ها */
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bounceIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


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