/* Resetowanie stylów */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

/* Hero Container */
.hero-container {
    background-image: url('hero-background.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* ========================
   HEADER STYLES
======================== */
.header {
    width: 100%;
    position: relative;
    z-index: 10;
    padding: 1rem 0;
    transition: background-color 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    width: 95%;
}

/* Logo */
.logo-container {
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo {
    height: 45px;
    display: block;
}

.logo-text {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #fff;
}

/* Nawigacja */
.nav-links {
    display: none;
    gap: 2.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 769px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Header right section */
.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Header CTA Button */
.header-cta {
    background-color: transparent;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border: 2px solid #fff;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.header-cta:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    z-index: 5;
}

.social-icons a {
    color: #CFCFCF;
    font-size: 1.5rem;
    transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
    color: #fff;
}

/* Hamburger menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    z-index: 100;
    position: relative;
}

.hamburger div {
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s linear;
}

/* Zmieniony hamburger w stanie active */
.hamburger.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active div:nth-child(2) {
    opacity: 0;
}

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

/* Styl dla scrollowanego headera */
.header.scrolled {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

/* ========================
   MOBILE MENU STYLES
======================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    padding: 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    z-index: 99;
    transition: left 0.4s ease-in-out;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.mobile-logo {
    height: 40px;
}

.close-menu {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.mobile-nav a {
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

.mobile-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s;
}

.mobile-nav a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.mobile-nav a:hover::after {
    width: 100%;
}

.mobile-cta {
    background-color: transparent;
    color: white;
    text-decoration: none;
    padding: 0.7rem 0;
    border: 2px solid #fff;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
    margin: 1rem 0 2.5rem;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.mobile-cta:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.social-icons-mobile {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons-mobile a {
    color: #CFCFCF;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons-mobile a:hover {
    color: #fff;
}

/* ========================
   HERO SECTION STYLES
======================== */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 100px);
    color: #fff;
    padding: 2rem 0;
    position: relative;
    z-index: 5;
}

.hero-content {
    max-width: 1400px;
    width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Główny tekst hero */
.hero-main {
    max-width: 600px;
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 96px;
    line-height: 1.1;
    letter-spacing: 0.07em;
    background: linear-gradient(180deg, #FFFFFF 27.5%, #7E7E7E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    line-height: 1.4;
    color: #CFCFCF;
    margin-bottom: 2.5rem;
}

.cta-button {
    background: linear-gradient(90deg, #2564D9 0%, #124198 100%);
    box-shadow: 9px 9px 29.6px rgba(0, 81, 255, 0.25);
    border-radius: 10px;
    padding: 0.85rem 2.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    gap: 8px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 9px 15px 35px rgba(0, 81, 255, 0.35);
}

/* Nowe interaktywne elementy */
.hero-elements {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Statystyki serwera */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    background: rgba(32, 34, 62, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 100, 217, 0.2);
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #2564D9;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #CACACA;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 1rem;
}

.action-card {
    background: rgba(40, 43, 77, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.action-card:hover {
    background: rgba(37, 100, 217, 0.1);
    border-color: rgba(37, 100, 217, 0.3);
    transform: translateY(-2px);
    text-decoration: none;
}

.action-card:visited {
    color: inherit;
}

.action-card:focus {
    outline: 2px solid rgba(37, 100, 217, 0.5);
    outline-offset: 2px;
}

.action-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2564D9, #124198);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
}

.action-content h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #FFFFFF;
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
}

.action-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #CACACA;
    margin: 0;
    transition: color 0.3s ease;
}

/* Status serwera */
.server-status {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #FFFFFF;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
}

.status-dot.online {
    background: #00FF1E;
    box-shadow: 0 0 10px rgba(0, 255, 30, 0.5);
}

.status-dot.online::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00FF1E;
    animation: pulse-dot 2s infinite;
}

.status-dot.offline {
    background: #FF4444;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}

.status-dot.offline::after {
    background: #FF4444;
}

.status-indicator.checking {
    opacity: 0.7;
}

.players-count.updating {
    animation: fade-pulse 2s infinite;
}

@keyframes fade-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.server-status.connecting {
    border-color: rgba(255, 193, 7, 0.3);
    background: rgba(255, 193, 7, 0.1);
}

.players-count.loading {
    animation: loading-dots 1.5s infinite;
}

@keyframes loading-dots {
    0%, 20% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

@keyframes pulse-dot {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.status-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
}

.players-count {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #2564D9;
}

.server-version {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #CACACA;
}

/* ========================
   SERVER FEATURES SECTION
======================== */
.server-features {
    padding: 6rem 0;
    background: #1a1d2e;
    position: relative;
    z-index: 2;
}

.features-container {
    max-width: 1150px;
    margin: 0 auto;
    position: relative;
    height: 602px;
}

.feature-box {
    position: absolute;
    box-sizing: border-box;
    background: #20223E;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 32px;
    overflow: hidden;
}

/* Kup własny pojazd - top left */
.feature-car {
    width: 560px;
    height: 191.1px;
    left: 0px;
    top: 0px;
}

.feature-car .feature-image {
    position: absolute;
    width: 642px;
    height: 191px;
    left: 0px;
    top: -8px;
    background: linear-gradient(0deg, rgba(24, 26, 51, 0.65), rgba(24, 26, 51, 0.65)), 
                url('car-feature.png') center/cover;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.feature-car h3 {
    position: absolute;
    width: 358px;
    height: 39px;
    left: 23px;
    top: 99px;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    color: #FFFFFF;
    margin: 0;
}

.feature-car p {
    position: absolute;
    width: 509px;
    height: 39px;
    left: 23px;
    top: 138px;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #BDBCBC;
    margin: 0;
}

/* Dołącz do gangu - top right */
.feature-gang {
    width: 560px;
    height: 290px;
    left: 595px;
    top: 0px;
}

.feature-gang .feature-image {
    position: absolute;
    width: 621px;
    height: 311px;
    left: -31px;
    top: -10px;
    background: linear-gradient(0deg, rgba(24, 26, 51, 0.65), rgba(24, 26, 51, 0.65)), 
                url('gang-feature.png') center/cover;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.feature-gang h3 {
    position: absolute;
    width: 418px;
    height: 39px;
    left: 16px;
    top: 219px;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    color: #FFFFFF;
    margin: 0;
}

.feature-gang p {
    position: absolute;
    width: 509px;
    height: 39px;
    left: 16px;
    top: 258px;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #BDBCBC;
    margin: 0;
}

/* Zarabiaj pieniądze - middle left */
.feature-money {
    width: 560px;
    height: 185.1px;
    left: 0px;
    top: 211.1px;
}

.feature-money .feature-image {
    position: absolute;
    width: 590px;
    height: 204px;
    left: -17px;
    top: -10px;
    background: linear-gradient(0deg, rgba(24, 26, 51, 0.65), rgba(24, 26, 51, 0.65)), 
                url('money-feature.png') center/cover;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.feature-money h3 {
    position: absolute;
    width: 340px;
    height: 39px;
    left: 23px;
    top: 95px;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    color: #FFFFFF;
    margin: 0;
}

.feature-money p {
    position: absolute;
    width: 509px;
    height: 39px;
    left: 23px;
    top: 134px;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #BDBCBC;
    margin: 0;
}

/* Zostań stróżem prawa - middle right */
.feature-police {
    width: 560px;
    height: 290px;
    left: 595px;
    top: 312px;
}

.feature-police .feature-image {
    position: absolute;
    width: 888px;
    height: 300px;
    left: -263px;
    top: -3px;
    background: linear-gradient(0deg, rgba(24, 26, 51, 0.65), rgba(24, 26, 51, 0.65)), 
                url('duty-feature.png') center/cover;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.feature-police h3 {
    position: absolute;
    width: 424px;
    height: 39px;
    left: 16px;
    top: 219px;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    color: #FFFFFF;
    margin: 0;
}

.feature-police p {
    position: absolute;
    width: 509px;
    height: 39px;
    left: 16px;
    top: 258px;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #BDBCBC;
    margin: 0;
}

/* Stwórz swoją organizację - bottom */
.feature-organization {
    width: 560px;
    height: 186px;
    left: 0px;
    top: 416.2px;
}

.feature-organization .feature-image {
    position: absolute;
    width: 647px;
    height: 324px;
    left: -42px;
    top: -24px;
    background: linear-gradient(0deg, rgba(24, 26, 51, 0.65), rgba(24, 26, 51, 0.65)), 
                url('org-feature.png') center/cover;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.feature-organization h3 {
    position: absolute;
    width: 509px;
    height: 39px;
    left: 23px;
    top: 115px;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    color: #FFFFFF;
    margin: 0;
}

.feature-organization p {
    position: absolute;
    width: 537px;
    height: 39px;
    left: 23px;
    top: 154px;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #BDBCBC;
    margin: 0;
}
/* ========================
   HOW TO START SECTION
======================== */
.how-to-start {
    padding: 6rem 0;
    background: #1a1d2e;
    position: relative;
    z-index: 2;
}

.how-to-start-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.how-to-start .section-header {
    text-align: left;
    margin-bottom: 4rem;
}

.how-to-start .section-header h2 {
    position: relative;
    width: 664px;
    height: 58px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.how-to-start .section-header p {
    position: relative;
    width: 422px;
    height: 24px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #BDBDBD;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    box-sizing: border-box;
    width: 366px;
    height: 475px;
    background: #20223E;
    border: 5px solid #282B4D;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 32px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 25px rgba(37, 100, 217, 0.2);
}

.step-badge {
    position: absolute;
    top: 38px;
    left: 30px;
    background: #234FFF;
    border-radius: 8px;
    padding: 8px 16px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: #FFFFFF;
}

.step-content {
    margin-top: 75px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.step-content h3 {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    color: #FFFFFF;
    margin-bottom: 2rem;
}

.step-content .highlight {
    color: #2564D9;
}

.step-content p {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    color: #C0C0C0;
    margin-bottom: auto;
    flex-grow: 1;
}

.step-button {
    background: linear-gradient(180deg, #404369 0%, #181A33 100%);
    border-radius: 20px;
    padding: 19px 30px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
}

.step-button:hover {
    background: linear-gradient(180deg, #4a4d7a 0%, #22253f 100%);
    transform: translateY(-2px);
}

.how-to-start .help-section {
    text-align: left;
    margin-top: 3rem;
}

.how-to-start .help-section p {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #BDBDBD;
}

.help-link {
    color: #2564D9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.help-link:hover {
    color: #3b82f6;
    text-decoration: underline;
}

/* ========================
   SOCIAL MEDIA SECTION
======================== */
.social-media {
    padding: 6rem 0;
    background: #1a1d2e;
    position: relative;
    z-index: 2;
}

.social-media-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.social-media .section-header {
    text-align: left;
    margin-bottom: 4rem;
}

.social-media .section-header h2 {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    color: #FFFFFF;
    margin-bottom: 1rem;
    width: 725px;
}

.social-media .section-header p {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #BDBDBD;
    width: 714px;
    margin: 0;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    max-width: 1138px;
    margin: 0 auto 3rem auto;
}

.social-card {
    position: relative;
    border-radius: 49px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.social-card:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: white;
}

.social-card.disabled {
    cursor: default;
    opacity: 0.7;
}

.social-card.disabled:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(2px);
    z-index: 1;
}

.external-link-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    z-index: 3;
    transition: background 0.3s ease;
}

.coming-soon-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 193, 7, 0.9);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    z-index: 3;
}

.social-card:hover .external-link-icon {
    background: rgba(255, 255, 255, 0.3);
}

.social-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 2;
    position: relative;
    margin-bottom: 2rem;
}

.social-logo i {
    font-size: 3rem;
}

.social-logo span {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2rem;
}

/* Discord - aktywny z licznikami */
.social-stats {
    text-align: center;
    z-index: 2;
    position: relative;
}

.social-stats .stat-number {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 64px;
    line-height: 87px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.social-stats .stat-label {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
    letter-spacing: 2px;
}

/* Pozostałe social - z komunikatami */
.social-message {
    text-align: center;
    z-index: 2;
    position: relative;
}

.message-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.message-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
}

/* Stylizacja poszczególnych kart - bez kolorowych nakładek */
.youtube-card {
    background: url('yt.png');
    background-size: cover;
    background-position: center;
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    height: 455px;
}

.discord-card {
    background: url('dc.png');
    background-size: cover;
    background-position: center;
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    height: 455px;
}

.discord-card:hover {
    box-shadow: 0 15px 35px rgba(92, 107, 192, 0.3);
}

.tiktok-card {
    background: url('tt.png');
    background-size: cover;
    background-position: center;
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    height: 203px;
}

.tiktok-card .message-text,
.instagram-card .message-text {
    font-size: 20px;
    color: #DCDCDC;
}

.tiktok-card .message-subtitle,
.instagram-card .message-subtitle {
    font-size: 14px;
    color: rgba(220, 220, 220, 0.8);
}

.instagram-card {
    background: url('ig.png');
    background-size: cover;
    background-position: center;
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    height: 203px;
}

.partner-section {
    text-align: left;
    margin-top: 3rem;
}

.partner-section p {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #BDBDBD;
    width: 510px;
}

.partner-link {
    color: #2564D9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.partner-link:hover {
    color: #3b82f6;
    text-decoration: underline;
}

/* ========================
   ANIMATIONS
======================== */
/* Animacja pulsu dla przycisku */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(41, 98, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(41, 98, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(41, 98, 255, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* ========================
   RESPONSIVE DESIGN
======================== */

/* Tablet */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .quick-actions {
        flex-direction: column;
    }
    
    .features-container {
        transform: scale(0.8);
        transform-origin: top center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: center;
    }
    
    .step-card {
        width: 100%;
        max-width: 400px;
    }
    
    .how-to-start .section-header h2 {
        width: auto;
        font-size: 36px;
    }
    
    .how-to-start .section-header p {
        width: auto;
        font-size: 18px;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .social-card {
        height: 300px !important;
    }
    
    .social-media .section-header h2,
    .social-media .section-header p,
    .partner-section p {
        width: auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        background-color: #fff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.5s ease;
        z-index: 9;
    }

    .nav-links.active {
        right: 0;
    }

    .header-cta {
        display: none;
    }
    
    .social-icons {
        display: none;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .server-status {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .server-features {
        padding: 4rem 0;
    }
    
    .features-container {
        position: relative;
        height: auto;
        transform: none;
    }
    
    .feature-box {
        position: relative;
        margin-bottom: 3rem;
        width: 100%;
        padding: 0 1rem;
    }
    
    .feature-image {
        position: relative !important;
        width: 100% !important;
        height: 200px !important;
        left: 0 !important;
        top: 0 !important;
        margin-bottom: 1rem;
    }
    
    .feature-box h3 {
        position: relative !important;
        width: auto !important;
        height: auto !important;
        left: 0 !important;
        top: 0 !important;
        font-size: 24px !important;
        margin-bottom: 0.5rem;
    }
    
    .feature-box p {
        position: relative !important;
        width: auto !important;
        height: auto !important;
        left: 0 !important;
        top: 0 !important;
        font-size: 14px !important;
    }
    
    .how-to-start {
        padding: 4rem 0;
    }
    
    .how-to-start-container {
        padding: 0 1rem;
    }
    
    .how-to-start .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .how-to-start .section-header h2 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .how-to-start .section-header p {
        font-size: 16px;
    }
    
    .step-card {
        height: auto;
        padding: 1.5rem;
        min-height: 400px;
    }
    
    .step-content h3 {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .step-content p {
        font-size: 18px;
        line-height: 1.4;
    }
    
    .step-button {
        font-size: 16px;
        padding: 15px 25px;
    }
    
    .social-media {
        padding: 4rem 0;
    }
    
    .social-media-container {
        padding: 0 1rem;
    }
    
    .social-media .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .social-media .section-header h2 {
        font-size: 32px;
        line-height: 1.2;
        width: auto;
    }
    
    .social-media .section-header p {
        font-size: 16px;
        width: auto;
    }
    
    .partner-section {
        text-align: center;
    }
    
    .partner-section p {
        width: auto;
    }
    
    .social-card {
        padding: 2rem 1.5rem;
        height: 250px !important;
    }
    
    .social-logo i {
        font-size: 2rem;
    }
    
    .social-logo span {
        font-size: 1.5rem;
    }
    
    .social-stats .stat-number {
        font-size: 48px !important;
        line-height: 1.2;
    }
    
    .social-stats .stat-label {
        font-size: 14px !important;
    }
    
    .message-text {
        font-size: 18px !important;
    }
    
    .message-subtitle {
        font-size: 13px !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .header-container {
        padding: 0 0.5rem;
        width: 98%;
    }
    
    .logo {
        height: 40px;
    }
    
    .hero {
        padding: 1rem 0;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .action-card {
        padding: 1rem;
    }
    
    .action-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .features-container {
        padding: 0 0.5rem;
    }
    
    .step-card {
        padding: 1rem;
        min-height: 350px;
    }
    
    .step-content {
        margin-top: 60px;
    }
    
    .step-content h3 {
        font-size: 24px;
    }
    
    .step-content p {
        font-size: 16px;
    }
    
    .step-button {
        font-size: 14px;
        padding: 12px 20px;
    }
}

/* Very Small Mobile */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .cta-button {
        font-size: 14px;
        padding: 0.7rem 1.5rem;
    }
}

/* Dodatkowe style */
.no-scroll {
    overflow: hidden;
}

/* Poprawki dla urządzeń o dużej wysokości */
@media (min-height: 900px) {
    .hero {
        min-height: calc(100vh - 120px);
    }
}

/* Poprawki dla urządzeń o bardzo małej wysokości */
@media (max-height: 600px) {
    .hero {
        min-height: calc(100vh - 60px);
        padding: 1rem 0;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
}

/* ========================
   TEAM SECTION
======================== */
.team-section {
    padding: 6rem 0;
    background: #1a1d2e;
    position: relative;
    z-index: 2;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.team-section .section-header {
    text-align: left;
    margin-bottom: 4rem;
}

.team-section .section-header h2 {
    width: 788px;
    height: 58px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.team-section .section-header p {
    width: 590px;
    height: 24px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #BDBDBD;
}

/* Główni twórcy - 3 karty */
.main-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.team-card {
    box-sizing: border-box;
    width: 367px;
    height: 475px;
    background: #20223E;
    border: 5px solid #282B4D;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 32px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 25px rgba(37, 100, 217, 0.2);
}

.team-avatar {
    width: 157px;
    height: 156px;
    border: 5px solid #4A4E7A;
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.team-description {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: auto;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.discord-link {
    background: linear-gradient(180deg, #404369 0%, #181A33 100%);
    border-radius: 20px;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.discord-link:hover {
    background: linear-gradient(180deg, #4a4d7a 0%, #22253f 100%);
    transform: translateY(-2px);
    text-decoration: none;
    color: #FFFFFF;
}

/* Pozostali twórcy */
.other-contributors {
    margin-top: 2rem;
}

.contributors-header {
    margin-bottom: 2rem;
}

.contributors-header h2 {
    width: 719px;
    height: 58px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.contributors-header p {
    width: 567px;
    height: 24px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #BDBDBD;
}

.contributors-list {
    box-sizing: border-box;
    width: 1285px;
    background: #20223E;
    border: 5px solid #282B4D;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 32px;
    padding: 2rem;
    max-height: 400px;
    overflow-y: auto;
}

/* Custom scrollbar */
.contributors-list::-webkit-scrollbar {
    width: 8px;
}

.contributors-list::-webkit-scrollbar-track {
    background: #252745;
    border-radius: 4px;
}

.contributors-list::-webkit-scrollbar-thumb {
    background: #505371;
    border-radius: 4px;
}

.contributors-list::-webkit-scrollbar-thumb:hover {
    background: #6a6d8a;
}

.contributor-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.contributor-name {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
}

.contributor-role {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-align: right;
    color: #FFFFFF;
}

.contributor-separator {
    width: 100%;
    height: 0px;
    border: 2.5px solid #505371;
    margin: 0.5rem 0;
}

/* Responsywność */
@media (max-width: 1024px) {
    .main-team-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .team-card {
        width: 100%;
        max-width: 400px;
    }
    
    .team-section .section-header h2,
    .team-section .section-header p,
    .contributors-header h2,
    .contributors-header p {
        width: auto;
    }
    
    .contributors-list {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 4rem 0;
    }
    
    .team-container {
        padding: 0 1rem;
    }
    
    .team-section .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .team-section .section-header h2 {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .team-section .section-header p {
        font-size: 16px;
    }
    
    .contributors-header {
        text-align: center;
    }
    
    .contributors-header h2 {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .contributors-header p {
        font-size: 16px;
    }
    
    .team-card {
        height: auto;
        padding: 1.5rem;
        min-height: 400px;
    }
    
    .team-card h3 {
        font-size: 28px;
    }
    
    .team-description {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .contributors-list {
        max-height: 300px;
        padding: 1.5rem;
    }
    
    .contributor-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.8rem 0;
    }
    
    .contributor-role {
        text-align: left;
        font-size: 14px;
        color: #BDBDBD;
    }
}

@media (max-width: 480px) {
    .team-card {
        padding: 1rem;
    }
    
    .team-avatar {
        width: 120px;
        height: 120px;
    }
    
    .team-card h3 {
        font-size: 24px;
    }
    
    .contributors-list {
        max-height: 250px;
        padding: 1rem;
    }
}

/* ========================
   FOOTER SECTION
======================== */
.footer {
    background: #20223E;
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    min-height: 120px;
}

/* Lewa strona - logo i kontakt */
.footer-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    width: 104.72px;
    height: 92.17px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #BDBDBD;
    margin: 0;
}

.contact-email {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-decoration: underline;
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: #2564D9;
    text-decoration: underline;
}

/* Prawa strona - social i linki */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-social a {
    color: #FFFFFF;
    font-size: 16px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    color: #2564D9;
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.footer-link {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #BDBDBD;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FFFFFF;
}

/* Copyright sekcja */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-project {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    color: #989898;
    margin: 0;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    text-align: left;
    color: #989898;
    margin: 0;
}

/* Responsywność */
@media (max-width: 1024px) {
    .footer-main {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-left {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .footer-right {
        align-items: center;
    }
    
    .footer-links {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-main {
        margin-bottom: 2rem;
        gap: 2rem;
    }
    
    .footer-logo {
        width: 80px;
        height: 70px;
    }
    
    .contact-label,
    .contact-email,
    .footer-link {
        font-size: 16px;
    }
    
    .footer-social {
        gap: 1rem;
    }
    
    .footer-social a {
        font-size: 14px;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-project,
    .footer-copyright {
        font-size: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-left {
        gap: 1rem;
    }
    
    .footer-logo {
        width: 60px;
        height: 53px;
    }
    
    .contact-label,
    .contact-email,
    .footer-link {
        font-size: 14px;
    }
    
    .footer-social {
        gap: 0.8rem;
    }
    
    .footer-copyright {
        font-size: 11px;
        line-height: 1.4;
    }
}

