* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: radial-gradient(ellipse at center, #0d1117 0%, #000000 100%);
    color: #e6edf3;
    overflow-x: hidden;
    cursor: crosshair;
    position: relative;
    word-wrap: break-word;
    hyphens: auto;
    line-height: 1.6;
    font-size: 16px;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 100, 200, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -2;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    will-change: transform;
    transform: translateZ(0);
}

.star {
    position: absolute;
    background: #6f7f8f;
    border-radius: 50%;
    animation: starTwinkle 6s infinite alternate ease-in-out;
    will-change: opacity, transform, box-shadow;
    filter: blur(0.3px);
}

.star-bright {
    background: linear-gradient(45deg, #ffffff, #e6f3ff, #cce7ff);
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.8), 0 0 8px rgba(79, 172, 254, 0.4);
    animation: starTwinkleBright 5s infinite alternate ease-in-out;
}

.star-medium {
    background: linear-gradient(45deg, #e6f3ff, #b3d9ff, #99ccff);
    box-shadow: 0 0 2px rgba(179, 217, 255, 0.6), 0 0 4px rgba(79, 172, 254, 0.3);
    animation: starTwinkleMedium 6s infinite alternate ease-in-out;
}

.star-small {
    background: linear-gradient(45deg, #b3d9ff, #99ccff, #80bfff);
    box-shadow: 0 0 1px rgba(153, 204, 255, 0.4);
    animation: starTwinkleSmall 7s infinite alternate ease-in-out;
}

.star-dim {
    background: linear-gradient(45deg, #6f7f8f, #5a6a7a, #4a5a6a);
    animation: starTwinkleDim 8s infinite alternate ease-in-out;
}

.langSelector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

.lang-toggle {
    display: flex;
    background: rgba(13, 17, 23, 0.9);
    border: 1px solid rgba(79, 172, 254, 0.3);
    border-radius: 20px;
    padding: 2px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.lang-toggle:hover {
    border-color: rgba(79, 172, 254, 0.5);
    transform: translateY(-1px);
}

.lang-option {
    padding: 6px 12px;
    border-radius: 20px;
    color: rgba(230, 237, 243, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    background: transparent;
    min-width: 32px;
    text-align: center;
}

.lang-option::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 6px;
    width: 3px;
    height: 3px;
    background: #4facfe;
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lang-option.active {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.2), rgba(0, 255, 255, 0.1));
    color: #4facfe;
    box-shadow: 0 0 10px rgba(79, 172, 254, 0.2);
}

.lang-option.active::before {
    opacity: 1;
    background: #00ffff;
}

.lang-option:hover:not(.active) {
    color: rgba(79, 172, 254, 0.8);
    background: rgba(79, 172, 254, 0.1);
}

.lang-option:hover:not(.active)::before {
    opacity: 0.6;
}

.social-link {
    position: fixed;
    top: 70px;
    right: 20px;
    z-index: 1001;
    display: flex;
    gap: 8px;
}

.social-logo {
    width: 40px;
    height: 40px;
    background: rgba(13, 17, 23, 0.9);
    border: 1px solid rgba(79, 172, 254, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    padding: 8px;
}

.social-logo:hover {
    border-radius: rgba(79, 172, 254, 0.5);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.2);
    background: rgba(79, 172, 254, 0.1);
}

.social-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.8) contrast(1.2);
    transition: filter 0.3s ease;
}

.social-logo:hover img {
    filter: brightness(1) contrast(1.2) drop-shadow(0 0 4px rgba(79, 172, 254, 0.3));
}

.nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    gap: 2px;
    background: rgba(13, 17, 23, 0.9);
    padding: 8px 12px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(79, 172, 254, 0.2);
    box-shadow: 0 0 15px rgba(79, 172, 254, 0.1);
    flex-wrap: wrap;
    justify-content: center;
    max-width: calc(100vw - 40px);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
}

.hamburger:hover {
    background: rgba(79, 172, 254, 0.1);
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #4facfe;
    border-radius: 1px;
    transition: all 0.3s ease;
    margin: 2px 0;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
    display: flex;
    gap: 2px;
}

.mobile-lang-selector {
    display: none;
}

