/* Hashtag Generator Tool Specific Styles */
        .hashtag-tool-section {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .hashtag-tool-section * {
            box-sizing: border-box;
        }
        
        .hashtag-hero-section {
            background-color: #057e70;
            padding: 60px 0;
            color: #ffffff;
        }
        
        .hashtag-hero-section h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .hashtag-hero-section p {
            font-size: 1.1rem;
            opacity: 0.95;
        }
        
        .hashtag-rating-display {
            display: inline-flex;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.15);
            padding: 8px 16px;
            border-radius: 25px;
            margin-top: 15px;
        }
        
        .hashtag-rating-display i {
            color: #ffbe47;
            margin-right: 3px;
        }
        
        .hashtag-rating-display span {
            margin-left: 8px;
            font-size: 0.9rem;
        }
        
        .hashtag-tool-card {
            background-color: #ffffff;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            padding: 40px;
            margin-top: -50px;
            position: relative;
            z-index: 10;
        }
        
        .hashtag-form-label {
            font-weight: 600;
            color: #333333;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }
        
        .hashtag-form-control {
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 14px 18px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .hashtag-form-control:focus {
            border-color: #057e70;
            box-shadow: 0 0 0 3px rgba(5, 126, 112, 0.15);
            outline: none;
        }
        
        .hashtag-form-select {
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 14px 18px;
            font-size: 1rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .hashtag-form-select:focus {
            border-color: #057e70;
            box-shadow: 0 0 0 3px rgba(5, 126, 112, 0.15);
            outline: none;
        }
        
        .hashtag-btn-generate {
            background-color: #057e70;
            color: #ffffff;
            border: none;
            border-radius: 10px;
            padding: 16px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .hashtag-btn-generate:hover {
            background-color: #046b5f;
            transform: translateY(-2px);
            color: #ffffff;
        }
        
        .hashtag-btn-generate:disabled {
            background-color: #cccccc;
            cursor: not-allowed;
            transform: none;
        }
        
        .hashtag-result-area {
            background-color: #f8f9fa;
            border-radius: 12px;
            padding: 25px;
            min-height: 150px;
            margin-top: 25px;
            display: none;
        }
        
        .hashtag-result-area.active {
            display: block;
        }
        
        .hashtag-tag {
            display: inline-block;
            background-color: #eae0fa;
            color: #333333;
            padding: 8px 16px;
            border-radius: 20px;
            margin: 5px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .hashtag-tag:hover {
            background-color: #057e70;
            color: #ffffff;
        }
        
        .hashtag-tag.selected {
            background-color: #057e70;
            color: #ffffff;
            border-color: #ffbe47;
        }
        
        .hashtag-action-buttons {
            margin-top: 20px;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        
        .hashtag-btn-copy {
            background-color: #ffbe47;
            color: #333333;
            border: none;
            border-radius: 8px;
            padding: 12px 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .hashtag-btn-copy:hover {
            background-color: #e6a93f;
            color: #333333;
        }
        
        .hashtag-btn-clear {
            background-color: #ffffff;
            color: #057e70;
            border: 2px solid #057e70;
            border-radius: 8px;
            padding: 12px 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .hashtag-btn-clear:hover {
            background-color: #057e70;
            color: #ffffff;
        }
        
        .hashtag-btn-download {
            background-color: #eae0fa;
            color: #333333;
            border: none;
            border-radius: 8px;
            padding: 12px 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .hashtag-btn-download:hover {
            background-color: #d4c4e8;
            color: #333333;
        }
        
        .hashtag-count-badge {
            background-color: #057e70;
            color: #ffffff;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .hashtag-ad-space {
            background-color: #f5f5f5;
            border: 2px dashed #dddddd;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999999;
        }
        
        .hashtag-ad-space-horizontal {
            background-color: #f5f5f5;
            border: 2px dashed #dddddd;
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            min-height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999999;
            margin: 30px 0;
        }
        
        .hashtag-feature-section {
            padding: 60px 0;
            background-color: #ffffff;
        }
        
        .hashtag-feature-card {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }
        
        .hashtag-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .hashtag-feature-icon {
            width: 70px;
            height: 70px;
            background-color: #eae0fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .hashtag-feature-icon i {
            font-size: 28px;
            color: #057e70;
        }
        
        .hashtag-feature-card h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #333333;
            margin-bottom: 12px;
        }
        
        .hashtag-feature-card p {
            color: #666666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 0;
        }
        
        .hashtag-howto-section {
            padding: 60px 0;
            background-color: #f8f9fa;
        }
        
        .hashtag-section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #333333;
            margin-bottom: 15px;
        }
        
        .hashtag-section-subtitle {
            color: #666666;
            font-size: 1.1rem;
            margin-bottom: 40px;
        }
        
        .hashtag-step-card {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            position: relative;
            height: 100%;
        }
        
        .hashtag-step-number {
            width: 50px;
            height: 50px;
            background-color: #057e70;
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }
        
        .hashtag-step-card h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333333;
            margin-bottom: 10px;
        }
        
        .hashtag-step-card p {
            color: #666666;
            font-size: 0.9rem;
            margin-bottom: 0;
        }
        
        .hashtag-platform-section {
            padding: 60px 0;
            background-color: #ffffff;
        }
        
        .hashtag-platform-card {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }
        
        .hashtag-platform-card:hover {
            border-color: #057e70;
            transform: translateY(-3px);
        }
        
        .hashtag-platform-card i {
            font-size: 40px;
            margin-bottom: 15px;
        }
        
        .hashtag-platform-card h5 {
            font-size: 1rem;
            font-weight: 600;
            color: #333333;
            margin-bottom: 5px;
        }
        
        .hashtag-platform-card span {
            font-size: 0.85rem;
            color: #666666;
        }
        
        .hashtag-faq-section {
            padding: 60px 0;
            background-color: #f8f9fa;
        }
        
        .hashtag-accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .hashtag-accordion-button {
            background-color: #ffffff;
            color: #333333;
            font-weight: 600;
            padding: 20px 25px;
            border: none;
        }
        
        .hashtag-accordion-button:not(.collapsed) {
            background-color: #057e70;
            color: #ffffff;
        }
        
        .hashtag-accordion-button:focus {
            box-shadow: none;
        }
        
        .hashtag-accordion-body {
            background-color: #ffffff;
            padding: 20px 25px;
            color: #555555;
            line-height: 1.7;
        }
        
        .hashtag-content-section {
            padding: 60px 0;
            background-color: #ffffff;
        }
        
        .hashtag-content-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #333333;
            margin-bottom: 20px;
        }
        
        .hashtag-content-section h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #057e70;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        
        .hashtag-content-section p {
            color: #555555;
            line-height: 1.8;
            font-size: 1rem;
        }
        
        .hashtag-content-section ul {
            color: #555555;
            line-height: 2;
        }
        
        .hashtag-content-section ul li {
            margin-bottom: 8px;
        }
        
        .hashtag-cta-section {
            background-color: #057e70;
            padding: 60px 0;
            color: #ffffff;
        }
        
        .hashtag-cta-section h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .hashtag-cta-section p {
            font-size: 1.1rem;
            opacity: 0.95;
            margin-bottom: 25px;
        }
        
        .hashtag-btn-cta {
            background-color: #ffbe47;
            color: #333333;
            border: none;
            border-radius: 10px;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .hashtag-btn-cta:hover {
            background-color: #e6a93f;
            color: #333333;
            transform: translateY(-2px);
        }
        
        /* Toast Notification Styles */
        .hashtag-toast-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
        }
        
        .hashtag-toast {
            background-color: #057e70;
            color: #ffffff;
            padding: 15px 25px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 10px;
            opacity: 0;
            transform: translateX(100%);
            transition: all 0.3s ease;
        }
        
        .hashtag-toast.show {
            opacity: 1;
            transform: translateX(0);
        }
        
        .hashtag-toast.success {
            background-color: #057e70;
        }
        
        .hashtag-toast.error {
            background-color: #dc3545;
        }
        
        .hashtag-toast.warning {
            background-color: #ffbe47;
            color: #333333;
        }
        
        /* Modal Styles */
        .hashtag-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .hashtag-modal-overlay.show {
            opacity: 1;
            visibility: visible;
        }
        
        .hashtag-modal-content {
            background-color: #ffffff;
            border-radius: 16px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            transform: scale(0.8);
            transition: all 0.3s ease;
        }
        
        .hashtag-modal-overlay.show .hashtag-modal-content {
            transform: scale(1);
        }
        
        .hashtag-modal-icon {
            width: 80px;
            height: 80px;
            background-color: #eae0fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .hashtag-modal-icon i {
            font-size: 36px;
            color: #057e70;
        }
        
        .hashtag-modal-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #333333;
            margin-bottom: 10px;
        }
        
        .hashtag-modal-text {
            color: #666666;
            margin-bottom: 25px;
        }
        
        .hashtag-modal-btn {
            background-color: #057e70;
            color: #ffffff;
            border: none;
            border-radius: 8px;
            padding: 12px 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .hashtag-modal-btn:hover {
            background-color: #046b5f;
        }
        
        /* Loading Spinner */
        .hashtag-spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: #ffffff;
            animation: hashtagSpin 0.8s linear infinite;
            margin-right: 10px;
        }
        
        @keyframes hashtagSpin {
            to {
                transform: rotate(360deg);
            }
        }
        
        /* Character Counter */
        .hashtag-char-counter {
            text-align: right;
            font-size: 0.85rem;
            color: #888888;
            margin-top: 5px;
        }
        
        .hashtag-char-counter.warning {
            color: #ffbe47;
        }
        
        .hashtag-char-counter.danger {
            color: #dc3545;
        }
        
        /* History Section */
        .hashtag-history-section {
            margin-top: 30px;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 12px;
            display: none;
        }
        
        .hashtag-history-section.active {
            display: block;
        }
        
        .hashtag-history-item {
            background-color: #ffffff;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .hashtag-history-keyword {
            font-weight: 600;
            color: #057e70;
        }
        
        .hashtag-history-time {
            font-size: 0.8rem;
            color: #999999;
        }
        
        /* Responsive Styles */
        @media (max-width: 991px) {
            .hashtag-ad-space {
                min-height: 250px;
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .hashtag-hero-section {
                padding: 40px 0;
            }
            
            .hashtag-hero-section h1 {
                font-size: 1.8rem;
            }
            
            .hashtag-tool-card {
                padding: 25px;
                margin-top: -30px;
            }
            
            .hashtag-action-buttons {
                flex-direction: column;
            }
            
            .hashtag-action-buttons button {
                width: 100%;
            }
            
            .hashtag-section-title {
                font-size: 1.5rem;
            }
        }
        
        /* Trending Tags Preview */
        .hashtag-trending-section {
            padding: 40px 0;
            background-color: #eae0fa;
        }
        
        .hashtag-trending-tag {
            display: inline-block;
            background-color: #ffffff;
            color: #057e70;
            padding: 8px 18px;
            border-radius: 25px;
            margin: 5px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .hashtag-trending-tag:hover {
            background-color: #057e70;
            color: #ffffff;
        }
        
        /* Stats Section */
        .hashtag-stats-section {
            padding: 50px 0;
            background-color: #ffffff;
        }
        
        .hashtag-stat-item {
            text-align: center;
            padding: 20px;
        }
        
        .hashtag-stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #057e70;
        }
        
        .hashtag-stat-label {
            color: #666666;
            font-size: 1rem;
        }
        
        /* Related Tools */
        .hashtag-related-section {
            padding: 60px 0;
            background-color: #f8f9fa;
        }
        
        .hashtag-related-card {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
            text-decoration: none;
            display: block;
            height: 100%;
        }
        
        .hashtag-related-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .hashtag-related-card i {
            font-size: 36px;
            color: #057e70;
            margin-bottom: 15px;
        }
        
        .hashtag-related-card h5 {
            color: #333333;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .hashtag-related-card p {
            color: #666666;
            font-size: 0.9rem;
            margin-bottom: 0;
        }