body, h1, h2, p, ul, li, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fira Mono', monospace;
    background: radial-gradient(circle at top left, #2d2424 0%, #181617 100%);
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
}

/* Pasek animowany na całą szerokość */
.animated-bar {
    position: fixed;
    left: 0;
    top: -8px;
    width: 100vw;
    height: 4px;
    background: linear-gradient(90deg, #ffa685 10%, #ffb174 91%);
    box-shadow: 0 0 24px 4px #fd7c4a99;
    z-index: 9999;
    opacity: 0.88;
    animation: moveBarVertical 2.5s linear infinite;
}

@keyframes moveBarVertical {
    0%   { top: -8px; }
    100% { top: 100vh; }
}

header {
    width: 100%;
    padding: 0.6em 0;
    background: rgba(30, 29, 29, 0.8);
    box-shadow: 0 2px 10px #1a1515;
    position: relative;
    z-index: 2;
}

.logo {
    font-family: 'Fira Mono', monospace;
    color: #fdceae;
    font-size: 1.5em;
    letter-spacing: 2px;
    margin-left: 2em;
    text-shadow: 0 0 7px #fdceae77;
    display: inline-block;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2em;
}

nav a {
    color: #ffe2d1;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    letter-spacing: 1px;
    transition: color 0.25s;
}

nav a:hover {
    color: #ff9040;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
    gap: 3em;
    margin-top: 3em;
}

.hero-text {
    background: rgba(35, 21, 21, 0.35);
    padding: 2em 2.5em;
    border-radius: 30px;
    box-shadow: 0 4px 32px #fdceae33;
    text-align: left;
    min-width: 350px;
    animation: fadeInDown 1s;
}

.hero-text h1 {
    font-size: 2.2em;
    color: #fff;
    font-family: 'Fira Mono', monospace;
    margin-bottom: 0.2em;
    letter-spacing: 2px;
    text-shadow: 0 0 16px #d87c4afc;
}

.hero-text h2 {
    color: #fd7c4a;
    font-size: 1.17em;
    margin-bottom: 0.5em;
    text-shadow: 0 0 3px #fd7c4a99;
    font-weight: bold;
}

.hero-text p {
    color: #fdfcfb;
    font-size: 0.98em;
    margin-bottom: 2em;
    letter-spacing: 1px;
}

/* Animated Button */
.animated-btn {
    background: linear-gradient(90deg, #f7ae81, #fd5d30 80%);
    color: #222;
    border: none;
    border-radius: 21px;
    padding: 0.7em 1.7em;
    font-size: 1.01em;
    box-shadow: 0 2px 18px #fdceae4a;
    margin-right: 0.8em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
    font-family: inherit;
    font-weight: 600;
    letter-spacing: 0.7px;
    z-index: 1;
}

.animated-btn:hover {
    transform: scale(1.09);
    box-shadow: 0 0 24px #fdceae88;
}

/* Avatar/Image Circle with animated glow */
.hero-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 40px 0 #fdceae88;
    border: 2.5px solid #fd7c4a;
    animation: glowing 2.2s infinite alternate;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes glowing {
    0%   { box-shadow: 0 0 24px #fdceae88; }
    80%  { box-shadow: 0 0 48px #ffb17499; }
    100% { box-shadow: 0 0 34px #f7ae8188; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