.mobile-lang-toggle {
    display: flex;
    background: rgba(79, 172, 254, 0.15);
    border: 1.5px solid rgba(79, 172, 254, 0.4);
    border-radius: 15px;
    padding: 4px;
    margin-bottom: 8px;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(79, 172, 254, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.mobile-lang-option {
    padding: 4px 8px;
    border-radius: 12px;
    color: rgba(201, 209, 217, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: transparent;
    min-width: 28px;
    text-align: center;
}

.mobile-lang-option.active {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.3), rgba(0, 255, 255, 0.15));
    color: #4facfe;
    box-shadow: 0 2px 8px rgba(79, 172, 254, 0.2);
}

.nav-item {
    background: transparent;
    border: 1px solid transparent;
    padding: 10px 18px;
    border-radius: 18px;
    color: rgba(230, 237, 243, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    position: relative;
    min-width: fit-content;
    transition: all 0.3s ease, 
                background 0.4s ease, 
                box-shadow 0.4s ease;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 8px;
    width: 4px;
    height: 4px;
    background: #4facfe;
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-item:hover {
    background: rgba(79, 172, 254, 0.1);
    color: #4facfe;
    border-color: rgba(79, 172, 254, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(79, 172, 254, 0.2);
}

.nav-item:hover::before {
    opacity: 1;
}

.nav-item.active {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.3), rgba(0, 255, 255, 0.15));
    color: #4facfe;
    border-color: rgba(79, 172, 254, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79, 172, 254, 0.3),
                0 0 20px rgba(79, 172, 254, 0.1);
}

.nav-item.active::before {
    opacity: 1;
    background: #00ffff;
    box-shadow: 0 0 6px #00ffff;
}

.nav-item.active:hover {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.4), rgba(0, 255, 255, 0.2));
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(79, 172, 254, 0.4),
                0 0 25px rgba(79, 172, 254, 0.15);
}

.language-particle {
    position: fixed;
    width: 2px;
    height: 2px;
    background: #00ffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.6;
    animation: languageParticle 0.6s ease-out forwards;
}

.mouse-particle {
    position: fixed;
    width: 1.5px;
    height: 1.5px;
    background: #4facfe;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.4;
    animation: larticleFade 0.8s ease-out forwards;
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    25% {
        opacity: 0.6;
        transform: scale(1.1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1);
    }
    75% {
        opacity: 0.5;
        transform: scale(0.9);
    }
}

@keyframes starTwinkleBright {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 4px rgba(255, 255, 255, 0.8), 0 0 8px rgba(79, 172, 254, 0.4);
    }
    20% {
        opacity: 1;
        transform: scale(1.3) rotate(45deg);
        box-shadow: 0 0 8px rgba(255, 255, 255, 1), 0 0 16px rgba(79, 172, 254, 0.8);
    }
    40% {
        opacity: 0.9;
        transform: scale(1.1) rotate(90deg);
        box-shadow: 0 0 6px rgba(255, 255, 255, 0.9), 0 0 12px rgba(79, 172, 254, 0.6);
    }
    60% {
        opacity: 0.8;
        transform: scale(0.9) rotate(135deg);
        box-shadow: 0 0 4px rgba(255, 255, 255, 0.7), 0 0 8px rgba(79, 172, 254, 0.5);
    }
    80% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
        box-shadow: 0 0 10px rgba(255, 255, 255, 1), 0 0 20px rgba(79, 172, 254, 0.9);
    }
}

@keyframes starTwinkleMedium {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
        box-shadow: 0 0 2px rgba(179, 217, 255, 0.6), 0 0 4px rgba(79, 172, 254, 0.3);
    }
    33% {
        opacity: 0.8;
        transform: scale(1.2);
        box-shadow: 0 0 4px rgba(179, 217, 255, 0.8), 0 0 8px rgba(79, 172, 254, 0.5);
    }
    66% {
        opacity: 0.6;
        transform: scale(0.8);
        box-shadow: 0 0 1px rgba(179, 217, 255, 0.4), 0 0 2px rgba(79, 172, 254, 0.2);
    }
}

@keyframes starTwinkleSmall {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes starTwinkleDim {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    25% {
        opacity: 0.4;
        transform: scale(1.05);
    }
    75% {
        opacity: 0.3;
        transform: scale(0.95);
    }
}

@keyframes languageParticle {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.5) translateY(-15px);
    }
}

@keyframes larticleFade {
    0% { 
        opacity: 0.4; 
        transform: scale(1); 
    }
    100% { 
        opacity: 0; 
        transform: scale(0) translateY(-10px); 
    }
}

@media (max-width: 820px) {
    .langSelector {
        top: 15px;
        right: 12px;
    }

    .lang-toggle {
        padding: 2px;
        border-radius: 16px;
    }

    .lang-option {
        padding: 4px 8px;
        font-size: 9px;
        min-width: 26px;
        letter-spacing: 0.2px;
    }

    .social-link {
        top: 50px;
        right: 12px;
    }

    .social-logo {
        width: 34px;
        height: 34px;
        padding: 5px;
    }

    .nav {
        padding: 6px 10px;
        gap: 1px;
        max-width: calc(100vw - 120px);
        font-size: 10px;
    }
    
    .nav-item {
        padding: 6px 8px;
        font-size: 10px;
        letter-spacing: 0.2px;
    }
}

