/* Import czcionki Open Sans */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

/* Reset i podstawowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00d9ff;
    --secondary-color: #0ea2d8;
    --dark-bg: #0a0e1a;
    --darker-bg: #050810;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --green-btn: #4ade80;
    --purple-btn: #8b5cf6;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--darker-bg);
    color: var(--text-light);
    overflow-x: hidden;
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Left Animation */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade In Right Animation */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale In Animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Reveal Classes */
.scroll-reveal {
    opacity: 0;
    transition: none;
}

.scroll-reveal.revealed {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.revealed {
    animation-name: fadeInUp;
}

.fade-left.revealed {
    animation-name: fadeInLeft;
}

.fade-right.revealed {
    animation-name: fadeInRight;
}

.scale-in.revealed {
    animation-name: scaleIn;
}

/* Stagger delays for multiple items */
.scroll-reveal.delay-1 { animation-delay: 0.1s; }
.scroll-reveal.delay-2 { animation-delay: 0.2s; }
.scroll-reveal.delay-3 { animation-delay: 0.3s; }
.scroll-reveal.delay-4 { animation-delay: 0.4s; }
.scroll-reveal.delay-5 { animation-delay: 0.5s; }
.scroll-reveal.delay-6 { animation-delay: 0.6s; }


.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation wrapper - belka na całą szerokość */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 122px;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 14, 26, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

/* Container navbara - ograniczona szerokość */
.navbar .container {
    position: relative;
    height: 122px;
    display: flex;
    align-items: center;
}

/* Zawartość navbara */
.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
    transition: filter 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    text-align: right;
}


.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

/* Animated underline - starts from center and expands */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: #ffffff;
    font-weight: 700;
}

.nav-link.active::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    width: 132px;
    height: 66px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

/* Ripple effect on hover */
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-play {
    background: rgba(108, 204, 103, 0.5);
    color: #fff;
    border: 2px solid #6CCC67;
}

.btn-play img {
    width: 28px;
    height: 22px;
    transition: transform 0.3s ease;
}

.btn-play:hover {
    background: rgba(108, 204, 103, 0.7);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(108, 204, 103, 0.5);
}

.btn-play:hover img {
    transform: scale(1.1);
}

.btn-discord {
    background: rgba(88, 101, 242, 0.5);
    color: #fff;
    border: 2px solid #5865F2;
}

.btn-discord img {
    width: 24px;
    height: 21px;
    transition: transform 0.3s ease;
}

.btn-discord:hover {
    background: rgba(88, 101, 242, 0.7);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.5);
}

