* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #333;
  background-color: #fff;
}

img, svg, video {
  max-width: 100%;
  display: block;
}

button, input, select, textarea {
  font: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
}

/* Header styles */
/* Base Styles & Variables */
    :root {
        --diablo-red: #c41212;
        --diablo-dark: #1a0a0a;
        --diablo-darker: #0a0505;
        --diablo-accent: #ff6600;
        --diablo-gray: #3a3a3a;
        --diablo-light: #c9b292;
        --header-height: 80px;
        --border-glow: 0 0 8px rgba(196, 18, 18, 0.6);
        --text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }

    /* Header Base Styles */
    .diablo-header {
        position: sticky;
        top: 0;
        width: 100%;
        z-index: 100;
        background: linear-gradient(to bottom, var(--diablo-darker) 0%, var(--diablo-dark) 100%);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
        border-bottom: 1px solid var(--diablo-red);
    }

    .header-container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        height: var(--header-height);
    }

    /* Logo Styles */
    .logo-container {
        display: flex;
        align-items: center;
    }

    .logo {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: var(--diablo-light);
        transition: all 0.3s ease;
    }

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

    .logo-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: var(--diablo-red);
        color: var(--diablo-light);
        border-radius: 4px;
        font-family: 'Times New Roman', serif;
        font-size: 22px;
        font-weight: bold;
        box-shadow: var(--border-glow);
        text-shadow: var(--text-shadow);
        position: relative;
        overflow: hidden;
    }

    .logo-icon:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: rgba(255, 255, 255, 0.4);
    }

    .logo-text {
        margin-left: 10px;
        font-family: 'Times New Roman', serif;
        font-size: 22px;
        font-weight: bold;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-shadow: var(--text-shadow);
        background: linear-gradient(to bottom, var(--diablo-light) 0%, #8a7a65 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* Desktop Navigation */
    .desktop-nav {
        margin-left: 40px;
    }

    .nav-list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-item {
        position: relative;
        margin: 0 2px;
    }

    .nav-link {
        display: block;
        padding: 10px 15px;
        color: var(--diablo-light);
        text-decoration: none;
        font-family: 'Arial', sans-serif;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        position: relative;
        text-shadow: var(--text-shadow);
    }

    .nav-link:hover {
        color: #ffffff;
    }

    .nav-link:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--diablo-accent);
        transition: all 0.3s ease;
        transform: translateX(-50%);
        box-shadow: var(--border-glow);
    }

    .nav-link:hover:before {
        width: 70%;
    }

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

    .nav-link.active:before {
        width: 70%;
        background: var(--diablo-red);
    }

    /* Header Actions */
    .header-actions {
        display: flex;
        align-items: center;
    }

    .action-button {
        display: inline-block;
        padding: 8px 16px;
        background: var(--diablo-red);
        color: #ffffff;
        text-decoration: none;
        font-family: 'Arial', sans-serif;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        border-radius: 4px;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: var(--border-glow), 0 2px 4px rgba(0, 0, 0, 0.3);
        text-shadow: var(--text-shadow);
        position: relative;
        overflow: hidden;
    }

    .action-button:before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
        transition: all 0.5s ease;
    }

    .action-button:hover {
        background: #e01818;
        transform: translateY(-2px);
        box-shadow: var(--border-glow), 0 4px 8px rgba(0, 0, 0, 0.4);
    }

    .action-button:hover:before {
        left: 100%;
    }

    /* Mobile Toggle Button */
    .mobile-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 101;
    }

    .toggle-line {
        display: block;
        width: 24px;
        height: 2px;
        margin: 5px 0;
        background-color: var(--diablo-light);
        transition: all 0.3s ease;
    }

    /* Mobile Menu */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 5, 5, 0.98);
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        display: none;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        cursor: pointer;
        width: 30px;
        height: 30px;
    }

    .close-icon {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
    }

    .close-icon:before,
    .close-icon:after {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--diablo-light);
    }

    .close-icon:before {
        transform: rotate(45deg);
    }

    .close-icon:after {
        transform: rotate(-45deg);
    }

    .mobile-menu-container {
        padding: 80px 30px 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mobile-logo {
        display: flex;
        align-items: center;
        margin-bottom: 40px;
    }

    .mobile-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .mobile-nav-item {
        margin: 15px 0;
    }

    .mobile-nav-link {
        display: block;
        padding: 12px 0;
        color: var(--diablo-light);
        text-decoration: none;
        font-family: 'Arial', sans-serif;
        font-size: 18px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        position: relative;
        text-shadow: var(--text-shadow);
    }

    .mobile-nav-link:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background-color: var(--diablo-red);
        transition: all 0.3s ease;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link.active {
        color: #ffffff;
    }

    .mobile-nav-link:hover:after,
    .mobile-nav-link.active:after {
        width: 30%;
    }

    .mobile-actions {
        margin-top: 40px;
    }

    .mobile-action-button {
        display: inline-block;
        padding: 12px 30px;
        background: var(--diablo-red);
        color: #ffffff;
        text-decoration: none;
        font-family: 'Arial', sans-serif;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        border-radius: 4px;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: var(--border-glow);
        text-shadow: var(--text-shadow);
    }

    .mobile-action-button:hover {
        background: #e01818;
        transform: translateY(-2px);
    }

    /* Responsive Styles */
    @media (max-width: 1024px) {
        .nav-link {
            padding: 10px 12px;
            font-size: 13px;
        }
    }

    @media (max-width: 768px) {
        .header-container {
            grid-template-columns: auto auto;
            justify-content: space-between;
        }

        .desktop-nav, 
        .header-actions {
            display: none;
        }

        .mobile-toggle {
            display: block;
        }

        .mobile-menu {
            display: block;
        }

        .logo-text {
            font-size: 20px;
        }
    }

/* Footer styles */
/* Podstawowe style */
    .footer-container {
        width: 100%;
        background: linear-gradient(135deg, #1a0b12 0%, #2d0f1a 50%, #1a0b12 100%);
        color: #bb9b78;
        font-family: 'Cinzel', 'Times New Roman', serif;
        padding: 4rem 2rem 2rem;
        position: relative;
        overflow: hidden;
        border-top: 1px solid #6e2b3b;
    }
    
    .footer-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, #c41f3b, transparent);
    }
    
    .footer-main {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
        max-width: 1400px;
        margin: 0 auto 3rem;
    }
    
    .footer-section {
        position: relative;
    }
    
    .footer-section::after {
        content: '';
        position: absolute;
        bottom: -1.5rem;
        left: 0;
        width: 60px;
        height: 2px;
        background: #6e2b3b;
        opacity: 0.7;
    }
    
    /* Nagłówki */
    .footer-heading {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: #d3a86a;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        padding-bottom: 0.8rem;
    }
    
    .footer-heading::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: #c41f3b;
    }
    
    /* Tekst */
    .footer-text {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #a78e6d;
        margin-bottom: 1.5rem;
    }
    
    /* Listy nawigacyjne */
    .footer-nav-list,
    .footer-popular-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-nav-item,
    .footer-popular-item {
        margin-bottom: 0.8rem;
        position: relative;
    }
    
    .footer-link {
        color: #a78e6d;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.95rem;
        display: inline-block;
        padding-left: 1rem;
        position: relative;
    }
    
    .footer-link::before {
        content: '•';
        position: absolute;
        left: 0;
        color: #c41f3b;
    }
    
    .footer-link:hover {
        color: #d3a86a;
        transform: translateX(5px);
    }
    
    .footer-link:hover::before {
        color: #ff4655;
    }
    
    /* Media społecznościowe */
    .footer-social {
        display: flex;
        gap: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .footer-social-item {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(110, 43, 59, 0.3);
        border: 1px solid #6e2b3b;
        border-radius: 5px;
        color: #d3a86a;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .footer-social-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(196, 31, 59, 0.2), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .footer-social-item:hover {
        color: #fff;
        transform: translateY(-3px);
        border-color: #c41f3b;
    }
    
    .footer-social-item:hover::before {
        opacity: 1;
    }
    
    .footer-social-item i {
        font-size: 1.2rem;
        position: relative;
        z-index: 1;
    }
    
    /* Dolna część stopki */
    .footer-bottom {
        max-width: 1400px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid rgba(110, 43, 59, 0.5);
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .footer-legal-link {
        color: #a78e6d;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
        position: relative;
    }
    
    .footer-legal-link:not(:last-child)::after {
        content: '|';
        position: absolute;
        right: -0.9rem;
        color: #6e2b3b;
    }
    
    .footer-legal-link:hover {
        color: #d3a86a;
    }
    
    .footer-copyright-text {
        font-size: 0.85rem;
        color: #8a7559;
        text-align: left;
        margin: 0;
    }
    
    /* Responsywność */
    @media (max-width: 768px) {
        .footer-container {
            padding: 3rem 1.5rem 1.5rem;
        }
        
        .footer-main {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
        
        .footer-bottom {
            text-align: center;
        }
        
        .footer-legal {
            justify-content: center;
        }
        
        .footer-copyright-text {
            text-align: center;
        }
    }
    
    @media (min-width: 769px) and (max-width: 1024px) {
        .footer-main {
            grid-template-columns: repeat(2, 1fr);
        }
    }

/* Cookie Banner styles */
.cookie-zgoda-banner {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background-color: #1a0e14 !important;
    border-top: 3px solid #c41f1f;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.7) !important;
    z-index: 9999 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e0e0e0;
  }

  .cookie-zgoda-container {
    max-width: 1200px !important;
    margin: 0 auto;
    padding: 20px !important;
  }

  .cookie-zgoda-tekst {
    margin: 0 0 15px 0;
    font-size: 15px;
    line-height: 1.5;
  }

  .cookie-zgoda-tekst a {
    color: #ff6b1a;
    text-decoration: none;
  }

  .cookie-zgoda-tekst a:hover {
    text-decoration: underline;
  }

  .cookie-zgoda-przyciski {
    display: flex !important;
    justify-content: flex-end;
    gap: 15px;
  }

  .cookie-button {
    padding: 10px 20px !important;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .cookie-odrzuc {
    background-color: #333333 !important;
    color: #ffffff;
  }

  .cookie-odrzuc:hover {
    background-color: #444444 !important;
  }

  .cookie-akceptuj {
    background-color: #c41f1f !important;
    color: #ffffff;
  }

  .cookie-akceptuj:hover {
    background-color: #e62828 !important;
  }

  @media (max-width: 768px) {
    .cookie-zgoda-przyciski {
      flex-direction: column !important;
    }
    
    .cookie-button {
      width: 100% !important;
      margin-bottom: 10px !important;
    }
  }