@media (max-width: 1024px) {
    .langSelector {
        top: 20px;
        right: 15px;
    }

    .lang-toggle {
        padding: 2px;
        border-radius: 18px;
    }

    .lang-option {
        padding: 4px 10px;
        font-size: 9px;
        min-width: 30px;
        letter-spacing: 0.4px;
    }

    .social-link {
        top: 60px;
        right: 15px;
    }

    .social-logo {
        width: 38px;
        height: 38px;
        padding: 7px;
    }

    .nav {
        padding: 6px 10px;
        gap: 1px;
        max-width: calc(100vw - 160px);
    }
    
    .nav-item {
        padding: 6px 12px;
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .langSelector {
        display: none;
    }

    .social-link {
        bottom: 20px;
        top: auto;
        left: 20px;
        right: auto;
        flex-direction: row;
        gap: 8px;
        z-index: 999;
        margin-right: 20px;
    }

    .social-logo {
        width: 35px;
        height: 35px;
        padding: 6px;
    }

    body {
        padding-bottom: 80px;
    }

    .nav {
        bottom: 20px;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        padding: 12px 16px;
        border-radius: 25px;
        max-width: calc(100vw - 40px);
        background: rgba(13, 17, 23, 0.95);
        backdrop-filter: blur(15px);
        box-shadow: 0 -4px 20px rgba(79, 172, 254, 0.2);
        justify-content: center;
        align-items: center;
    }

    .hamburger {
        display: flex !important;
        z-index: 1001;
    }

    .nav-menu {
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        background: rgba(13, 17, 23, 0.98);
        backdrop-filter: blur(20px);
        border: 2px solid rgba(79, 172, 254, 0.4);
        border-radius: 15px;
        margin-bottom: 10px;
        padding: 12px;
        flex-direction: column;
        gap: 8px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 -8px 32px rgba(79, 172, 254, 0.3), 
                    0 0 0 1px rgba(79, 172, 254, 0.1),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
        display: flex;
        min-width: 160px;
        width: max-content;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        box-shadow: 0 -8px 32px rgba(79, 172, 254, 0.4), 
                    0 0 0 1px rgba(79, 172, 254, 0.2),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2),
                    0 0 40px rgba(79, 172, 254, 0.1);
    }

    .mobile-lang-selector {
        display: block;
    }
    
    .nav-item {
        padding: 12px 16px;
        font-size: 11px;
        text-align: center;
        border-radius: 12px;
        width: 100%;
    }

    .stars {
        display: none;
    }

    .mouse-particle {
        display: none;
    }
}

