:root {
     --primary: #ff9200;       
    --primary-light: #ff9200;  
    --secondary: #ff6e40;      
    --text-dark: #212121;
    --text-light: #fafafa;
    --text-muted: #757575;
    --background: #f5f5f7;    
    --card-bg: #ffffff;
    --success: #00c853;
    --warning: #ffd600;
    --error: #d50000;
    
     --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
     --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-xxl: 3rem;
    
     --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.14);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.1), 0 3px 6px rgba(0,0,0,0.05);
    --transition: all 0.25s ease;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
     --container-width: 1200px;
    --header-height: 70px;
}

 *, *::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;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover, a:focus {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
}

 .container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

 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: 2rem;
    margin-bottom: var(--space-lg);
    text-align: center;
    color: var(--text-dark);
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--primary);
}

.card-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

 .site-header {
    background-color: var(--card-bg);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.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);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.brand-tagline {
    font-size: 0.875rem;
    color: var(--text-muted);
}

 .action-button, .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.20rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600; 
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    outline: none;
}

.action-button {
    background-color: var(--primary);
    color: var(--text-light);
}

.action-button:hover, .action-button:focus {
    background-color: var(--primary-light);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.primary-button {
    background-color: var(--primary);
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.primary-button:hover, .primary-button:focus {
    background-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

 @keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 20, 140, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(74, 20, 140, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 20, 140, 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);
}

.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-md);
    box-shadow: var(--shadow-sm);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.primary-card {
    border-top: 4px solid var(--primary);
}

 .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: 1.75rem;
    font-weight: 700;
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-md) 0;
    border: 3px solid var(--secondary);
    border-radius: var(--radius-md);
    background-color: rgba(74, 20, 140, 0.05);
    color: var(--primary);
    transition: var(--transition);
}

.url-display:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.url-protocol {
    color: var(--text-muted);
    font-weight: 400;
}

.verification-info {
    font-size: 0.875rem;
    color: var(--text-muted);
}

 .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);
}

 .alternatives-list {
    list-style: none;
    display: grid;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.alternative-item {
    background-color: rgba(74, 20, 140, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.alternative-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.alternative-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    color: var(--text-dark);
}

.alternative-name {
    font-weight: 600;
    color: var(--primary);
}

.alternative-url {
    font-family: monospace;
    font-weight: 500;
}

.unavailable {
    opacity: 0.7;
}

.unavailable .alternative-link {
    cursor: not-allowed;
}

.status-tag {
    background-color: var(--warning);
    color: var(--text-dark);
    font-size: 0.75rem;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-transform: uppercase;
}

.blurred {
    filter: blur(3px);
    user-select: none;
}

 .help-text {
    margin-bottom: var(--space-lg);
    text-align: center;
}

.button {
    margin: 0 auto;
    display: flex;
}

.icon-refresh {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.button.loading .icon-refresh {
    animation: spin 1s linear infinite;
}

 .install-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--card-bg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-md);
    z-index: 9999;
}

.install-banner-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
}

.close-button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    padding: var(--space-sm);
}

.install-button {
    background-color: var(--primary);
    color: var(--text-light);
    border: none;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.install-button:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Footer */
.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-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.icon-twitter {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234a148c'%3E%3Cpath d='M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.contact-text {
    margin-bottom: var(--space-sm);
}

.contact-link {
    font-weight: 600;
    color: var(--primary);
}

.copyright {
    text-align: center;