/* Flavor Flavor Voting - Frontend Styles - Dark Theme */

:root {
    --ffv-primary: #ff6b6b;
    --ffv-secondary: #4ecdc4;
    --ffv-dark: #0a0a0f;
    --ffv-dark-card: #12121a;
    --ffv-dark-surface: #1a1a24;
    --ffv-dark-border: #2a2a3a;
    --ffv-light: #f8f9fa;
    --ffv-text: #e5e7eb;
    --ffv-text-muted: #9ca3af;
    --ffv-gradient: linear-gradient(135deg, var(--ffv-primary) 0%, #ff8e8e 100%);
    --ffv-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    --ffv-radius: 16px;
}

* {
    box-sizing: border-box;
}

.ffv-voting-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    position: relative;
    background: var(--ffv-dark);
    color: var(--ffv-text);
    min-height: 100vh;
}

/* Header - Modern Glassmorphism Design */
.ffv-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 50px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f64f59 100%);
    border-radius: 24px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
}

.ffv-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 40%);
    animation: ffv-shimmer 8s ease-in-out infinite;
}

.ffv-header::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255,255,255,0.08) 50%,
        transparent 70%
    );
    animation: ffv-shine 6s linear infinite;
}

@keyframes ffv-shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes ffv-shine {
    0% { transform: translateX(-50%) translateY(-50%) rotate(45deg); }
    100% { transform: translateX(50%) translateY(50%) rotate(45deg); }
}

/* Floating particles effect */
.ffv-header .ffv-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.ffv-header .ffv-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: ffv-float 15s infinite;
}

.ffv-header .ffv-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.ffv-header .ffv-particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 14s; }
.ffv-header .ffv-particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 11s; }
.ffv-header .ffv-particle:nth-child(4) { left: 50%; animation-delay: 1s; animation-duration: 16s; }
.ffv-header .ffv-particle:nth-child(5) { left: 70%; animation-delay: 3s; animation-duration: 13s; }
.ffv-header .ffv-particle:nth-child(6) { left: 85%; animation-delay: 5s; animation-duration: 15s; }

@keyframes ffv-float {
    0%, 100% { 
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(80vh) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(-10vh) scale(1);
    }
    100% {
        transform: translateY(-20vh) scale(0);
        opacity: 0;
    }
}

.ffv-title {
    font-size: clamp(26px, 5vw, 48px);
    font-weight: 900;
    margin: 0 0 12px 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #fff, #f0f0f0, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: ffv-title-glow 3s ease-in-out infinite;
}

@keyframes ffv-title-glow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255,255,255,0.3)); }
    50% { filter: drop-shadow(0 0 20px rgba(255,255,255,0.5)); }
}

.ffv-subtitle {
    font-size: clamp(14px, 2.5vw, 18px);
    opacity: 0.95;
    margin: 0;
    position: relative;
    z-index: 2;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.ffv-total-votes {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.ffv-vote-icon {
    font-size: 24px;
}

.ffv-total-count {
    font-size: 24px;
    font-weight: 800;
}

.ffv-vote-label {
    opacity: 0.9;
}

/* Voting Disabled */
.ffv-voting-disabled {
    text-align: center;
    padding: 40px;
    background: #422006;
    border: 1px solid #854d0e;
    border-radius: var(--ffv-radius);
    margin-bottom: 30px;
    color: #fef3c7;
}

.ffv-disabled-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

/* Ad Containers */
.ffv-ad-container {
    margin: 30px 0;
    text-align: center;
    min-height: 100px;
    width: 100%;
    display: block;
    border-radius: var(--ffv-radius);
    padding: 15px;
    box-sizing: border-box;
}

.ffv-ad-container ins {
    display: block;
    width: 100%;
    min-width: 300px;
}

.ffv-ad-container:empty {
    display: none;
}

/* Responsive ad visibility */
.ffv-ad-desktop-only {
    display: block !important;
}
.ffv-ad-mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .ffv-ad-desktop-only {
        display: none !important;
    }
    .ffv-ad-mobile-only {
        display: block !important;
    }
}

/* Contestants Grid */
.ffv-contestants-wrapper {
    margin-bottom: 30px;
}

.ffv-contestants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
}

@media (min-width: 768px) {
    .ffv-contestants-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 25px;
    }
}