@media (max-width: 480px) {
    .langSelector {
        display: none;
    }

    .social-link {
        bottom: 15px;
        left: 15px;
        gap: 6px;
    }

    .social-logo {
        width: 32px;
        height: 32px;
        padding: 5px;
    }

    body {
        padding-bottom: 90px;
    }

    .nav {
        bottom: 15px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        padding: 10px 14px;
        max-width: calc(100vw - 30px);
        width: auto;
        border-radius: 20px;
    }

    .hamburger {
        display: flex !important;
        padding: 6px;
        z-index: 1001;
    }

    .hamburger span {
        width: 18px;
        height: 2px;
    }

    .nav-menu {
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(8px);
        margin-bottom: 8px;
        padding: 10px;
        border-radius: 12px;
        gap: 6px;
        background: rgba(13, 17, 23, 0.98);
        backdrop-filter: blur(20px);
        border: 2px solid rgba(79, 172, 254, 0.4);
        box-shadow: 0 -8px 32px rgba(79, 172, 254, 0.3), 
                    0 0 0 1px rgba(79, 172, 254, 0.1),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
        width: max-content;
        min-width: 150px;
    }

    .mobile-lang-selector {
        display: block;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    
    .nav-item {
        padding: 10px 14px;
        font-size: 10px;
        letter-spacing: 0.3px;
        border-radius: 10px;
    }
    
    .nav-item::before {
        display: none;
    }
}

@media (max-width: 360px) {
    .langSelector {
        display: none;
    }

    .social-link {
        bottom: 12px;
        left: 12px;
        gap: 4px;
    }

    .social-logo {
        width: 28px;
        height: 28px;
        padding: 4px;
    }

    body {
        padding-bottom: 95px;
    }

    .nav {
        bottom: 12px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        padding: 8px 12px;
        width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
        border-radius: 18px;
    }

    .hamburger {
        display: flex !important;
        padding: 5px;
        z-index: 1001;
    }

    .hamburger span {
        width: 16px;
        height: 1.5px;
        margin: 1.5px 0;
    }

    .nav-menu {
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(6px);
        margin-bottom: 6px;
        padding: 8px;
        border-radius: 10px;
        gap: 4px;
        background: rgba(13, 17, 23, 0.98);
        backdrop-filter: blur(20px);
        border: 2px solid rgba(79, 172, 254, 0.4);
        box-shadow: 0 -8px 32px rgba(79, 172, 254, 0.3), 
                    0 0 0 1px rgba(79, 172, 254, 0.1),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
        width: max-content;
        min-width: 140px;
    }

    .mobile-lang-selector {
        display: block;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    
    .nav-item {
        padding: 8px 12px;
        font-size: 9px;
        letter-spacing: 0.2px;
        border-radius: 8px;
    }
}

@media (max-width: 320px) {
    .langSelector {
        display: none;
    }

    .social-link {
        bottom: 10px;
        left: 10px;
        gap: 3px;
    }

    .social-logo {
        width: 24px;
        height: 24px;
        padding: 3px;
    }

    .social-logo img {
        image-rendering: crisp-edges;
        image-rendering: -webkit-optimize-contrast;
    }

    body {
        padding-bottom: 85px;
    }

    .nav {
        bottom: 10px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        padding: 6px 10px;
        width: calc(100vw - 20px);
        max-width: calc(100vw - 20px);
        border-radius: 16px;
    }

    .hamburger {
        display: flex !important;
        padding: 4px;
        z-index: 1001;
        width: 32px;
        height: 32px;
    }

    .hamburger span {
        width: 14px;
        height: 1.5px;
        margin: 1px 0;
    }

    .nav-menu {
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(5px);
        margin-bottom: 5px;
        padding: 6px;
        border-radius: 8px;
        gap: 3px;
        background: rgba(13, 17, 23, 0.98);
        backdrop-filter: blur(20px);
        border: 2px solid rgba(79, 172, 254, 0.4);
        box-shadow: 0 -8px 32px rgba(79, 172, 254, 0.3), 
                    0 0 0 1px rgba(79, 172, 254, 0.1),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
        width: max-content;
        min-width: 120px;
    }

    .mobile-lang-selector {
        display: block;
    }

    .mobile-lang-toggle {
        padding: 2px;
        border-radius: 10px;
        margin-bottom: 4px;
    }

    .mobile-lang-option {
        padding: 3px 6px;
        font-size: 8px;
        min-width: 24px;
        border-radius: 8px;
        letter-spacing: 0.5px;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    
    .nav-item {
        padding: 6px 10px;
        font-size: 8px;
        letter-spacing: 0.1px;
        border-radius: 6px;
    }

    * {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
}

.star {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
    contain: layout style paint;
}

.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    background: rgba(13, 17, 23, 0.5);
    border-top: 1px solid rgba(79, 172, 254, 0.2);
    backdrop-filter: blur(10px);
}

.footer p {
    color: rgba(230, 237, 243, 0.6);
    font-size: 14px;
    margin: 0;
    letter-spacing: 0.5px;
}

.footer .copyright-symbol {
    font-size: 16px;
    margin-right: 4px;
}

.footer .name {
    color: #4facfe;
    font-weight: 500;
}

@media (max-width: 768px) {
    .footer {
        padding: 15px 0;
        margin-top: 30px;
        margin-bottom: 80px;
    }

    .footer p {
        font-size: 12px;
    }

    .footer .copyright-symbol {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 12px 0;
        margin-top: 25px;
        margin-bottom: 90px;
    }

    .footer p {
        font-size: 11px;
    }

    .footer .copyright-symbol {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .footer {
        padding: 10px 0;
        margin-bottom: 95px;
    }

    .footer p {
        font-size: 10px;
    }
}

@media (max-width: 320px) {
    .footer {
        padding: 8px 0;
        margin-bottom: 85px;
    }

    .footer p {
        font-size: 9px;
    }
}

.language-particle,
.mouse-particle {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.nav-item,
.lang-option {
    contain: layout style paint;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

p {
    line-height: 1.7;
    margin-bottom: 1em;
}

a {
    color: #4facfe;
    transition: color 0.3s ease;
}

a:hover {
    color: #00ffff;
}

small, .small-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(230, 237, 243, 0.8);
}

::selection {
    background: rgba(79, 172, 254, 0.3);
    color: #ffffff;
}
