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

:root {
  --primary-green: #2d5f2e;
  --light-green: #4a8a4d;
  --nvidia-green: #76b900;
  --accent-orange: #ff6b35;
  --cream: #fef9f3;
  --warm-white: #fdfbf7;
  --text-dark: #1a1a1a;
  --text-gray: #666;
}

[data-theme="dark"] {
  --primary-green: #4a8a4d;
  --light-green: #5fa662;
  --accent-orange: #ff8c5a;
  --cream: #1a1a1a;
  --warm-white: #0f0f0f;
  --text-dark: #ffffff;
  --text-gray: #b0b0b0;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-dark);
  background: var(--warm-white);
  overflow-x: hidden;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
  padding-top: 80px;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.home-page {
  background: var(--warm-white);
  min-height: 100vh;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

[data-theme="dark"] .home-page {
  background: #0f0f0f;
}

/* Navigation */
.navbar {
  background: white;
  padding: 0 2rem;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1440px;
  z-index: 1000;
  height: 69px;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(74, 138, 77, 0.1);
  display: flex;
  align-items: center;
}

/* Neon glow for light mode */
body:not([data-theme="dark"]) .navbar {
  box-shadow: 0 0 15px rgba(74, 138, 77, 0.2), 0 0 5px rgba(74, 138, 77, 0.1);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

[data-theme="dark"] .navbar {
  background: rgba(26, 26, 26, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(74, 138, 77, 0.3);
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary-green);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Theme Toggle */
.theme-toggle {
  background: var(--cream);
  border: 1.5px solid var(--primary-green);
  border-radius: 40px;
  padding: 0.2rem 0.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.3s ease;
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.8rem;
}

.theme-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.theme-toggle i {
  font-size: 1.2rem;
  color: var(--primary-green);
  transition: transform 0.3s ease;
}

.theme-toggle:hover i {
  transform: rotate(180deg);
}

.nav-menu {
  display: flex;
  gap: 1rem;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  font-family: "Rajdhani", sans-serif;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--light-green);
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a4d1b 0%, #0d260d 100%);
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

[data-theme="dark"] .hero {
  background: linear-gradient(135deg, #0d260d 0%, #000000 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 107, 53, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(74, 138, 77, 0.2) 0%,
      transparent 50%
    );
  opacity: 0.6;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-orange),
    var(--primary-green),
    var(--accent-orange)
  );
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}

.hero-content {
  animation: fadeInLeft 0.8s ease;
  max-width: 550px;
  word-wrap: break-word;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-subtitle {
  display: inline-block;
  background: rgba(255, 107, 53, 0.2);
  color: var(--accent-orange);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(255, 107, 53, 0.3);
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-family: "Rajdhani", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 2px 4px 30px rgba(0, 0, 0, 0.3);
}

.hero h1 .highlight {
  color: var(--nvidia-green);
  position: relative;
  display: inline-block;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-button {
  background: var(--accent-orange);
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
  background: #ff8c5a;
}

.cta-button-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 1rem 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-button-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 0.8s ease;
  position: relative;
}

.hero-logo-container {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 107, 53, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.hero-logo {
  position: relative;
  z-index: 1;
  max-width: 300px;
  max-height: 300px;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4));
  object-fit: contain;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  75% {
    transform: translateY(-10px) rotate(-5deg);
  }
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

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

.hero-stat-number {
  font-family: "Rajdhani", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-orange);
  display: block;
  text-shadow: 2px 2px 20px rgba(255, 107, 53, 0.4);
}

.hero-stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Section Styles */
.section {
  padding: 5rem 2rem;
  width: 100%;
  background: transparent;
}

.section-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #2d5f2e;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: var(--accent-orange);
  margin: 1rem auto;
  border-radius: 2px;
}

/* Konkursy Section */
#konkursy, #ogloszenia, #featured, #klipy {
  background: var(--warm-white);
  transition: background-color 0.3s ease;
  max-width: none;
  margin: 0;
  padding: 5rem 2rem;
}

