/* Reset i import fontów */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Inter:wght@400;600&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background-color: #0b0b0f; 
    color: #f1f1f1;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Montserrat', sans-serif; }

.highlight {
    color: #ff6b00; 
    text-shadow: 0 0 15px rgba(255, 107, 0, 0.8);
}

/* Przyciski */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    margin: 10px;
    text-decoration: none;
    backdrop-filter: blur(5px);
}

.btn-primary {
    background: rgba(255, 107, 0, 0.85);
    color: #fff;
    border: 1px solid #ff6b00;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.btn-primary:hover {
    background: #ff6b00;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.8);
}

.btn-secondary {
    background: rgba(0, 229, 255, 0.1);
    color: #00e5ff;
    border: 2px solid #00e5ff;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(0, 229, 255, 0.25);
    color: #fff;
    text-shadow: 0 0 8px #00e5ff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.6);
}

.btn-discord {
    background: rgba(88, 101, 242, 0.85);
    color: #fff;
    border: 1px solid #5865F2;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.5);
}

.btn-discord:hover {
    background: #5865F2;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.8);
}

/* Sekcja Główna - Minimalistyczny, subtelny Glassmorphism */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    background: rgba(0, 0, 0, 0.25); /* Maksymalnie cienkie, czarne szkiełko */
    padding: 60px 40px;
    border-radius: 20px;
    backdrop-filter: blur(4px); /* Lekkie rozmycie, żeby tło było widoczne */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    text-shadow: 3px 3px 15px rgba(0,0,0,1); /* Mocny cień dla czytelności na tle miasta */
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 650px;
    margin: 0 auto 30px auto;
    color: #f1f1f1;
    text-shadow: 2px 2px 10px rgba(0,0,0,1);
}

/* Sekcja O Mnie */
.about {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 100px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-img img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ff6b00;
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.5);
    animation: float 4s ease-in-out infinite;
}

.about-text {
    background: transparent;
    padding: 20px;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 1.15rem;
    color: #ddd;
}

/* Sekcja Serie */
.series {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(to bottom, #0b0b0f, #14141e, #0b0b0f);
}

.series h2 {
    font-size: 3rem;
    margin-bottom: 60px;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    width: 350px;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 107, 0, 0.2);
    border-color: rgba(255, 107, 0, 0.5);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover img {
    transform: scale(1.08);
}

.card h3 {
    padding: 25px 20px 10px;
    color: #ff6b00;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

.card p {
    padding: 0 20px 25px;
    color: #bbb;
}

/* Sekcja Discord */
.discord {
    padding: 150px 20px;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

.discord-content {
    background: rgba(0, 0, 0, 0.3);
    padding: 60px 40px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(88, 101, 242, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.discord-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 0 25px rgba(88, 101, 242, 1);
}

.discord-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #f1f1f1;
    text-shadow: 2px 2px 10px rgba(0,0,0,1);
}

/* Stopka */
footer {
    text-align: center;
    padding: 50px 20px;
    background: #050508;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links { margin-top: 20px; }

.footer-links a {
    color: #00e5ff;
    margin: 0 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    text-shadow: 0 0 15px #00e5ff;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .about { flex-direction: column; text-align: center; padding: 60px 20px; }
    .hero-content h1 { font-size: 2.8rem; }
    .discord-content h2 { font-size: 2.5rem; }
    .hero, .discord { background-attachment: scroll; }
}