.pBig {
    font-size: 50px;
    font-weight: bolder;
}

.pMedium {
    font-size: 30px;
}

.point { 
    font-size: 30px;
    font-weight: 600;
}

.link {
    text-decoration: none;
}

.repoLink {
    text-decoration: none;
    animation: repoEffect 5s infinite alternate-reverse;
}

@keyframes repoEffect {
    from { color: aquamarine }
    to { color: rgb(0, 162, 255) }
}

.gradient {
    animation: repoEffect 5s infinite alternate-reverse;
}

.points {
    display: flex;
    gap: 35px;
}

.tutorial-steps {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}


.tutorial-steps li {
    padding: 1.2rem 1.5rem 1.2rem 1.8rem;
    border-left: 5px solid var(--accent);
    margin: 0.75rem 0;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    box-shadow: 
        0 8px 24px rgba(0,0,0,0.12), 
        inset 0 1px 0 rgba(255,255,255,0.6);
}


.tutorial-steps li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--accent), var(--accent-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px 0 0 16px;
}


.tutorial-steps li:hover {
    transform: translateX(6px);
    box-shadow: 
        0 12px 40px rgba(0,0,0,0.18), 
        inset 0 1px 0 rgba(255,255,255,0.8),
        0 0 0 1px rgba(52,152,219,0.2);
    border-left-color: var(--accent-dark);
}


.tutorial-steps li:hover::before {
    opacity: 1;
}


body.dark .tutorial-steps li {
    background: rgba(20, 24, 38, 0.92);
    box-shadow: 
        0 12px 35px rgba(0,0,0,0.75), 
        inset 0 1px 0 rgba(255,255,255,0.1);
}


body.dark .tutorial-steps li:hover {
    box-shadow: 
        0 20px 55px rgba(0,0,0,0.85), 
        inset 0 1px 0 rgba(255,255,255,0.15),
        0 0 0 1px rgba(74,168,255,0.3);
}


.tutorial-steps li strong {
    color: var(--accent);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(0, 149, 255, 0.2);
}


.tutorial-note {
    background: linear-gradient(135deg, rgba(0, 149, 255, 0.1), rgba(74, 168, 255, 0.05));
    border: 1px solid rgba(0, 149, 255, 0.25);
    border-radius: 14px;
    padding: 1.2rem 1.4rem;
    margin-top: 1.2rem;
    font-size: 0.95rem;
    font-style: italic;
    position: relative;
    overflow: hidden;
}


.tutorial-note::before {
    content: '💡';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0.3;
}


body.dark .tutorial-note {
    background: linear-gradient(135deg, rgba(74, 168, 255, 0.15), rgba(74, 168, 255, 0.08));
    border-color: rgba(74, 168, 255, 0.35);
}