/* Contestant Card */
.ffv-contestant-card {
    background: var(--ffv-dark-card);
    border-radius: var(--ffv-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    border: 1px solid var(--ffv-dark-border);
}

.ffv-contestant-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ffv-shadow);
}

.ffv-contestant-card.ffv-votable:hover .ffv-vote-overlay {
    opacity: 1;
}

.ffv-contestant-card.ffv-voting {
    pointer-events: none;
    opacity: 0.7;
}

.ffv-contestant-card.ffv-voted .ffv-vote-success {
    opacity: 1;
}

.ffv-card-inner {
    position: relative;
}

/* Contestant Photo */
.ffv-contestant-photo {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.ffv-contestant-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ffv-contestant-card:hover .ffv-contestant-photo img {
    transform: scale(1.05);
}

.ffv-placeholder-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
}

.ffv-placeholder-photo svg {
    width: 50%;
    height: 50%;
}

/* Vote Overlay */
.ffv-vote-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ffv-vote-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ffv-vote-btn svg {
    width: 40px;
    height: 40px;
    fill: #fff;
    animation: ffv-bounce 1s ease infinite;
}

@keyframes ffv-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Vote Success */
.ffv-vote-success {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 185, 129, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.ffv-vote-success span {
    font-size: 60px;
    color: #fff;
    animation: ffv-checkmark 0.5s ease;
}

@keyframes ffv-checkmark {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Contestant Info */
.ffv-contestant-info {
    padding: 12px 8px;
    text-align: center;
    background: var(--ffv-dark-card);
}

/* Name Row - Name and Percentage on same line */
.ffv-name-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.ffv-contestant-name {
    font-size: clamp(11px, 2vw, 15px);
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

/* Vote Percentage - Next to name */
.ffv-vote-percentage {
    font-size: clamp(10px, 1.5vw, 13px);
    color: var(--ffv-secondary);
    font-weight: 700;
    white-space: nowrap;
}

.ffv-vote-count-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.ffv-contestant-votes {
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 800;
    color: var(--ffv-primary);
    transition: all 0.3s ease;
}

.ffv-contestant-votes.ffv-updated {
    animation: ffv-vote-pop 0.5s ease;
}

@keyframes ffv-vote-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); color: #10b981; }
    100% { transform: scale(1); }
}

.ffv-votes-label {
    font-size: 10px;
    color: var(--ffv-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modal */
.ffv-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}

.ffv-modal.ffv-active {
    display: flex;
    animation: ffv-fade-in 0.3s ease;
}

@keyframes ffv-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.ffv-modal-content {
    background: var(--ffv-dark-surface);
    border-radius: var(--ffv-radius);
    padding: 40px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    animation: ffv-slide-up 0.3s ease;
    border: 1px solid var(--ffv-dark-border);
}

@keyframes ffv-slide-up {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.ffv-modal-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.ffv-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
}

.ffv-modal-text {
    color: var(--ffv-text-muted);
    margin: 0 0 25px 0;
}

/* Countdown */
.ffv-countdown-wrapper {
    margin-bottom: 25px;
}

.ffv-countdown-wrapper p {
    color: var(--ffv-text-muted);
    margin: 0 0 15px 0;
}

.ffv-countdown-timer {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.ffv-countdown-timer #ffv-countdown {
    font-size: 48px;
    font-weight: 800;
    color: var(--ffv-primary);
    line-height: 1;
}

.ffv-countdown-timer span:last-child {
    font-size: 14px;
    color: var(--ffv-text-muted);
}

.ffv-countdown-bar {
    width: 100%;
    height: 6px;
    background: var(--ffv-dark-border);
    border-radius: 3px;
    overflow: hidden;
}

.ffv-countdown-progress {
    height: 100%;
    background: var(--ffv-gradient);
    border-radius: 3px;
    transition: width 1s linear;
}

/* Buttons */
.ffv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 10px;
}

.ffv-btn:last-child {
    margin-bottom: 0;
}

.ffv-btn-primary {
    background: var(--ffv-gradient);
    color: #fff;
}

.ffv-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

.ffv-btn-secondary {
    background: var(--ffv-secondary);
    color: #fff;
}

.ffv-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(78, 205, 196, 0.4);
}

