
        :root {
            --primary-color: #4f7cff;
            --secondary-color: #5ac8fa;
            --warning-color: #ffb347;
            --success-color: #28c76f;
            --danger-color: #ea5455;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
            --bg-color: #f5f7fa;
        }
        
        body {
            background-color: var(--bg-color);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-color);
            line-height: 1.6;
        }
        
        section {
            margin-bottom: 2rem;
        }
        
        /* Header Section */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 2rem 0;
            margin-bottom: 2rem;
            border-radius: 0 0 20px 20px;
        }
        
        /* Quote Section */
        .quote-section .quote-container {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            padding: 2.5rem;
            position: relative;
        }
        
        .quote-text {
            font-size: 1.8rem;
            font-weight: 300;
            line-height: 1.4;
            margin-bottom: 1.5rem;
            color: var(--dark-color);
            font-style: italic;
        }
        
        .quote-text::before {
            content: "";
            font-size: 4rem;
            position: absolute;
            left: 1.5rem;
            top: 1rem;
            color: var(--secondary-color);
            opacity: 0.3;
        }
        
        .quote-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .quote-author {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0;
        }
        
        .action-buttons {
            display: flex;
            gap: 10px;
        }
        
        .action-button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: white;
            border: 1px solid rgba(0, 0, 0, 0.1);
            font-size: 1.2rem;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .action-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .like-button {
            color: var(--danger-color);
        }
        
        .like-button.active {
            background: var(--danger-color);
            color: white;
        }
        
        .favorite-button {
            color: var(--warning-color);
        }
        
        .favorite-button.active {
            background: var(--warning-color);
            color: white;
        }
        
        /* Tooltip styles */
        .tooltip-text {
            visibility: hidden;
            width: 120px;
            background-color: rgba(0, 0, 0, 0.8);
            color: #fff;
            text-align: center;
            border-radius: 6px;
            padding: 5px;
            position: absolute;
            z-index: 1;
            bottom: 125%;
            left: 50%;
            margin-left: -60px;
            opacity: 0;
            transition: opacity 0.3s;
            font-size: 0.75rem;
            pointer-events: none;
        }
        
        .tooltip-text::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
        }
        
        .action-button:hover .tooltip-text {
            visibility: visible;
            opacity: 1;
        }
        
        /* Share Section */
        .share-section .share-container {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 1.5rem;
            display: flex;
            justify-content: center;
        }
        
        .share-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .share-button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        
        .share-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        
        .share-button .tooltip-text {
            width: 80px;
            margin-left: -40px;
        }
        
        .share-twitter {
            background: linear-gradient(145deg, var(--primary-color), #3b5998);
        }
        
        .share-facebook {
            background: linear-gradient(145deg, #4267B2, #365899);
        }
        
        .share-pinterest {
            background: linear-gradient(145deg, var(--danger-color), #c5001e);
        }
        
        .share-whatsapp {
            background: linear-gradient(145deg, var(--success-color), #20b956);
        }
        
        .share-email {
            background: linear-gradient(145deg, var(--secondary-color), #0d8ecf);
        }
        
        /* Tags Section */
        .tags-section .tag {
            display: inline-block;
            background: var(--light-color);
            color: var(--primary-color);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
            border: 1px solid var(--secondary-color);
            transition: all 0.3s ease;
        }
        
        .tags-section .tag:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Tabs Section */
        .tabs-section .tabs-container {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 1.5rem;
        }
        
        .tab-nav {
            display: flex;
            margin-bottom: 1.5rem;
            border-radius: 10px;
            overflow: hidden;
            background-color: #f8f9fa;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .tab-link {
            flex: 1;
            padding: 1rem;
            font-weight: 600;
            color: var(--dark-color);
            text-decoration: none;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            position: relative;
        }
        
        .tab-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: transparent;
            transition: all 0.3s ease;
        }
        
        .tab-link.active {
            color: var(--primary-color);
        }
        
        .tab-link.active::after {
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }
        
        .tab-link:hover::after {
            background: var(--secondary-color);
            opacity: 0.5;
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
        }
        
        .masonry-gallery {
            column-count: 3;
            column-gap: 15px;
        }
        
        .masonry-item {
            display: inline-block;
            width: 100%;
            margin-bottom: 15px;
            break-inside: avoid;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
        }
        
        .masonry-item img {
            width: 100%;
            border-radius: 10px;
            transition: transform 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            display: block;
        }
        
        .masonry-item:hover img {
            transform: scale(1.02);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .download-button {
            position: absolute;
            bottom: -50px;
            right: 10px;
            background: rgba(255, 255, 255, 0.9);
            color: var(--primary-color);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            opacity: 0;
        }
        
        .masonry-item:hover .download-button {
            bottom: 10px;
            opacity: 1;
        }
        
        .download-button:hover {
            background: var(--primary-color);
            color: white;
            transform: scale(1.1);
        }
        
        .download-button .tooltip-text {
            width: 80px;
            margin-left: -40px;
        }
        
        .similar-quotes {
            list-style: none;
            padding: 0;
        }
        
        .similar-quote-item {
            padding: 1rem;
            border-left: 3px solid var(--secondary-color);
            margin-bottom: 1rem;
            background: var(--light-color);
            border-radius: 0 10px 10px 0;
            transition: all 0.3s ease;
        }
        
        .similar-quote-item:hover {
            border-left-color: var(--primary-color);
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .similar-quote-text {
            font-style: italic;
            margin-bottom: 0.5rem;
        }
        
        .similar-quote-author {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary-color);
            text-align: right;
        }
        
        /* Footer Section */
        .footer-section {
            background: var(--dark-color);
            color: white;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .masonry-gallery {
                column-count: 2;
            }
            
            .share-buttons {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .quote-footer {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .action-buttons {
                margin-top: 15px;
                align-self: flex-end;
            }
        }
        
        @media (max-width: 576px) {
            .masonry-gallery {
                column-count: 1;
            }
            
            .quote-text {
                font-size: 1.4rem;
            }
            
            .tab-link {
                padding: 0.75rem 0.5rem;
                font-size: 0.9rem;
            }
        }
