        :root {
            --gold-primary: #D4AF60;  
            --gold-light: #F5DEB3;    
            --gold-dark: #B8860B;     
            --beige-primary: #E6D2AA; 
            --beige-light: #F8F4E6;   
            --beige-dark: #C8B393;   
            --diamond-bg1: linear-gradient(135deg, #D4AF37 0%, #E6D2AA 100%);
            --diamond-bg: linear-gradient(135deg, #FFFFFF 0%, #F3F5F8 100%);
            --text-dark: #3E2723;     
            --success: #4CAF50;        
            --danger: #E53935;       
	--toast-success: #4CAF50;
    --toast-error: #E53935;
    --toast-warning: #FFC107;
    --toast-info: #2196F3;
        }

        body {
            background: var(--diamond-bg);
            min-height: 100vh;
            font-family: 'BINK-font', Tahoma, Geneva, Verdana, sans-serif;
            padding: 0px;
            color: var(--text-dark);
            position: relative;
            overflow-x: hidden;
			font-size:13px
        }
        
        body::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 10%),
                radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 15%),
                radial-gradient(circle at 30% 70%, rgba(200, 179, 147, 0.15) 0%, transparent 12%);
            z-index: -1;
        }
        .container{
		width:100%;
		}
        .diamond-card {
            background: rgba(255, 255, 255, 0.92);
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(179, 136, 11, 0.2);
            overflow: hidden;
            margin-bottom: 25px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .diamond-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(179, 136, 11, 0.3);
        }
        
        .diamond-card-header {
           
            color: #000000;
            padding: 15px 20px;
            font-weight: bold;
            border-bottom: 3px solid rgba(255, 255, 255, 0.3);
            letter-spacing: 0.5px;
        }
        
        .diamond-card-body {
            padding: 25px;
            background-color: var(--beige-light);
        }
        
        .diamond-tabs .nav-link {
            color: var(--gold-dark);
            font-weight: bold;
            border: none;
            border-radius: 8px 8px 0 0;
            padding: 12px 20px;
            background: rgba(212, 175, 55, 0.1);
            margin: 0 3px;
        }
        
        .diamond-tabs .nav-link.active {
            background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary));
            color: white;
            border-bottom: 3px solid rgba(255, 255, 255, 0.5);
        }
        
        .market-indicator {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 15px;
            background: rgba(255, 255, 255, 0.85);
            border-radius: 15px;
            box-shadow: 0 4px 12px rgba(179, 136, 11, 0.15);
            transition: all 0.3s ease;
            border: 1px solid rgba(212, 175, 55, 0.15);
        }
        
        .market-indicator:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(179, 136, 11, 0.25);
        }
        
        .positive {
            color: var(--success);
            font-weight: bold;
        }
        
        .negative {
            color: var(--danger);
            font-weight: bold;
        }
        
        .news-item {
            padding: 15px;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            transition: all 0.3s ease;
            background-color: white;
            border-radius: 8px;
            margin-bottom: 8px;
        }
        
        .news-item:hover {
            background: rgba(245, 222, 179, 0.3);
            transform: translateX(-3px);
            box-shadow: 0 4px 8px rgba(179, 136, 11, 0.1);
        }
        
        .filter-tab {
            background: var(--beige-light);
            border-radius: 10px;
            padding: 5px;
            margin-bottom: 20px;
            border: 1px solid rgba(212, 175, 55, 0.15);
        }
        
        .filter-tab .nav-link {
            border-radius: 8px;
            font-weight: bold;
            text-align: center;
            color: var(--gold-dark);
            background: rgba(212, 175, 55, 0.1);
        }
        
        .filter-tab .nav-link.active {
            background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary));
            color: white;
            box-shadow: 0 4px 8px rgba(179, 136, 11, 0.2);
        }
        
        .stock-card {
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            background: white;
        }
        
        .stock-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--gold-primary), var(--gold-dark));
        }
        
        .stock-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(179, 136, 11, 0.2);
        }
        
        .volume-badge {
            background: linear-gradient(90deg, #8D6E63, #6D4C41);
            color: white;
        }
        
        .money-in-badge {
            background: linear-gradient(90deg, var(--success), #2E7D32);
            color: white;
        }
        
        .group-buy-badge {
            background: linear-gradient(90deg, #1976D2, #0D47A1);
            color: white;
        }
        
        .diamond-btn {
            background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary));
            border: none;
            color: white;
            font-weight: bold;
            padding: 12px 24px;
            border-radius: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(179, 136, 11, 0.3);
				text-decoration: none;
        }
        
        .diamond-btn:hover {
            background: linear-gradient(90deg, #9C6E0C, #C19C2E);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(179, 136, 11, 0.4);
			text-decoration: none;
        }
        
        .diamond-logo {
            background: linear-gradient(135deg,#17A2B8, #0E606B);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
			margin-left:10px;
            border: 0px solid rgba(255, 255, 255, 0.3);
        }
        
        .install-prompt {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid var(--gold-primary);
            border-radius: 20px;
            padding: 15px;
            box-shadow: 0 4px 20px rgba(179, 136, 11, 0.3);
            z-index: 9999;
            display: none;
        }
        
        .install-prompt.show {
            display: block;
            animation: slideUp 0.5s ease;
        }
        
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
            /* استايل فوتر جديد */
        .diamond-footer {
            background: linear-gradient(to right, #2c3e50, #4a6580);
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
            border-top: 3px solid var(--gold-primary);
            position: relative;
            overflow: hidden;
        }
        
        .diamond-footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark), var(--gold-primary));
            z-index: 1;
        }
        
        .footer-wave {
            position: absolute;
            top: -10px;
            left: 0;
            width: 100%;
            height: 10px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%234a6580'%3E%3C/path%3E%3C/svg%3E");
            background-size: 1200px 100px;
        }
        
        .footer-section {
            margin-bottom: 30px;
        }
        
        .footer-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 20px;
            font-weight: bold;
            font-size: 1.2rem;
            color: var(--gold-light);
        }
        
        .footer-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50px;
            height: 2px;
            background: var(--gold-primary);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #d1d1d1;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            padding: 5px 0;
            position: relative;
            padding-right: 15px;
        }
        
        .footer-links a::before {
            content: "•";
            position: absolute;
            right: 0;
            color: var(--gold-primary);
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            transform: translateX(-5px);
        }
        
        .footer-links a:hover::before {
            color: white;
            transform: scale(1.5);
        }
        
        .footer-contact {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #d1d1d1;
        }
        
        .footer-contact i {
            width: 30px;
            height: 30px;
            background: var(--gold-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 10px;
            color: #2c3e50;
        }
        
        .newsletter-form {
            position: relative;
            margin-top: 20px;
        }
        
        .newsletter-input {
            width: 100%;
            padding: 12px 15px;
            border: none;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }
        
        .newsletter-input::placeholder {
            color: #b1b1b1;
        }
        
        .newsletter-btn {
            position: absolute;
            left: 5px;
            top: 5px;
            background: var(--gold-primary);
            border: none;
            color: #2c3e50;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-btn:hover {
            background: var(--gold-light);
            transform: rotate(10deg);
        }
        
        .social-links {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--gold-primary);
            color: #2c3e50;
            transform: translateY(-5px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #b1b1b1;
            font-size: 0.9rem;
        }
        
        .certificate-badge {
            display: inline-block;
            background: var(--gold-primary);
            color: #2c3e50;
            padding: 3px 10px;
            border-radius: 3px;
            font-size: 0.8rem;
            margin: 0 5px;
            font-weight: bold;
        }
        
        .payment-methods {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-top: 15px;
        }
        
        .payment-method {
            width: 50px;
            height: 30px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }
        
        /* استايل‌هاي موجود قبلي */
        .diamond-card {
            background: rgba(255, 255, 255, 0.92);
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(179, 136, 11, 0.2);
            overflow: hidden;
            margin-bottom: 25px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .diamond-card-header {
            background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary));
            color: white;
            padding: 15px 20px;
            font-weight: bold;
            border-bottom: 3px solid rgba(255, 255, 255, 0.3);
        }
        
        .diamond-btn {
            background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary));
            border: none;
            color: white;
            font-weight: bold;
            padding: 12px 24px;
            border-radius: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(179, 136, 11, 0.3);
        }
        
        /* بخش پاسخگويي */
        @media (max-width: 768px) {
            .footer-section {
                text-align: center;
            }
            
            .footer-title::after {
                right: 50%;
                transform: translateX(50%);
            }
            
            .social-links {
                justify-content: center;
            }
            
            .footer-contact {
                justify-content: center;
            }
        }
        
        .form-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gold-dark);
        }
        
        .form-input {
            padding-left: 40px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 8px;
        }
        
        .form-input:focus {
            border-color: var(--gold-primary);
            box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
        }
        
        .news-badge {
            background: rgba(212, 175, 55, 0.2);
            color: var(--gold-dark);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        
        h1, h2, h3, h4, h5, h6 {
            color: var(--gold-dark);
            font-weight: 700;
        }
		h6 {
	font-size: 13px;
}
        
        .list-group-item {
            border: 1px solid rgba(212, 175, 55, 0.15);
            margin-bottom: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .list-group-item:hover {
            background-color: rgba(245, 222, 179, 0.3);
            transform: translateX(-3px);
        }
        
        .badge {
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .text-primary {
            color: var(--gold-dark) !important;
        }
        
        .btn-outline-primary {
            border-color: var(--gold-primary);
            color: var(--gold-dark);
        }
        
        .btn-outline-primary:hover {
            background-color: var(--gold-primary);
            color: white;
            border-color: var(--gold-primary);
        }
        
        .gold-glow {
            animation: goldGlow 2s infinite alternate;
        }
        
        @keyframes goldGlow {
            from { box-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }
            to { box-shadow: 0 0 20px rgba(212, 175, 55, 0.8); }
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .diamond-card {
                margin-bottom: 15px;
            }
            
            .diamond-card-body {
                padding: 20px;
            }
            
            .diamond-logo {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            h1 {
                font-size: 1.5rem;
            }
        }

        
        /* استايل‌هاي دکمه‌هاي نمايش توست */
        .btn-container {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        
        .btn {
            padding: 10px 20px;
            border-radius: 8px;
            color: white;
            border: none;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .btn-success {
            background-color: #4CAF50;
        }
        
        .btn-error {
            background-color: #E53935;
        }
        
        .btn-warning {
            background-color: #FFC107;
        }
        
        .btn-info {
            background-color: #2196F3;
        }
        

        	        /* استايل بخش ويديو و تحليل */
        .media-section {
            margin-top: 30px;
        }
        
        .horizontal-scroll {
            display: flex;
            overflow-x: auto;
            padding: 15px 5px;
            scrollbar-width: thin;
            scrollbar-color: var(--gold-primary) var(--beige-light);
            gap: 20px;
        }
        
        .horizontal-scroll::-webkit-scrollbar {
            height: 8px;
        }
        
        .horizontal-scroll::-webkit-scrollbar-track {
            background: var(--beige-light);
            border-radius: 10px;
        }
        
        .horizontal-scroll::-webkit-scrollbar-thumb {
            background: var(--gold-primary);
            border-radius: 10px;
        }
        
        .media-card {
            flex: 0 0 auto;
            width: 280px;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        
        .media-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(179, 136, 11, 0.25);
        }
        
        .media-thumbnail {
            position: relative;
            height: 160px;
            overflow: hidden;
        }
        
        .media-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .media-card:hover .media-thumbnail img {
            transform: scale(1.05);
        }
        
        .media-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary));
            color: white;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: bold;
        }
        
        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.7);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .media-thumbnail:hover .play-icon {
            opacity: 1;
        }
        
        .media-content {
            padding: 15px;
        }
        
        .media-title {
            font-size: 0.95rem;
            font-weight: bold;
            margin-bottom: 8px;
            color: var(--text-dark);
            line-height: 1.4;
            height: 40px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        .media-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 10px;
            font-size: 0.8rem;
            color: #666;
        }
        
        .media-duration {
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 2px 8px;
            border-radius: 4px;
            position: absolute;
            bottom: 10px;
            left: 10px;
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .section-title {
            position: relative;
            padding-right: 15px;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 25px;
            background: linear-gradient(to bottom, var(--gold-primary), var(--gold-dark));
            border-radius: 10px;
        }
                /* استايل اسلايدشو */
        .features-carousel {
            margin: 40px 0;

        }
        
        .carousel-item {
            padding: 30px;
            text-align: center;
            transition: transform 0.6s ease-in-out;
        }
        
        .carousel-icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--gold-primary);
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
        }
        
        .carousel-title {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--gold-dark);
        }
        
        .carousel-description {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-dark);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .carousel-control-prev, .carousel-control-next {
            width: 50px;
            height: 50px;
            background: var(--gold-primary);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
        }
        
        .carousel-control-prev {
            right: 15px;
            left: auto;
        }
        
        .carousel-control-next {
            left: 15px;
            right: auto;
        }
        
        .carousel-control-prev:hover, .carousel-control-next:hover {
            opacity: 1;
            background: var(--gold-dark);
        }
        
        .carousel-indicators {
            bottom: -50px;
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--gold-light);
            border: 2px solid transparent;
        }
        
        .carousel-indicators .active {
            background-color: var(--gold-primary);
            border-color: var(--gold-dark);
        }
        
        /* بخش ويژگي‌ها */
        .features-section {
            padding: 40px 0;
        }
        
        .feature-box {
            text-align: center;
            padding: 25px 15px;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.8);
            box-shadow: 0 5px 15px rgba(179, 136, 11, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(179, 136, 11, 0.2);
            background: white;
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--gold-primary);
            margin-bottom: 20px;
        }
        
        .feature-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--gold-dark);
        }
        
        .feature-description {
            color: #555;
            line-height: 1.6;
        }
        
        /* بخش دعوت به عمل */
        .cta-section {
            background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
            padding: 60px 0;
            border-radius: 20px;
            color: white;
            text-align: center;
            margin: 50px 0;
            box-shadow: 0 10px 30px rgba(179, 136, 11, 0.3);
        }
        
        .cta-title {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        
        .cta-description {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-btn {
            background: white;
            color: var(--gold-dark);
            font-weight: bold;
            padding: 15px 40px;
            border-radius: 50px;
            border: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .cta-btn:hover {
            background: var(--beige-light);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        
        @media (max-width: 768px) {
            .carousel-title {
                font-size: 1.5rem;
            }
            
            .carousel-description {
                font-size: 1rem;
            }
            
            .carousel-icon {
                font-size: 2.5rem;
            }
            
            .cta-title {
                font-size: 1.8rem;
            }
            
            .cta-description {
                font-size: 1rem;
            }
        }
        @media (max-width: 768px) {
            .media-card {
                width: 240px;
            }
            
            .media-thumbnail {
                height: 140px;
            }
            
            .horizontal-scroll {
                gap: 15px;
            }
        }
        /* Responsive */
        @media (max-width: 768px) {
            .btn-container {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
           
            
            h1 {
                font-size: 2rem;
            }
        }
		
      /* استايل هدر پيشرفته */
        .advanced-header {
 
            padding: 20px;
            margin-bottom: 25px;
            border: 0px solid rgba(212, 175, 55, 0.2);
            position: relative;
        }
        
        /* استايل جستجوي نماد */
        .symbol-search {
            position: relative;
            margin: 0 auto;
            max-width: 600px;
			width:100%;
        }
        
        .search-input {
            width: 100%;
            padding: 10px 50px 10px 20px;
            border: 1px solid var(--gold-primary);
            border-radius: 5px;
            font-size: 1rem;
            background: white;
            box-shadow: 0 2px 1px rgba(179, 136, 11, 0.15);
            transition: all 0.3s ease;
        }
        
        .search-input:focus {
            outline: none;
            box-shadow: 0 5px 20px rgba(179, 136, 11, 0.3);
            border-color: var(--gold-dark);
        }
        
        .search-btn {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary));
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .search-btn:hover {
            transform: translateY(-50%) scale(1.05);
            box-shadow: 0 0 10px rgba(179, 136, 11, 0.5);
        }
            #autocomplete_results {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            border: 1px solid var(--border-color);
            border-top: none;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            max-height: 250px;
            overflow-y: auto;
            display: none;
            z-index: 1000;
        }
        
        #autocomplete_results ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        #autocomplete_results li {
            padding: 0px 10px;
            border-bottom: 1px solid var(--border-color);
            cursor: pointer;
            transition: background-color 0.2s;
        }
        
        #autocomplete_results li:hover {
            background-color: var(--hover-color);
        }
        
        #autocomplete_results li:last-child {
            border-bottom: none;
        }