.btn-discord:hover img {
    transform: scale(1.1) rotate(5deg);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 122px;
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border-bottom: 2px solid rgba(0, 217, 255, 0.2);
    max-height: calc(100vh - 122px);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-list li a {
    display: block;
    padding: 15px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

/* Slide in effect from left */
.mobile-menu-list li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: #00D9FF;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-list li a:hover::before,
.mobile-menu-list li a.active::before {
    height: 100%;
}

.mobile-menu-list li a:hover,
.mobile-menu-list li a.active {
    background: rgba(0, 217, 255, 0.1);
    color: #00D9FF;
    border-left-color: transparent;
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.2);
}

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-buttons .btn {
    width: 100%;
    height: 50px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 20px;
}

.stat-box {
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    padding: 20px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(0, 217, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #6CCC67;
    margin-bottom: 5px;
}

/* Kolory dla poszczególnych stat-boxów */
.stat-box:nth-child(1) .stat-number {
    color: #6CCC67; /* Zielony dla Graczy Online */
}

.stat-box:nth-child(2) .stat-number {
    color: #B9A082; /* Brązowy dla Slotów (Uptime) */
}

.stat-box:nth-child(3) .stat-number {
    color: #00D9FF; /* Cyan dla Ping */
}

.stat-label {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.character-placeholder {
    width: 500px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
    z-index: 1;
}

.scroll-arrow {
    margin-top: 10px;
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .server-stats-box {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .stats-boxes {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .connection-content {
        flex-direction: column;
        text-align: center;
    }

    .connection-left,
    .connection-right {
        max-width: 100%;
    }
}

/* Mobile - 768px */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Navbar */
    .navbar {
        height: 80px;
    }

    .navbar .container {
        height: 80px;
    }

    .logo img {
        height: 40px;
    }

    .nav-menu {
        display: none;
    }

    .nav-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        top: 80px;
        max-height: calc(100vh - 80px);
    }

    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .stat-box {
        width: 100%;
        padding: 20px;
    }

    .stat-value {
        font-size: 28px;
    }

    .character-placeholder {
        width: 100%;
        height: 300px;
    }

    /* About Section */
    .section-title-center {
        font-size: 24px;
    }

    .about-heading {
        font-size: 28px;
        flex-direction: column;
        text-align: center;
    }

    .about-icon-inline {
        width: 35px;
        height: 33px;
    }

    .about-text {
        font-size: 14px;
    }

    .features-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .feature-item {
        font-size: 13px;
    }

    .feature-dot {
        width: 6px;
        height: 6px;
    }

    .server-stats-box {
        padding: 25px;
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-item {
        text-align: center;
    }

    .stat-item-value {
        font-size: 36px;
    }

    .stat-item-label {
        font-size: 14px;
    }

    .stats-boxes {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-box-large {
        padding: 15px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 10px;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 25px;
    }

    .feature-icon-box {
        width: 60px;
        height: 60px;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
    }

    .feature-title {
        font-size: 16px;
    }

    /* Steps - Jak dołączyć */
    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .steps-container::before {
        display: none;
    }

    .title-separator::before,
    .title-separator::after {
        display: none;
    }

    .step-card {
        padding: 25px 20px;
    }

    .step-number {
        font-size: 32px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-desc {
        font-size: 13px;
    }

    /* Connection Section */
    .connection-box {
        padding: 30px 25px;
    }

    .connection-title {
        font-size: 28px;
    }

    .ip-display {
        font-size: 20px;
        padding: 15px 20px;
    }

    .btn-copy {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-left {
        flex-direction: column;
        gap: 15px;
    }

    .footer-bottom-right {
        flex-direction: column;
        gap: 15px;
    }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .section-title-center {
        font-size: 20px;
    }

    .about-heading {
        font-size: 24px;
    }

    .about-text {
        font-size: 13px;
    }

    .features-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .feature-item {
        font-size: 11px;
    }

    .server-stats-box {
        padding: 20px;
    }

    .stats-boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-box-large {
        padding: 12px;
    }

    .stat-number {
        font-size: 18px;
    }

    .stat-label {
        font-size: 9px;
    }

    .stat-item-value {
        font-size: 32px;
    }

    .stat-item-label {
        font-size: 13px;
    }

    .steps-container {
        gap: 15px;
    }

    .step-card {
        padding: 20px 15px;
    }

    .step-number {
        font-size: 28px;
    }

    .step-title {
        font-size: 16px;
    }

    .step-desc {
        font-size: 12px;
    }

    .connection-title {
        font-size: 24px;
    }

    .ip-display {
        font-size: 16px;
        padding: 12px 15px;
    }

    .stat-value {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }
}

/* O Naszym Serwerze Section */
.about-server {
    padding: 60px 0;
    background: var(--darker-bg);
}

.section-title-center {
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    margin-bottom: 45px;
}

.about-content {
    text-align: left;
    max-width: 900px;
}

.about-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-icon-inline {
    width: 45px;
    height: 43px;
    flex-shrink: 0;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: #00D9FF;
    border-radius: 50%;
    flex-shrink: 0;
}

.server-stats-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    overflow: hidden;
}

.server-stats-box::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: 25%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 162, 216, 0.3) 0%, rgba(14, 162, 216, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.stats-box-header {
    text-align: left;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.stats-box-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
}

.stats-box-header p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 250px;
}

.stats-boxes {
    display: flex;
    gap: 15px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.stat-box-large {
    background: transparent;
    border: 1px solid rgba(0, 217, 255, 0.4);
    border-radius: 8px;
    padding: 15px 20px;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
}

.stat-box-large:hover {
    transform: translateY(-3px);
    border-color: #00D9FF;
    background: rgba(0, 217, 255, 0.05);
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #00D9FF;
    margin-bottom: 8px;
}

.stat-box-large:nth-child(1) .stat-number {
    color: #00D9FF;
}

.stat-box-large:nth-child(2) .stat-number {
    color: #6CCC67;
}

.stat-box-large:nth-child(3) .stat-number {
    color: #974BFF;
}

.stat-box-large:nth-child(4) .stat-number {
    color: #B9A082;
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
}

/* Jak Dołączyć Section */
.how-to-join {
    padding: 80px 0 60px;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.how-to-join::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 162, 216, 0.25) 0%, rgba(14, 162, 216, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.title-separator {
    width: 100%;
    height: 2px;
    background: #0F2636;
    margin: 40px 0 50px;
    position: relative;
}

.title-separator::before,
.title-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 8px;
    background: #0EA2D8;
    border-radius: 10px;
}

.title-separator::before {
    left: 16.66%;
}

.title-separator::after {
    left: 50%;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: -54px;
    left: 83.33%;
    transform: translateX(-50%);
    width: 100px;
    height: 8px;
    background: #0EA2D8;
    border-radius: 10px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-bg-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00D9FF, transparent);
    z-index: 1;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: #00D9FF;
    background: rgba(0, 217, 255, 0.05);
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.step-number-badge {
    width: 32px;
    height: 32px;
    background: #00D9FF;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.step-button {
    background: rgba(0, 217, 255, 0.15);
    border: 1px solid rgba(0, 217, 255, 0.4);
    border-radius: 6px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #00D9FF;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.step-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.info-boxes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.info-warning {
    background: rgba(237, 183, 68, 0.5);
    border: 1px solid rgba(237, 183, 68, 1);
    border-radius: 6px;
    padding: 20px 30px;
    font-weight: 600;
    color: #fff;
    width: 207px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-sizing: border-box;
}

.info-icon {
    width: 20px;
    height: 24px;
    flex-shrink: 0;
}

/* Regulamin Serwera Section */
.rules-section {
    padding: 80px 0;
    background: rgba(2, 15, 20, 1);
}

.rules-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.rule-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    padding: 30px 40px;
    transition: all 0.3s ease;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.rule-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rule-column:last-child {
    padding-top: 44px;
}

.rule-box:hover {
    border-color: #00D9FF;
    background: rgba(0, 217, 255, 0.05);
}

.rule-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
}

.rule-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.rule-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #00D9FF;
    margin: 0;
}

.rule-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rule-list-right {
    margin-top: 0;
}

.rule-list li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
}

.rule-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #00D9FF;
    border-radius: 50%;
}

/* Penalty Boxes */
.penalty-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.penalty-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    border-radius: 8px;
    border: 2px solid;
    transition: all 0.3s ease;
}

.penalty-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.penalty-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.penalty-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 3px 0;
    color: #fff;
}

