body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: #000000;
    color: #e0e7ff;
    line-height: 1.6;
    animation: fadeIn 1s ease-in;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
h1, h2, h3 {
    color: #3b82f6;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    animation: slideIn 0.5s ease-out;
}
@keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
h1 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
h2 {
    border-bottom: 2px solid #8b5cf6;
    padding-bottom: 10px;
    margin-top: 40px;
}
code {
    background: #1e1e1e;
    color: #60a5fa;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    transition: background 0.3s;
}
code:hover {
    background: #2d2d2d;
}
pre {
    background: #1e1e1e;
    color: #e0e7ff;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    border: 1px solid #374151;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    position: relative;
}
pre::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 10px;
    height: 10px;
    background: #ff5f56;
    border-radius: 50%;
    box-shadow: 20px 0 #ffbd2e, 40px 0 #27ca3f;
}
.section {
    margin-bottom: 50px;
    background: rgba(139, 92, 246, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}
.section:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}
ul, ol {
    padding-left: 20px;
}
li {
    margin-bottom: 10px;
}
a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s;
}
a:hover {
    text-decoration: underline;
    color: #8b5cf6;
}
details {
    margin-bottom: 15px;
}
summary {
    cursor: pointer;
    font-weight: bold;
    color: #60a5fa;
    transition: color 0.3s;
}
summary:hover {
    color: #93c5fd;
}
hr {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #374151, transparent);
    margin: 40px 0;
}
p img {
    vertical-align: middle;
    margin-right: 5px;
}
.language-switch {
    text-align: center;
    margin-bottom: 20px;
}
.language-switch a {
    margin: 0 10px;
    padding: 10px 20px;
    background: #8b5cf6;
    color: #ffffff;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}
.language-switch a:hover {
    background: #7c3aed;
    transform: scale(1.05);
}
.repo-button {
    text-align: center;
    margin: 20px 0;
}
.repo-button a {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}
.repo-button a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(59, 130, 246, 0.4);
}
.github-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}
.stat {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #60a5fa;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 120px;
    position: relative;
    overflow: hidden;
}
.stat::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s;
}
.stat:hover::before {
    transform: rotate(45deg) translate(50%, 50%);
}
.stat:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.6);
}
.stat h3 {
    margin: 10px 0 5px 0;
    font-size: 2em;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.stat p {
    margin: 0;
    color: #e0e7ff;
    font-weight: bold;
    font-size: 1.1em;
}
.stat:nth-child(1)::after { content: '⭐'; position: absolute; top: 10px; right: 10px; font-size: 1.5em; }
.stat:nth-child(2)::after { content: '🍴'; position: absolute; top: 10px; right: 10px; font-size: 1.5em; }
.stat:nth-child(3)::after { content: '🐛'; position: absolute; top: 10px; right: 10px; font-size: 1.5em; }
.stat:nth-child(4)::after { content: '👀'; position: absolute; top: 10px; right: 10px; font-size: 1.5em; }
@media (max-width: 768px) {
    body {
        padding: 10px;
        max-width: 100%;
    }
    h1 {
        font-size: 2em;
    }
    .github-stats {
        flex-direction: column;
        align-items: center;
    }
}