.ffv-btn-close {
    background: var(--ffv-dark-border);
    color: var(--ffv-text);
}

.ffv-btn-close:hover {
    background: #3a3a4a;
}

/* Loading Overlay */
.ffv-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99998;
}

.ffv-loading-overlay.ffv-active {
    display: flex;
}

.ffv-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--ffv-dark-border);
    border-top-color: var(--ffv-primary);
    border-radius: 50%;
    animation: ffv-spin 1s linear infinite;
}

@keyframes ffv-spin {
    to { transform: rotate(360deg); }
}

/* No Contestants */
.ffv-no-contestants {
    text-align: center;
    padding: 60px 20px;
    background: var(--ffv-dark-surface);
    border-radius: var(--ffv-radius);
    color: var(--ffv-text-muted);
}

/* Responsive - Mobile 3 columns */
@media (max-width: 480px) {
    .ffv-voting-container {
        padding: 12px 6px;
    }
    
    .ffv-header {
        padding: 30px 15px;
        margin-bottom: 15px;
        border-radius: 16px;
    }
    
    .ffv-title {
        font-size: 20px;
        -webkit-text-fill-color: #fff;
    }
    
    .ffv-subtitle {
        font-size: 12px;
    }
    
    .ffv-contestants-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .ffv-contestant-card {
        border-radius: 10px;
    }
    
    .ffv-contestant-info {
        padding: 6px 4px;
    }
    
    /* Name row on mobile - stack vertically */
    .ffv-name-row {
        flex-direction: column;
        gap: 2px;
        margin-bottom: 4px;
    }
    
    .ffv-contestant-name {
        font-size: 10px;
    }
    
    .ffv-vote-percentage {
        font-size: 9px;
    }
    
    .ffv-contestant-votes {
        font-size: 13px;
    }
    
    .ffv-votes-label {
        font-size: 8px;
    }
    
    .ffv-vote-btn {
        font-size: 10px;
        gap: 4px;
    }
    
    .ffv-vote-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .ffv-modal-content {
        padding: 25px 15px;
    }
    
    .ffv-modal-title {
        font-size: 18px;
    }
    
    .ffv-countdown-timer #ffv-countdown {
        font-size: 36px;
    }
    
    .ffv-modal-title {
        font-size: 20px;
    }
}

/* SEO Content Section */
.ffv-seo-content {
    margin-top: 50px;
    padding: 40px;
    background: var(--ffv-dark-surface);
    border-radius: var(--ffv-radius);
    border: 1px solid var(--ffv-dark-border);
}

.ffv-seo-content h2 {
    color: #fff;
    font-size: 28px;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--ffv-primary);
}

.ffv-seo-content h3 {
    color: var(--ffv-primary);
    font-size: 22px;
    margin: 30px 0 15px 0;
}

.ffv-seo-content h4 {
    color: var(--ffv-secondary);
    font-size: 18px;
    margin: 25px 0 12px 0;
}

.ffv-seo-content p {
    color: var(--ffv-text);
    line-height: 1.8;
    margin-bottom: 15px;
}

.ffv-seo-content ul,
.ffv-seo-content ol {
    color: var(--ffv-text);
    margin: 15px 0;
    padding-left: 25px;
}

.ffv-seo-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.ffv-seo-content strong {
    color: #fff;
}

/* FAQ Section */
.ffv-faq-section {
    margin-top: 40px;
}

.ffv-faq-item {
    background: var(--ffv-dark-card);
    border: 1px solid var(--ffv-dark-border);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.ffv-faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease;
}

.ffv-faq-question:hover {
    background: var(--ffv-dark-surface);
}

.ffv-faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--ffv-primary);
    transition: transform 0.3s ease;
}

.ffv-faq-item.active .ffv-faq-question::after {
    transform: rotate(45deg);
}

.ffv-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ffv-faq-item.active .ffv-faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

.ffv-faq-answer p {
    color: var(--ffv-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Contestant List in SEO */
.ffv-contestant-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.ffv-contestant-list-item {
    background: var(--ffv-dark-card);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--ffv-dark-border);
}

.ffv-contestant-list-item strong {
    color: var(--ffv-primary);
}

@media (max-width: 480px) {
    .ffv-seo-content {
        padding: 20px 15px;
        margin-top: 30px;
    }
    
    .ffv-seo-content h2 {
        font-size: 22px;
    }
    
    .ffv-seo-content h3 {
        font-size: 18px;
    }
    
    .ffv-contestant-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Share Buttons */
.ffv-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--ffv-dark-surface);
    color: #fff;
}