.penalty-content p {
    font-size: 12px;
    margin: 0;
    opacity: 0.85;
}

.penalty-warn {
    background: rgba(212, 165, 116, 0.15);
    border-color: rgba(212, 165, 116, 1);
}

.penalty-warn .penalty-content p {
    color: rgba(212, 165, 116, 1);
}

.penalty-kick {
    background: rgba(204, 102, 51, 0.15);
    border-color: rgba(204, 102, 51, 1);
}

.penalty-kick .penalty-content p {
    color: rgba(204, 102, 51, 1);
}

.penalty-ban {
    background: rgba(153, 51, 51, 0.15);
    border-color: rgba(153, 51, 51, 1);
}

.penalty-ban .penalty-content p {
    color: rgba(153, 51, 51, 1);
}

.info-dot {
    width: 8px;
    height: 8px;
    background: #00D9FF;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===========================
   UNIKALNE FUNKCJE SECTION
   =========================== */

.features-section {
    padding: 80px 0;
    background: #03121D;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    left: -200px;
    bottom: -100px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.25) 0%, rgba(0, 217, 255, 0.12) 30%, rgba(0, 217, 255, 0.05) 50%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

/* ===========================
   FAQ SECTION
   =========================== */

.faq-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.faq-list {
    margin-top: 50px;
}

.faq-item {
    background: rgba(0, 217, 255, 0.03);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.1);
}

.faq-item-active {
    background: rgba(0, 217, 255, 0.05);
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 217, 255, 0.02);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #00D9FF;
    margin: 0;
}

.faq-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.3s ease;
    border-radius: 50%;
}

.faq-toggle:hover {
    background: rgba(0, 217, 255, 0.1);
}

.faq-item-active .faq-toggle {
    transform: rotate(180deg);
    background: rgba(0, 217, 255, 0.15);
}

.faq-arrow {
    width: 24px;
    height: 24px;
    transition: filter 0.3s ease;
}

.faq-item-active .faq-arrow {
    filter: brightness(1.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.1s,
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.faq-item-active .faq-answer p {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background: #0A0E1A;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    left: -250px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, rgba(0, 217, 255, 0.08) 30%, rgba(0, 217, 255, 0.03) 50%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about {
    max-width: 400px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 15px 0;
}

.footer-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00D9FF;
}

.footer-ip {
    font-size: 14px;
    color: #00D9FF;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.footer-online {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-icon {
    width: 24px;
    height: 24px;
}

.footer-bottom-left p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-bottom-right p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.designer-name {
    color: #00D9FF;
    font-weight: 600;
}

.scroll-top {
    width: 40px;
    height: 40px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-top:hover {
    background: rgba(0, 217, 255, 0.2);
    transform: translateY(-3px);
}

.feature-card {
    background: rgba(0, 217, 255, 0.03);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00D9FF, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    background: rgba(0, 217, 255, 0.06);
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-5px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-box {
    background: rgba(0, 217, 255, 0.15);
    transform: scale(1.05);
}

.feature-icon {
    width: 40px;
    height: 40px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #00D9FF;
    margin: 0;
}

.feature-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}



