:root {
    /* Couleurs - Mode clair */
    --primary: #ff9200;       
    --primary-light: #ffb144;
    --primary-dark: #e67e00;
    --secondary: #4a148c;
    --secondary-light: #7c43bd;
    --secondary-dark: #38006b;
    --accent: #ff6e40;
    --accent-light: #ff9e6b;
    --text-dark: #212121;
    --text-light: #fafafa;
    --text-muted: #757575;
    --background: #f5f5f7;    
    --card-bg: #ffffff;
    --card-shadow: rgba(0, 0, 0, 0.1);
    --success: #00c853;
    --warning: #ffd600;
    --error: #d50000;
    --border-color: #e0e0e0;
    
    /* Polices */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Espacements */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-xxl: 3rem;
    
    /* Ombres */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 25px rgba(0,0,0,0.1), 0 5px 10px rgba(0,0,0,0.05);
    --shadow-inner: inset 0 2px 4px rgba(0,0,0,0.06);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Rayons de bordure */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 2px;
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --z-back: -1;
    --z-normal: 1;
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;

/* Contenu principal */
.site-content {
    flex: 1;
    padding: var(--space-md) 0 var(--space-xxl);
}

.current-url-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-lg) 0;
}

.url-display {
    display: inline-block;
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    font-weight: 700;
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-md) 0;
    border: 3px solid var(--primary);
    border-radius: var(--radius-md);
    background-color: rgba(255, 146, 0, 0.05);
    color: var(--primary);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.url-display::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    transform: rotate(45deg);
    opacity: 0;
    transition: var(--transition);
}

.url-display:hover::before {
    opacity: 1;
    transform: rotate(45deg) scale(1.2);
}

.url-display:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.url-display.animated {
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(255, 146, 0, 0.5);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 146, 0, 0.8);
    }
}

.url-protocol {
    color: var(--text-muted);
    font-weight: 400;
}

.url-check, .url-shield {
    margin-left: var(--space-sm);
    color: var(--success);
}

.url-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.verification-info {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: var(--space-md);
}

/* QR Code */
.qr-code-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: var(--z-modal);
    background-color: var(--card-bg);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 300px;
    width: 90%;
    text-align: center;
}

.qr-code-container.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.qr-code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.close-qr-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.close-qr-btn:hover {
    color: var(--primary);
}

.qr-code {
    padding: var(--space-md);
    background-color: white;
    border-radius: var(--radius-md);
    margin: 0 auto;
}

/* Section proxy */
.proxy-section .feature-text {
    background-color: rgba(74, 20, 140, 0.05);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-top: var(--space-lg);
    border-left: 3px solid var(--secondary);
}

.proxy-info {
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    text-align: center;
    color: var(--text-dark);
    font-weight: 500;
}

/* Section d'aide */
.help-text {
    margin-bottom: var(--space-lg);
    text-align: center;
}

.button {
    margin: 0 auto;
    display: flex;
}

/* Signaler un problème */
.report-section {
    transition: var(--transition);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}

.report-section.visible {
    max-height: 1000px;
    opacity: 1;
}

.hidden {
    display: none;
}

.report-text {
    margin-bottom: var(--space-lg);
    text-align: center;
}

.verification-container {
    background-color: rgba(74, 20, 140, 0.05);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.verification-text {
    text-align: center;
    margin-bottom: var(--space-md);
}

.verification-challenge {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    padding: var(--space-md);
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.verification-input {
    display: flex;
    gap: var(--space-sm);
    max-width: 400px;
    margin: 0 auto;
}

.captcha-input {
    flex: 1;
    padding: var(--space-md);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--card-bg);
    color: var(--text-dark);
}

.captcha-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 146, 0, 0.2);
}

.new-mirror-container {
    text-align: center;
    padding: var(--space-lg);
    border: 1px dashed var(--success);
    border-radius: var(--radius-md);
    background-color: rgba(0, 200, 83, 0.05);
    margin-top: var(--space-lg);
}

.mirror-title {
    color: var(--success);
    margin-bottom: var(--space-md);
}

/* Section statut */
.status-card {
    border-left: 4px solid var(--success);
}

.status-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.status-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--success);
    position: relative;
}