.ffv-share-btn svg {
    width: 20px;
    height: 20px;
}

.ffv-share-btn:hover {
    transform: scale(1.1);
}

.ffv-share-whatsapp { background: #25D366; }
.ffv-share-facebook { background: #1877F2; }
.ffv-share-twitter { background: #000; }
.ffv-share-telegram { background: #0088cc; }
.ffv-share-copy { background: var(--ffv-dark-border); }

.ffv-share-whatsapp:hover { background: #128C7E; }
.ffv-share-facebook:hover { background: #0d65d9; }
.ffv-share-twitter:hover { background: #333; }
.ffv-share-telegram:hover { background: #006699; }
.ffv-share-copy:hover { background: var(--ffv-primary); }

/* Share in Header */
.ffv-share-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.ffv-share-label {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

/* Share Section Below Contestants */
.ffv-share-section {
    text-align: center;
    padding: 40px 20px;
    margin: 30px 0;
    background: var(--ffv-dark-surface);
    border-radius: var(--ffv-radius);
    border: 1px solid var(--ffv-dark-border);
}

.ffv-share-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
}

.ffv-share-subtitle {
    font-size: 14px;
    color: var(--ffv-text-muted);
    margin: 0 0 25px 0;
}

.ffv-share-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ffv-share-large {
    width: auto;
    height: auto;
    padding: 12px 20px;
    border-radius: 50px;
    gap: 8px;
}

.ffv-share-large span {
    font-size: 14px;
    font-weight: 600;
}

/* Share in Modal */
.ffv-modal-share {
    margin: 20px 0;
    padding: 15px;
    background: var(--ffv-dark-card);
    border-radius: 12px;
}

.ffv-modal-share-text {
    font-size: 13px;
    color: var(--ffv-text-muted);
    margin: 0 0 12px 0;
}

.ffv-share-modal-buttons {
    gap: 10px;
}

/* Sticky Share - Vertical Right Side (Always Open) */
.ffv-sticky-share {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--ffv-dark-surface);
    border-radius: 12px 0 0 12px;
    padding: 10px 8px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
    border: 1px solid var(--ffv-dark-border);
    border-right: none;
}

.ffv-sticky-share-toggle {
    display: none; /* Hide toggle - always open */
}

.ffv-sticky-share-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 1;
    visibility: visible;
}

.ffv-sticky-share-menu .ffv-share-btn {
    width: 44px;
    height: 44px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border-radius: 10px;
}

.ffv-sticky-share-menu .ffv-share-btn:hover {
    transform: scale(1.1) translateX(-5px);
}

/* Mobile adjustments for share */
@media (max-width: 480px) {
    .ffv-share-header {
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 15px;
    }
    
    .ffv-share-header .ffv-share-btn {
        width: 36px;
        height: 36px;
    }
    
    .ffv-share-header .ffv-share-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .ffv-share-label {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .ffv-share-section {
        padding: 25px 15px;
        margin: 20px 0;
    }
    
    .ffv-share-title {
        font-size: 18px;
    }
    
    .ffv-share-large {
        padding: 10px 14px;
    }
    
    .ffv-share-large span {
        font-size: 12px;
    }
    
    .ffv-sticky-share {
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        padding: 8px 6px;
    }
    
    .ffv-sticky-share-menu .ffv-share-btn {
        width: 38px;
        height: 38px;
    }
    
    .ffv-sticky-share-menu .ffv-share-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Copy Notice */
.ffv-copy-notice {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--ffv-dark-surface);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    z-index: 99999;
    opacity: 0;
    transition: all 0.3s ease;
    border: 1px solid var(--ffv-primary);
}

.ffv-copy-notice.ffv-show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Print styles */
@media print {
    .ffv-modal,
    .ffv-loading-overlay,
    .ffv-vote-overlay,
    .ffv-ad-container,
    .ffv-sticky-share,
    .ffv-share-section,
    .ffv-share-header {
        display: none !important;
    }
}