.link_search li {line-height:34px;display: inline-block; color:#000000;width:100%;text-align:right;direction:rtl;float:right}
.link_search li a{color: var(--gold-dark);text-decoration: none;}
.link_search li a:hover{color:#000000; text-decoration: none; transition: background-color 0.2s;}
.link_search li span{color:#17A2B8;}
.link_search li .link1{color:firebrick;}
        
        /* استایل برای وضعیت‌های مختلف */
        .search-info {
            text-align: center;
            padding: 15px;
            color: var(--secondary-color);
            font-size: 14px;
            background-color: var(--background-color);
            border-radius: 6px;
            margin-bottom: 20px;
        }
        
        /* انیمیشن برای ظاهر شدن نتایج */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        ul.link_search li {
            animation: fadeIn 0.3s ease forwards;
        }
        
        ul.link_search li:nth-child(1) { animation-delay: 0.05s; }
        ul.link_search li:nth-child(2) { animation-delay: 0.1s; }
        ul.link_search li:nth-child(3) { animation-delay: 0.15s; }
        ul.link_search li:nth-child(4) { animation-delay: 0.2s; }
        ul.link_search li:nth-child(5) { animation-delay: 0.25s; }
        
        /* طراحی واکنش‌گرا */
        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }
            
            ul.link_search li {
                padding: 14px 16px;
            }
            
            ul.link_search li::after {
                left: 16px;
            }
            
            h1 {
                font-size: 24px;
            }
        }
        
        @media (max-width: 480px) {
            ul.link_search li {
                padding: 12px;
            }
            
            ul.link_search li a.link {
                font-size: 15px;
            }
            
            ul.link_search li span {
                font-size: 13px;
            }
            
            ul.link_search li::after {
                left: 12px;
                font-size: 14px;
            }
        }
        .loading {
            padding: 15px;
            text-align: center;
            color: #666;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .loading i {
            margin-left: 8px;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .no-results {
            padding: 15px;
            text-align: center;
            color: #666;
        }
        
        .error {
            padding: 15px;
            text-align: center;
            color: #f44336;
            background-color: #ffebee;
            border-radius: 4px;
            margin-top: 10px;
            display: none;
        }
        
        /* استايل نوار متن متحرک */
        .ticker-container {
            background: linear-gradient(90deg,#FFFFFF,#EDE3C0);
            border-radius: 8px;
            padding: 5px 5px;
            overflow: hidden;
            position: relative;
            color: #000000;
            font-weight: bold;
            margin-top: 30px;
        }
        
        .ticker-title {
            background: rgba(0, 0, 0, 0.2);
            padding: 3px 10px;
            border-radius: 4px;
            margin-left: 15px;
            font-size: 0.9rem;
        }
        
        .ticker-content {
            display: flex;
            animation: ticker-scroll 30s linear infinite;
            white-space: nowrap;
        }
        
        .ticker-item {
            margin-left: 30px;
            display: flex;
            align-items: center;
        }
        
        .symbol {
            font-weight: bold;
            margin-left: 5px;
        }
        
        .price {
            margin: 0 10px;
        }
        
        .change {
            display: flex;
            align-items: center;
        }
        
        .change.positive {
            color: #1F8F03;
        }
        
        .change.negative {
            color: #D50000;
        }
        

        
        /* استايل منوي کاربر در سمت چپ */
        .user-menu-container {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 1000;
        }
        
        .user-menu-btn {
            background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary));
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(179, 136, 11, 0.3);
            font-size: 1.2rem;
        }
        
        .user-menu-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 15px rgba(179, 136, 11, 0.4);
        }
        
 .user-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
            width: 200px;
            z-index: 1000;
            display: none;
        }
        
        .user-dropdown.show {
            display: block;
        }
        
        .user-dropdown a {
            display: block;
            padding: 8px 15px;
            color: var(--text-dark);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .user-dropdown a:hover {
            background: var(--beige-light);
            color: var(--gold-dark);
        }
        
        .user-dropdown a i {
            margin-left: 10px;
            width: 20px;
            text-align: center;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .user-info {
            padding: 15px;
            border-bottom: 1px solid #eee;
            text-align: center;
            background: linear-gradient(90deg, var(--gold-light), var(--beige-light));
            border-radius: 12px 12px 0 0;
        }
        
        .user-name {
            font-weight: bold;
            color: var(--gold-dark);
            margin-bottom: 5px;
        }
        
        .user-role {
            font-size: 0.8rem;
            color: #666;
        }
        
        .user-dropdown a {
            display: flex;
            align-items: center;
            padding: 10px 15px;
            color: var(--text-dark);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .user-dropdown a:hover {
            background: var(--beige-light);
            color: var(--gold-dark);
        }
        
        .user-dropdown a i {
            margin-left: 10px;
            width: 20px;
            text-align: center;
        }
        
        /* استايل پيشنهادات جستجو */
        .search-suggestions {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            border-radius: 0 0 15px 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            display: none;
            max-height: 300px;
            overflow-y: auto;
        }
        
        .search-suggestions.show {
            display: block;
        }
        
        .suggestion-item {
            padding: 10px 15px;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .suggestion-item:hover {
            background: var(--beige-light);
        }
        
        .suggestion-symbol {
            font-weight: bold;
            color: var(--gold-dark);
        }
        
        .suggestion-name {
            color: #666;
            font-size: 0.9rem;
        }
        
        .suggestion-price {
            font-weight: bold;
        }
        
        .suggestion-change.positive {
            color: var(--success);
        }
        
        .suggestion-change.negative {
            color: var(--danger);
        }
        
        /* استايل جديد براي چيدمان */
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
		.logo-container a {
            text-decoration: none;
        }
        
        .logo-container a:hover {
            text-decoration: none;
        }
        .search-container {
            flex-grow: 1;
            display: flex;
            justify-content: center;
            margin: 0 20px;
		
        }
        
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 15px;
            }
            
            .search-container {
                order: 3;
                width: 100%;
                margin: 15px 0;
            }
            
            .user-menu-container {
                position: static;
                align-self: flex-start;
            }
            
            .logo-container {
                align-self: flex-start;
            }
            
            .user-menu-btn {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
            
            .user-dropdown {
                width: 220px;
                right: 0px;
            }
            
            .ticker-item {
                font-size: 0.9rem;
            }
            
            .search-input {
                font-size: 1rem;
                padding: 12px 45px 12px 15px;
            }
        }
		
		.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 350px;
    width: 100%;
}

.toast {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    padding: 20px;
    background: white;
    border-left: 5px solid;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s ease;
    font-family: 'BINK-font', Tahoma, Geneva, Verdana, sans-serif;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.success {
    border-left-color: var(--toast-success);
}

.toast.error {
    border-left-color: var(--toast-error);
}

.toast.warning {
    border-left-color: var(--toast-warning);
}

.toast.info {
    border-left-color: var(--toast-info);
}

.toast-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    font-size: 22px;
    color: white;
}

.toast.success .toast-icon {
    background: var(--toast-success);
}

.toast.error .toast-icon {
    background: var(--toast-error);
}

.toast.warning .toast-icon {
    background: var(--toast-warning);
}

.toast.info .toast-icon {
    background: var(--toast-info);
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
}

.toast-message {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.toast-close {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 22px;
    color: #888;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.toast-close:hover {
    color: #333;
    transform: rotate(90deg);
}

/* انیمیشن‌های اضافی */
@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toastOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.toast.show {
    animation: toastIn 0.4s ease forwards;
}

.toast.hide {
    animation: toastOut 0.4s ease forwards;
}

	.alert-box {
	color:#555;
	border-radius:10px;
	padding:10px 36px;
	margin:10px;
    cursor:pointer;cursor:hand;

}
.alert-box span {
	font-weight:bold;
	text-transform:uppercase;
}
.error_box {
	background:#ffecec url('../../img/error.png') no-repeat 10px 50%;
	border:1px solid #f5aca6;
}
.success_box {
	background:#e9ffd9 url('../../img/success.png') no-repeat 10px 50%;
	border:1px solid #a6ca8a;
}
.warning_box {
	background:#fff8c4 url('../../img/warning.png') no-repeat 10px 50%;
	border:1px solid #f2c779;
}
.notice_box {
	background:#e3f7fc url('../../img/notice.png') no-repeat 10px 50%;
	border:1px solid #8ed9f6;
}