:root {
  --red: #E8001C;
  --red-dark: #A80013;
  --red-light: #FF1A35;
  --black: #0A0A0A;
  --off-black: #111111;
  --dark-gray: #1A1A1A;
  --mid-gray: #2A2A2A;
  --light-gray: #888;
  --white: #F5F5F0;
  --cream: #FAF9F6;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 2px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 0, 28, 0.2);
  transition: padding 0.3s;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

.nav-logo span {
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--light-gray);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--red-light);
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--red-light) !important;
  color: var(--white) !important;
}

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 4rem 6rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 75% 50%, rgba(232, 0, 28, 0.12) 0%, transparent 70%), radial-gradient(ellipse 40% 40% at 20% 80%, rgba(232, 0, 28, 0.06) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(232, 0, 28, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(232, 0, 28, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: heroIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(232, 0, 28, 0.15);
  border: 1px solid rgba(232, 0, 28, 0.4);
  padding: 0.35rem 1rem;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 1.8rem;
}

.hero-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title .accent {
  color: var(--red);
  display: block;
}

.hero-sub {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--light-gray);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.8rem;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 1rem 2.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  padding: 1rem 2.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--red);
  color: var(--red-light);
}

.hero-stats {
  position: absolute;
  right: 4rem;
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 2;
  animation: heroIn 1s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.stat {
  text-align: right;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--white);
}

.stat-num span {
  color: var(--red);
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-gray);
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--light-gray);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-hint::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

section {
  padding: 4rem 4rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
}

#hakkimizda {
  background: var(--off-black);
  border-top: 1px solid var(--mid-gray);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text p {
  color: var(--light-gray);
  font-weight: 300;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-top: 1.5rem;
}

.about-text p+p {
  margin-top: 1rem;
}

.about-visual {
  position: relative;
}

.about-card {
  background: var(--dark-gray);
  border: 1px solid var(--mid-gray);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light), transparent);
}

.about-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.values-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.values-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 100px;
  height: 100px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
}

.about-badge span:first-child {
  font-size: 2rem;
  line-height: 1;
}

.about-badge span:last-child {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
}

#hizmetler {
  background: var(--black);
}

.services-header {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--mid-gray);
  border: 1.5px solid var(--mid-gray);
}

.service-card {
  background: var(--off-black);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}

.service-card:hover {
  background: var(--dark-gray);
}

.service-card:hover .service-num {
  color: var(--red);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--red);
  transition: height 0.3s;
}

.service-card:hover::after {
  height: 3px;
}

.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.2rem;
  color: var(--red);
}

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--light-gray);
  line-height: 1.7;
  font-weight: 300;
}

#iletisim {
  background: var(--off-black);
  border-top: 1px solid var(--mid-gray);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--light-gray);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(232, 0, 28, 0.1);
  border: 1px solid rgba(232, 0, 28, 0.3);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.contact-detail strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-gray);
  margin-bottom: 0.2rem;
}

.contact-detail span {
  color: var(--white);
  font-weight: 400;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

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

label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-gray);
}

input,
textarea,
select {
  background: var(--dark-gray);
  border: 1px solid var(--mid-gray);
  border-radius: 2px;
  padding: 0.9rem 1.1rem;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  width: 100%;
}

input::placeholder,
textarea::placeholder {
  color: #555;
}

input:focus,
textarea:focus {
  border-color: var(--red);
  background: rgba(232, 0, 28, 0.05);
}

textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 1.1rem 2.5rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--red-light);
  transform: translateY(-2px);
}

.form-submit svg {
  transition: transform 0.2s;
}

.form-submit:hover svg {
  transform: translateX(4px);
}

.success-msg {
  display: none;
  background: rgba(232, 0, 28, 0.1);
  border: 1px solid rgba(232, 0, 28, 0.4);
  border-radius: 2px;
  padding: 1rem 1.5rem;
  color: var(--red-light);
  font-size: 0.9rem;
  font-weight: 600;
}

footer {
  background: var(--black);
  border-top: 1px solid var(--mid-gray);
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}

.footer-logo span {
  color: var(--red);
}

footer p {
  color: var(--light-gray);
  font-size: 0.8rem;
}

.red-divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 2.5rem 0;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-reveal {
  opacity: 0;
  transform: translateY(30px);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

@media (max-width: 900px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 3rem 1.5rem;
  }

  #hero {
    padding: 0 1.5rem;
  }

  .hero-stats {
    display: none;
  }

  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

#duyurular {
  background: var(--black);
  border-top: 1px solid var(--mid-gray);
  padding: 4rem 4rem;
}

.duyuru-header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.duyuru-featured {
  max-width: 1200px;
  margin: 0 auto 2rem;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--dark-gray);
  border: 1px solid var(--mid-gray);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 260px;
}

