        :root {
            --pokemon-red: #ff0000;
            --pokemon-blue: #3b4cca;
            --pokemon-yellow: #ffde00;
            --pokemon-dark: #2a2a2a;
        }
        
        body {
            background: url('https://i.imgur.com/ryAywRk.png') scroll;
            background-size: cover;
            font-family: 'Pixelify Sans', cursive;
            color: white;
            min-height: 100vh;
            position: relative;
            padding-bottom: 60px;
         background-repeat: no-repeat; 
        }
        
        .pokemon-font {
            font-family: 'Press Start 2P', cursive;
            text-shadow: 3px 3px 0 var(--pokemon-dark);
        }
        
        header {
            background: linear-gradient(135deg, var(--pokemon-blue), var(--pokemon-dark));
            border-bottom: 4px solid var(--pokemon-yellow);
        }
        
        .nav-link {
            color: white !important;
            position: relative;
            padding: 10px 15px;
            transition: all 0.3s;
        }
        
        .nav-link:hover {
            color: var(--pokemon-yellow) !important;
            transform: translateY(-3px);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--pokemon-yellow);
            transition: width 0.3s;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .card {
            background: rgba(0, 0, 0, 0.7);
            border: 2px solid var(--pokemon-yellow);
            border-radius: 10px;
            transition: all 0.3s;
            overflow: hidden;
            color: white;
        }
        
        .card:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 10px 20px rgba(255, 222, 0, 0.3);
        }
        
        .card-title {
            color: var(--pokemon-yellow);
            font-weight: bold;
        }
        
        .btn-pokemon {
            background: var(--pokemon-red);
            color: white;
            border: none;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .btn-pokemon:hover {
            background: var(--pokemon-blue);
            color: white;
            transform: translateY(-3px);
        }
        
        .btn-pokemon::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }
        
        .btn-pokemon:hover::before {
            left: 100%;
        }
        
        .news-item {
            background: rgba(59, 76, 202, 0.8);
            border-left: 5px solid var(--pokemon-red);
            color: white;
        }
        
        .list-group-item {
            background: rgba(0, 0, 0, 0.6);
            color: white;
            border: 1px solid var(--pokemon-yellow);
        }
        
        .list-group-item:nth-child(1) {
            background: rgba(255, 222, 0, 0.2);
        }
        
        .list-group-item:nth-child(2) {
            background: rgba(192, 192, 192, 0.2);
        }
        
        .list-group-item:nth-child(3) {
            background: rgba(205, 127, 50, 0.2);
        }
        
        footer {
            background: linear-gradient(135deg, var(--pokemon-blue), var(--pokemon-dark));
            border-top: 3px solid var(--pokemon-yellow);
            padding: 15px 0;
            position: fixed;
            bottom: 0;
            width: 100%;
        }
        
        .social-icon {
            font-size: 1.5rem;
            margin: 0 10px;
            color: white;
            transition: all 0.3s;
        }
        
        .social-icon:hover {
            color: var(--pokemon-yellow);
            transform: scale(1.2) rotate(10deg);
        }
        
        .pokeball-divider {
            text-align: center;
            margin: 30px 0;
        }
        
        .pokeball-divider img {
            width: 50px;
            height: 50px;
            animation: spin 5s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 30px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--pokemon-red), var(--pokemon-yellow), var(--pokemon-blue));
        }
        
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-color: var(--pokemon-red);
            border-radius: 50%;
            padding: 15px;
        }
        
        /* Nowe style dla układu dwukolumnowego */
        .sticky-sidebar {
            position: sticky;
            top: 20px;
        }
        
        .hero-container {
            background: rgba(0,0,0,0.7) !important;
            border: 3px solid var(--pokemon-yellow) !important;
        }
        
        .feature-card {
            background: rgba(0, 0, 0, 0.7) !important;
        }

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.5s ease;
}