

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    background: var(--bg);
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../../../assets/bg/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

main {
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 40px 40px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--indigo);
    border-radius: 5px;
    border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--indigo-hover);
}

::selection {
    background: var(--blue);
    color: #ffffff;
}

.section {
    margin-bottom: 120px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 48px;
    letter-spacing: -1.2px;
    line-height: 1.1;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.badge {
    background: var(--bg);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.noscript-warning{
    background-color: var(--red);
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 10px;
    color: white;
    font-weight: bold;
    gap: 10px;
}