.status-indicator.online::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--success);
    opacity: 0.4;
    animation: pulse 2s infinite;
}

.status-message {
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
}

.status-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.status-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.status-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.status-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.progress-bar {
    height: 8px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: var(--success);
    border-radius: var(--radius-full);
}

/* Alternatives */
.alternatives-list {
    list-style: none;
    display: grid;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.alternative-item {
    background-color: rgba(255, 146, 0, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.alternative-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary);
}

.alternative-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    color: var(--text-dark);
}

.alternative-info, .alternative-status {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.alternative-name {
    font-weight: 600;
    color: var(--primary);
}

.alternative-ping {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.alternative-url {
    font-family: monospace;
    font-weight: 500;
}

.status-badge {
    font-size: 0.75rem;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.status-badge.active {
    background-color: rgba(0, 200, 83, 0.1);
    color: var(--success);
}

.status-badge.inactive {
    background-color: rgba(213, 0, 0, 0.1);
    color: var(--error);
}

.unavailable {
    opacity: 0.7;
}

.unavailable .alternative-link {
    cursor: not-allowed;
}

.blurred {
    filter: blur(3px);
    user-select: none;
}

/* Pied de page */
.site-footer {
    background-color: var(--card-bg);
    padding: var(--space-xxl) 0 var(--space-lg);
    margin-top: auto;
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-heading {
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    color: var(--primary);
    position: relative;
    padding-bottom: var(--space-xs);
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary);
}

.social-links, .tools-list {
    list-style: none;
}

.social-links li, .tools-list li {
    margin-bottom: var(--space-sm);
}

.social-links a, .tools-list a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-dark);
    transition: var(--transition);
}

.social-links a:hover, .tools-list a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.contact-text {
    margin-bottom: var(--space-sm);
}

.contact-link {
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.copyright {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Thème sombre/clair */
.theme-toggle-container {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: var(--z-fixed);
}

.theme-toggle {
    background-color: var(--card-bg);
    border: none;
    box-shadow: var(--shadow-md);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.theme-toggle:hover {
    transform: rotate(45deg);
}

[data-theme="light"] .dark-icon {
    display: block;
}

[data-theme="light"] .light-icon {
    display: none;
}

[data-theme="dark"] .dark-icon {
    display: none;
}

[data-theme="dark"] .light-icon {
    display: block;
}

/* Media Queries */
@media (max-width: 768px) {
    .site-header {
        height: auto;
        padding: var(--space-md) 0;
    }
    
    .main-nav {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .action-button {
        width: 100%;
    }
    
    .alternatives-list {
        grid-template-columns: 1fr;
    }
    
    .card {
        padding: var(--space-md);
    }
    
    .url-display {
        font-size: 1.25rem;
        padding: var(--space-sm) var(--space-md);
    }
    
    .url-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .action-btn {
        width: 100%;
    }
    
    .verification-input {
        flex-direction: column;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .status-details {
        grid-template-columns: 1fr;
    }
}
}

/* Mode sombre */
[data-theme="dark"] {
    --primary: #ff9200;
    --primary-light: #ffb144;
    --primary-dark: #e67e00;
    --secondary: #6a1fc5;
    --secondary-light: #9349ee;
    --secondary-dark: #4a148c;
    --text-dark: #e0e0e0;
    --text-light: #fafafa;
    --text-muted: #a0a0a0;
    --background: #121212;
    --card-bg: #1e1e1e;
    --card-shadow: rgba(0, 0, 0, 0.3);
    --border-color: #333333;
}

/* Reset et base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

a:hover, a:focus {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
}

/* Conteneur */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Typographie */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--space-md);
}

.page-title {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    margin-bottom: var(--space-lg);
    text-align: center;
    color: var(--text-dark);
    position: relative;
    padding-bottom: var(--space-md);
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: var(--radius-full);
}

.section-title {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    margin-bottom: var(--space-md);
    color: var(--primary);
}

.card-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

/* En-tête */
.site-header {
    background-color: var(--card-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: var(--z-fixed);
    padding: var(--space-sm) 0;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: var(--transition-fast);
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-circle {
    fill: var(--primary);
    transition: var(--transition);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

	.brand-name {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    background-color: #3f3f3f47;
    border: 1px solid #e67e00;
    padding: 10px;
    line-height: 0.6;
    transition: var(--transition);
    transform: translateY(-3px);
}
.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: none;
}

@media (min-width: 768px) {
    .brand-tagline {
        display: block;
    }
}

/* Boutons */
.action-button, .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600; 
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    outline: none;
    gap: var(--space-sm);
    position: relative;
    overflow: hidden;
}

.action-button {
    background-color: #383838;
    color: var(--text-light);
    font-size: 0.9rem;
    border: 1px solid #e67e00;
}

.action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.action-button:hover::before {
    left: 100%;
}

.action-button:hover, .action-button:focus {
    background-color: var(--primary-dark);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
	    border: 1px solid #e67e00;
}

.btn-text {
    z-index: 1;
}

.btn-icon {
    z-index: 1;
}

.primary-button {
    background-color: #ff92001f;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    padding: 0.5rem 1.1rem;
    border: 1px solid #e67e00;
}

.primary-button:hover, .primary-button:focus {
    background-color: var(--primary-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.secondary-button {
    background-color: var(--secondary);
    color: var(--text-light);
}

.secondary-button:hover, .secondary-button:focus {
    background-color: var(--secondary-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.action-btn {
    background-color: var(--card-bg);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.action-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 146, 0, 0.6);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 146, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 146, 0, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

.breadcrumb-nav {
    padding: var(--space-md) 0;
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
}

.breadcrumb-link {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.breadcrumb-link:hover {
    color: var(--primary);
}

.breadcrumb-separator {
    margin: 0 var(--space-sm);
    color: var(--text-muted);
}

.breadcrumb-current {
    color: var(--primary);
    font-weight: 600;
}

.card {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.primary-card {
    position: relative;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--card-bg) 85%, #ff920040 100%);
    border-left: 4px solid #ff9200;
}

.primary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #ff6e4024);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}


.gradient-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #ff6e4024);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.gradient-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--card-bg) 85%, #ff920040 100%);
    border-left: 4px solid #ff9200;
}

.card-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.card-icon {
    font-size: 1.4rem;
    color: var(--primary);
    background-color: #212121e3;
    padding: var(--space-sm);
    border-radius: var(--radius-full);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}




.share-menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: var(--z-modal);
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    width: 90%;
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

.share-menu.hidden {
    display: none;
}

.share-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--border-color);
}

.share-menu-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.close-share-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.close-share-btn:hover {
    color: var(--primary);
}

.share-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: var(--space-md);
    gap: var(--space-md);
}

@media (max-width: 768px) {
    .share-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .share-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    gap: var(--space-xs);
}

.share-option:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.share-option i {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.share-option[data-platform="facebook"] i {
    color: #1877F2;
}

.share-option[data-platform="twitter"] i {
    color: #1DA1F2;
}

.share-option[data-platform="telegram"] i {
    color: #0088cc;
}

.share-option[data-platform="whatsapp"] i {
    color: #25D366;
}

.share-option[data-platform="snapchat"] i {
    color: #FFFC00;
}

.share-option[data-platform="sms"] i {
    color: #4CAF50;
}

.share-option[data-platform="email"] i {
    color: #D44638;
}

.share-option[data-platform="copy"] i {
    color: var(--secondary);
}

@keyframes copied {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.copied-animation {
    animation: copied 0.5s ease;
}

	.share-option {
    
    color: #ffffff;  
}

.toast-message {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: toastIn 0.3s ease, toastOut 0.3s ease 2s forwards;
}

@keyframes toastIn {
    from { transform: translate(-50%, 100%); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

@keyframes toastOut {
    from { transform: translate(-50%, 0); opacity: 1; }
    to { transform: translate(-50%, 100%); opacity: 0; }
}


.install-button-container {
    position: fixed;
    bottom: var(--space-lg);
    left: var(--space-lg);
    z-index: var(--z-fixed);
    display: flex;
    flex-direction: column;
    align-items: center;
}

 .pwa-install-button {
    background-color: var(--primary);
    border: none;
    box-shadow: var(--shadow-md);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.pwa-install-button:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

 .install-button-container .button-tooltip {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--card-bg);
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.install-button-container:hover .button-tooltip {
    opacity: 1;
}