#konkursy .section-title, 
#ogloszenia .section-title, 
#featured .section-title,
#klipy .section-title {
  color: #1a1a1a !important;
}

[data-theme="dark"] #konkursy, 
[data-theme="dark"] #ogloszenia, 
[data-theme="dark"] #featured,
[data-theme="dark"] #klipy {
  background: #0f0f0f;
}

[data-theme="dark"] #konkursy .section-title,
[data-theme="dark"] #ogloszenia .section-title,
[data-theme="dark"] #featured .section-title,
[data-theme="dark"] #klipy .section-title {
  color: #4a8a4d !important;
}

.konkursy-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.8s ease;
  max-width: 1200px;
  margin: 0 auto;
}

[data-theme="dark"] .konkursy-card {
  background: #1a1a1a;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.konkursy-card p {
  color: #666;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

[data-theme="dark"] .konkursy-card p {
  color: #b0b0b0;
}

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: var(--warm-white);
  z-index: 2001;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .mobile-menu-drawer {
  background: #1a1a1a;
}

.mobile-menu-drawer.active {
  right: 0;
}

.mobile-menu-drawer .theme-toggle {
  background: rgba(74, 138, 77, 0.15);
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
}

[data-theme="dark"] .mobile-menu-drawer .theme-toggle {
  background: rgba(95, 166, 98, 0.2);
  color: var(--light-green);
  border-color: var(--light-green);
}

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

.mobile-menu-header .logo img {
  width: 50px;
  height: 50px;
}

.close-menu {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-list a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.mobile-nav-list a:hover {
  color: var(--primary-green);
}



/* Split 3D Carousel Styles */
.carousel-3d-container {
  perspective: 2500px;
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 4rem 0;
  overflow: hidden;
}

.carousel-3d {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.carousel-3d-item {
  position: absolute;
  width: 500px;
  height: 350px;
  left: 50%;
  top: 50%;
  margin-left: -250px;
  margin-top: -175px;
  border-radius: 0; /* Split style looks better with sharp edges or slight rounding */
  overflow: visible;
  cursor: pointer;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  backface-visibility: hidden;
}

.split-card {
  display: flex;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
}

.split-left,
.split-right {
  flex: 1;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.split-left {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-left: 4px solid var(--accent-orange);
}

.split-right {
  background: var(--primary-green);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  color: white;
}

.carousel-3d-item.active .split-left {
  transform: translateZ(20px) translateX(-10px);
}

.carousel-3d-item.active .split-right {
  transform: translateZ(40px) translateX(10px);
}

.carousel-3d-item:not(.active) {
  filter: grayscale(0.8) brightness(0.5);
  cursor: pointer;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.carousel-btn {
  background: var(--primary-green);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
  background: var(--light-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.carousel-btn.random {
  background: var(--accent-orange);
}

.carousel-btn.random:hover {
  background: #ff8c5a;
}

.carousel-number-btns {
  display: flex;
  gap: 0.5rem;
}

.carousel-number-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

[data-theme="dark"] .carousel-number-btn {
  background: #2a2a2a;
}

.carousel-number-btn:hover,
.carousel-number-btn.active {
  background: var(--primary-green);
  color: white;
  transform: scale(1.1);
}

/* Featured Content */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 380px));
  gap: 2rem;
  justify-content: center;
}

.featured-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease;
  animation-fill-mode: both;
}

[data-theme="dark"] .featured-card {
  background: #2a2a2a;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.featured-card:nth-child(1) {
  animation-delay: 0.1s;
}
.featured-card:nth-child(2) {
  animation-delay: 0.2s;
}
.featured-card:nth-child(3) {
  animation-delay: 0.3s;
}
.featured-card:nth-child(4) {
  animation-delay: 0.4s;
}

.featured-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.featured-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.featured-card-content {
  padding: 1.5rem;
}

.featured-card h3 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

[data-theme="dark"] .featured-card h3 {
  color: white;
}

.featured-card p {
  color: var(--text-gray);
  line-height: 1.6;
}

[data-theme="dark"] .featured-card p {
  color: #b0b0b0;
}

/* Article Management System */
.article-card {
  position: relative;
  cursor: pointer;
}

.article-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card:hover .article-card-image {
  transform: scale(1.05);
}

.article-date {
  font-size: 0.85rem;
  color: var(--accent-orange);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.article-delete-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 107, 53, 0.9);
  border: none;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.article-delete-btn:hover {
  background: rgba(255, 107, 53, 1);
  transform: scale(1.1);
}

.admin-controls {
  background: linear-gradient(135deg, var(--cream) 0%, white 100%);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .admin-controls {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.admin-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-toggle h3 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  color: var(--primary-green);
  font-size: 1.5rem;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: var(--primary-green);
}

input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

.article-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  padding: 0.8rem;
  border: 2px solid var(--cream);
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--warm-white);
  color: var(--text-dark);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
  background: #0f0f0f;
  border-color: #2a2a2a;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(74, 138, 77, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary-green);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 150px;
}

.btn-primary:hover {
  background: var(--light-green);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(74, 138, 77, 0.3);
}

.btn-secondary {
  background: var(--accent-orange);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 150px;
}

.btn-secondary:hover {
  background: #ff8c5a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem;
}

.spinner {
  border: 4px solid var(--cream);
  border-top: 4px solid var(--primary-green);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.error-message {
  background: rgba(255, 107, 53, 0.1);
  border: 2px solid var(--accent-orange);
  border-radius: 10px;
  padding: 1rem;
  color: var(--accent-orange);
  text-align: center;
  font-weight: 600;
}

.rss-config {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--cream);
}

[data-theme="dark"] .rss-config {
  border-color: #2a2a2a;
}

/* Video Section - Twitch Clips */
.video-section {
  background: var(--warm-white);
}

[data-theme="dark"] .video-section {
  background: #0f0f0f;
}

.video-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.subscribe-btn {
  background: var(--primary-green);
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.subscribe-btn:hover {
  background: var(--light-green);
  transform: scale(1.05);
}

.clips-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  width: 100%;
}

.clip-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease;
}

[data-theme="dark"] .clip-card {
  background: #1a1a1a;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.clip-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.clip-thumbnail {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.clip-thumbnail iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.clip-info {
  padding: 1.5rem;
}

.clip-info h4 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

[data-theme="dark"] .clip-info h4 {
  color: white;
}

.clip-info p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

[data-theme="dark"] .clip-info p {
  color: #b0b0b0;
}

.clip-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.load-clips-btn {
  background: var(--accent-orange);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.load-clips-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* Twitch Embed Widget Styles */
.twitch-embed-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .twitch-embed-container {
  background: #2a2a2a;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.twitch-embed-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
}

.twitch-embed-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.embed-info {
  padding: 2rem;
  text-align: center;
}

.embed-info h3 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.embed-info p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.twitch-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.twitch-btn {
  background: #9146ff;
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.twitch-btn:hover {
  background: #7c32e8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(145, 70, 255, 0.4);
}

.twitch-btn.secondary {
  background: var(--primary-green);
}

.twitch-btn.secondary:hover {
  background: var(--light-green);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #2d5f2e 0%, #1a4d1b 100%);
  color: white;
  padding: 5rem 0 2rem;
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

[data-theme="dark"] .footer {
  background: linear-gradient(135deg, #1a2e1b 0%, #0a0a0a 100%);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-orange),
    #4a8a4d,
    var(--accent-orange)
  );
}

.footer-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  box-sizing: border-box;
  max-width: 100%;
  justify-items: start;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.footer-logo h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
}

.footer-description {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-orange);
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.8rem;
}

.footer a {
  font-family: "Inter", sans-serif;
  color: #9ca3af;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer a i {
  font-size: 1.1rem;
  width: 20px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  overflow: hidden;
  gap: 0;
  text-align: center;
}

.social-icon:hover {
  background: var(--accent-orange);
  width: auto;
  padding: 0 18px;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
  gap: 8px;
}

.social-icon i {
  font-size: 1.3rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
}

.social-name {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.social-icon:hover .social-name {
  max-width: 100px;
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: var(--accent-orange);
  font-weight: 600;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .footer {
    padding: 4rem 0 2rem;
  }

  .footer-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    box-sizing: border-box;
    max-width: 100%;
    justify-items: start;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 2rem;
  }

  .footer-container {
    padding: 0 2rem;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .footer-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 640px) {
  .footer {
    padding: 3rem 0 2rem;
  }

  .footer-container {
    padding: 0 1.5rem;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-logo {
    justify-content: center;
    text-align: center;
  }

  .footer h3 {
    font-size: 1rem;
  }

  .footer h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer ul {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer a:hover {
    transform: translateX(0) scale(1.05);
  }

  .footer-description {
    font-size: 0.85rem;
  }
}

/* Responsive */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .navbar {
    padding: 0.4rem 1rem;
    min-height: 45px;
  }
  
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: block;
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  .hero {
    padding: 6rem 0 4rem;
    min-height: 80vh;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-logo-container {
    width: 350px;
    height: 350px;
  }

  .hero-logo {
    max-width: 250px;
    max-height: 250px;
  }

  .carousel-3d-container {
    height: 500px;
    perspective: 2000px;
  }

  .carousel-3d-item {
    width: 400px;
    height: 280px;
    margin-left: -200px;
    margin-top: -140px;
  }

  .split-right {
    padding: 1.5rem;
  }

  .split-right h3 {
    font-size: 1.5rem !important;
  }

  .split-right p {
    font-size: 0.9rem !important;
  }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
  .hero {
    padding: 5rem 0 3rem;
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    padding: 0.4rem 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-button,
  .cta-button-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-logo-container {
    width: 280px;
    height: 280px;
  }

  .hero-logo {
    max-width: 200px;
    max-height: 200px;
  }

  .hero-stats {
    gap: 2rem;
    justify-content: space-around;
    margin-top: 2rem;
  }

  .hero-stat-number {
    font-size: 2rem;
  }

  .hero-stat-label {
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: block;
  }
  
  .navbar {
    padding: 0.5rem 1rem;
    min-height: 50px;
  }
  
  .logo {
    font-size: 1.2rem;
  }
  
  .logo img {
    width: 24px;
    height: 24px;
  }

  .carousel-3d-container {
    height: 500px;
    perspective: 1200px;
    margin: 2rem 0;
    padding: 0 1rem;
  }

  .carousel-3d-item {
    width: 300px;
    height: 400px;
    margin-left: -150px;
    margin-top: -200px;
  }

  .split-card {
    flex-direction: column;
  }

  .split-left,
  .split-right {
    flex: none;
    width: 100%;
  }

  .split-left {
    height: 45%;
    border-left: none;
    border-top: 4px solid var(--accent-orange);
  }

  .split-right {
    height: 55%;
    padding: 1.2rem;
  }

  .split-right h3 {
    font-size: 1.2rem !important;
    margin-bottom: 0.5rem !important;
  }

  .split-right p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0.8rem !important;
  }

  .split-right button {
    padding: 0.5rem 1rem !important;
    font-size: 0.75rem !important;
    margin-top: 0.5rem !important;
  }

  .carousel-3d-item.active .split-left {
    transform: translateZ(10px) translateY(-3px);
  }

  .carousel-3d-item.active .split-right {
    transform: translateZ(20px) translateY(3px);
  }

  .carousel-controls {
    gap: 0.5rem;
    padding: 0 1rem;
    margin-top: 2rem;
  }

  .carousel-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .carousel-number-btn {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
}

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

  .hero p {
    font-size: 1rem;
  }

  .hero-logo-container {
    width: 240px;
    height: 240px;
  }

  .hero-logo {
    max-width: 180px;
    max-height: 180px;
  }

  .hero-stat-number {
    font-size: 1.8rem;
  }

  .hero-stat-label {
    font-size: 0.8rem;
  }

  .carousel-3d-container {
    height: 450px;
    perspective: 1000px;
  }

  .carousel-3d-item {
    width: 260px;
    height: 360px;
    margin-left: -130px;
    margin-top: -180px;
  }

  .split-left {
    height: 40%;
  }

  .split-right {
    height: 60%;
    padding: 1rem;
  }

  .split-right h3 {
    font-size: 1.05rem !important;
  }

  .split-right p {
    font-size: 0.8rem !important;
  }

  .split-right button {
    padding: 0.45rem 0.9rem !important;
    font-size: 0.7rem !important;
  }

  .carousel-number-btn {
    width: 35px;
    height: 35px;
    font-size: 0.85rem;
  }

  .carousel-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

/* =========================
   AKTUALNOŚCI - MODERN STYLE
   ========================= */

.aktualnosci-modern {
    min-height: 100vh;
    padding: 6rem 2rem 4rem;
    background: var(--warm-white);
}

.featured-article {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .featured-article {
    background: #2a2a2a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.featured-content {
    padding: 3rem;
}

.featured-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-green);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.featured-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-family: "Rajdhani", sans-serif;
}

.featured-excerpt {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-divider {
    color: var(--text-gray);
    opacity: 0.5;
}

.featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.featured-cta:hover {
    background: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

.featured-image-wrapper {
    height: 100%;
    min-height: 400px;
    max-height: 500px;
    position: relative;
    overflow: hidden;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.featured-image-wrapper:hover .featured-image {
    transform: scale(1.05);
}

/* Articles Carousel */
.articles-carousel {
    max-width: 1400px;
    margin: 0 auto;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.carousel-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: "Rajdhani", sans-serif;
}

.carousel-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    background: transparent;
    color: var(--primary-green);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: var(--primary-green);
    color: white;
    transform: scale(1.1);
}

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

.slider-article {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

[data-theme="dark"] .slider-article {
    background: #2a2a2a;
}

.slider-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.slider-article.active {
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.slider-progress-bar {
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .slider-progress-bar {
    background: rgba(255, 255, 255, 0.1);
}

.slider-progress-fill {
    height: 100%;
    background: var(--primary-green);
    transition: width 0.05s linear;
}

.slider-content {
    padding: 2rem;
}

.slider-category {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary-green);
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.slider-title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.slider-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Responsive dla Aktualności */
@media (max-width: 1024px) {
    .featured-article {
        grid-template-columns: 1fr;
    }
    
    .articles-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .aktualnosci-modern {
        padding: 5rem 1rem 2rem;
    }
    
    .featured-title {
        font-size: 2rem;
    }
    
    .featured-content {
        padding: 2rem;
    }
    
    .articles-slider {
        grid-template-columns: 1fr;
    }
    
    .carousel-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .featured-image-wrapper {
        min-height: 300px;
    }
}
/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: var(--warm-white);
  z-index: 2001;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .mobile-menu-drawer {
  background: #1a1a1a;
}

.mobile-menu-drawer.active {
  right: 0;
}

.mobile-menu-drawer .theme-toggle {
  background: rgba(74, 138, 77, 0.15);
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  padding: 0.5rem 1rem;
}

[data-theme="dark"] .mobile-menu-drawer .theme-toggle {
  background: rgba(95, 166, 98, 0.2);
  color: var(--light-green);
  border-color: var(--light-green);
}

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

.close-menu {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-list a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.mobile-nav-list a:hover {
  color: var(--primary-green);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-dark);
  cursor: pointer;
}

@media (max-width: 1024px) {
  .navbar {
    padding: 0 1.5rem;
    height: 65px;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .hamburger {
    display: block;
    font-size: 24px;
  }
  
  .nav-menu {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 1rem;
    height: 60px;
  }
  
  .logo {
    font-size: 1.2rem;
  }
  
  .logo img {
    width: 35px;
    height: 35px;
  }
}