.duyuru-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
}

.duyuru-featured-left {
  background: linear-gradient(135deg, rgba(232, 0, 28, 0.18) 0%, rgba(232, 0, 28, 0.04) 100%);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background 0.2s;
}

.duyuru-featured-left:hover {
  background: linear-gradient(135deg, rgba(232, 0, 28, 0.22) 0%, rgba(232, 0, 28, 0.06) 100%);
}

.duyuru-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  width: fit-content;
  margin-bottom: 1.5rem;
}

.duyuru-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.duyuru-featured-left h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.duyuru-featured-left p {
  color: var(--light-gray);
  font-weight: 300;
  line-height: 1.7;
  font-size: 0.95rem;
}

.duyuru-date {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red-light);
  font-weight: 600;
  margin-top: 2rem;
}

.duyuru-featured-right {
  padding: 2rem;
  border-left: 1px solid var(--mid-gray);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.duyuru-featured-right-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-gray);
  margin-bottom: 1.5rem;
}

.duyuru-list-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
  border-radius: 2px;
}

.duyuru-list-item:last-child {
  border-bottom: none;
}

.duyuru-list-item:hover {
  background: rgba(232, 0, 28, 0.04);
  padding-left: 0.5rem;
}

.duyuru-list-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: rgba(232, 0, 28, 0.4);
  line-height: 1;
  min-width: 30px;
}

.duyuru-list-content h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--white);
}

.duyuru-list-content span {
  font-size: 0.75rem;
  color: var(--light-gray);
  font-weight: 300;
}

@media (max-width: 900px) {
  .duyuru-featured {
    grid-template-columns: 1fr;
  }

  .duyuru-featured-right {
    border-left: none;
    border-top: 1px solid var(--mid-gray);
  }

  .duyuru-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.duyuru-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.4s ease both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.duyuru-popup {
  background: var(--dark-gray);
  border: 1px solid var(--mid-gray);
  border-radius: 4px;
  max-width: 560px;
  width: 100%;
  position: relative;
  overflow: hidden;
  animation: popupIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.duyuru-popup-top {
  background: linear-gradient(135deg, rgba(232, 0, 28, 0.2), rgba(232, 0, 28, 0.05));
  border-bottom: 1px solid rgba(232, 0, 28, 0.3);
  padding: 2rem 2rem 1.5rem;
  position: relative;
}

.duyuru-popup-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
}

.duyuru-popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.duyuru-popup-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.duyuru-popup h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.duyuru-popup-body {
  padding: 1.5rem 2rem 2rem;
}

.duyuru-popup-body p {
  color: var(--light-gray);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.duyuru-popup-body p strong {
  color: var(--white);
  font-weight: 700;
}

.duyuru-popup-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-popup-link {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.65rem 1.4rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-popup-link:hover {
  border-color: var(--red);
  color: var(--red-light);
}

.duyuru-popup-date {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red-light);
  font-weight: 600;
}

.duyuru-popup-close {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 0.7rem 1.8rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
}

.duyuru-popup-close:hover {
  background: var(--red-light);
}

.go-back {
  color: var(--light-gray);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.go-back:hover {
  color: var(--red-light);
}

.news-article {
  max-width: 800px;
  margin: 120px auto 60px;
  padding: 0 2rem;
}

.news-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--red-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.news-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.news-content p {
  color: var(--light-gray);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(232, 0, 28, 0.3);
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  animation: cookieSlideUp 0.6s 1.5s cubic-bezier(0.16, 1, 0.3, 1) both
}

.cookie-banner.cookie-hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none
}

.cookie-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--red-light), transparent)
}

.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  flex: 1
}

.cookie-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem
}

.cookie-text p {
  font-size: 0.88rem;
  color: var(--light-gray);
  font-weight: 300;
  line-height: 1.6;
  margin: 0
}

.cookie-text p strong {
  color: var(--white);
  font-weight: 600
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0
}

.cookie-accept {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 0.7rem 1.6rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap
}

.cookie-accept:hover {
  background: var(--red-light);
  transform: translateY(-2px)
}

.cookie-decline {
  background: transparent;
  color: var(--light-gray);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.7rem 1.2rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap
}

.cookie-decline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white)
}

@keyframes cookieSlideUp {
  from {
    transform: translateY(100%);
    opacity: 0
  }

  to {
    transform: translateY(0);
    opacity: 1
  }
}

@media (max-width: 900px) {
  .cookie-banner {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
    align-items: flex-start
  }

  .cookie-actions {
    width: 100%
  }

  .cookie-accept,
  .cookie-decline {
    flex: 1;
    justify-content: center
  }
}
