* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #ffffff 0%, #f4f4f8 100%);
}

.header {
    background: linear-gradient(120deg, rgba(255,255,255,0.9) 0%, rgba(240,249,255,0.85) 50%, rgba(230,245,255,0.9) 100%);
    color: white;
    padding: 3rem 1rem;
    text-align: center;
}

.header h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(90deg, #0055dd, #0077ff, #0055dd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: textShine 5s ease-in-out infinite alternate;
}
@keyframes textShine {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.header .last-modified {
    opacity: 0.8;
    font-size: 0.9rem;
    color: #333333;
}

.container {
    max-width: 1000px;
    margin: -2rem auto 0;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.section {
    margin-bottom: 2.5rem;
}

h2 {
    color: #333;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e0e0e0;
}

h3 {
    color: #333;
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin: 1rem 0 1.5rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.75rem;
}
.table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.table th, .table td {
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.table th {
    background: #f5f7ff;
    font-weight: 600;
}
.highlight-box {
    background: #f5f7ff;
    border-left: 4px solid #0055dd;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.warning-box {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

a {
    color: #0055dd;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.important {
/*     font-weight: 600;
    color: #0055dd; */
}

.instructions {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    background: #0055dd;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.browser-section {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.browser-title {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.store-description {
    background: #f5f7ff;
    border-left: 4px solid #0055dd;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

/* Footer */
footer {
    background-color: #ececec;
    padding: 1.5rem 0;
    margin-top: 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #555555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #0077ff;
}

.copyright {
    font-size: 14px;
    color: #666;
}

.name {
    display: inline-block;
    vertical-align: middle;
    width: 160px;
}

.email{
    width: 175px;
    display: inline-block;
    vertical-align: sub;
}
.section li a {
    word-break: break-all;
}

.uninstall{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.main{
    flex: 1;
}
@media (max-width: 768px) {
    
    .container {
        margin: -1rem 1rem 0;
        padding: 1.5rem;
    }
    .table {
        display: block;
        overflow-x: auto;
    }
    .instructions {
        padding: 1.5rem;
    }
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}