/* 1. ZÁKLADNÝ ŠTÝL A FONTY */
body, #c-header, .text-header, .text-title, .text-large, .c-username {
  font-family: 'Inter', sans-serif !important;
}

/* 2. HEADER - Tenká linka, fixnuté farby pre dark mode */
#c-header {
  border-bottom: 1px solid rgba(0,0,0,0.1) !important;
  box-shadow: none !important;
}
[data-theme="dark"] #c-header {
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}

.text-header {
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: -1px !important;
}

/* 3. TLAČIDLÁ - Clean štýl bez tvrdého tieňa */
.c-button--primary, .c-button--secondary, .c-button--default {
  border: 1px solid #000 !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  text-transform: none !important;
  box-shadow: none !important; 
  transition: all 0.2s ease !important;
}

[data-theme="dark"] .c-button--default {
  border-color: rgba(255,255,255,0.2) !important;
}

.c-button--primary:hover, .c-button--secondary:hover {
  background-color: #EAB308 !important; 
  border-color: #EAB308 !important;
  color: #000 !important;
}

/* 4. POSTY A DISKUSIA - Tenšie okraje, lepšie gapy */
.p-show-post__header-col, .c-posts-container__post {
  border: 1px solid rgba(0,0,0,0.1) !important;
  border-radius: 20px !important;
  padding: 1.5rem !important;
  background: transparent !important;
}

[data-theme="dark"] .p-show-post__header-col, 
[data-theme="dark"] .c-posts-container__post {
  border-color: rgba(255,255,255,0.1) !important;
}

.flex.flex-y.flex--divide-4 {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important; 
}

/* 5. VOTE COUNTER - Minimalistický */
.c-vote-counter__button {
  border: 1px solid rgba(0,0,0,0.1) !important;
  border-radius: 8px !important;
}
[data-theme="dark"] .c-vote-counter__button {
  border-color: rgba(255,255,255,0.2) !important;
}

.c-vote-counter__button--voted {
  background-color: #EAB308 !important;
  border-color: #EAB308 !important;
  color: #000 !important;
}

/* 6. ODSTRÁNENIE WATERMARKU */
.c-powered { display: none !important; }

/* 7. AVATARY */
.c-avatar { 
  border: 1px solid rgba(0,0,0,0.1) !important; 
  border-radius: 8px !important; 
}
[data-theme="dark"] .c-avatar { border-color: rgba(255,255,255,0.2) !important; }