* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

h1 {
  font-family: "Rock Salt", sans-serif;
  font-size: 95px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 0px #eb0200, 1px 0 0px #eb0200, 1px 2px 1px #eb0200,
    2px 1px 1px #eb0200, 2px 3px 2px #eb0200, 3px 2px 2px #eb0200,
    3px 4px 2px #eb0200, 4px 3px 3px #f87171, 4px 5px 3px #eb0200,
    5px 4px 2px #eb0200, 5px 6px 2px #eb0200, 6px 5px 2px #eb0200,
    6px 7px 1px #eb0200, 7px 6px 1px #eb0200, 7px 8px 0px #eb0200,
    8px 7px 0px #eb0200;
  background: transparent;
  margin-bottom: 10px;
}

h2,
h3,
p,
a,
button,
span,
select,
label,
.logo,
.event-type {
  font-family: "Coming Soon", cursive;
}

.main-section,
.about,
.works,
.blog,
.events,
.meetups,
.contact {
  position: relative;
}

.main-section::before,
.about::before,
.works::before,
.blog::before,
.events::before,
.meetups::before,
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.main-section > *,
.about > *,
.works > *,
.blog > *,
.events > *,
.meetups > *,
.contact > * {
  position: relative;
  z-index: 2;
}

h2 {
  font-family: "Gloria Hallelujah", sans-serif;
  margin: 0 176px 48px 176px;
  max-width: 1024px;
  font-size: 24px;
  line-height: 1.25;
  color: white;
  text-align: center;
}

p {
  font-size: 18px;
}

a {
  text-decoration: none;
  color: #ffffff;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Coming Soon", cursive;
  background: #0d0d0d;
  color: #ffffff;
  line-height: 1.5;
}

.container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.no-scroll {
  overflow: hidden;
}

/* Header */
.navbar {
  position: fixed;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-around;
  padding: 16px 32px;
  z-index: 1000;
  transition: background 0.3s ease;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.logo-image {
  width: 30px;
  height: 30px;
}

.logo-circle {
  padding: 4px 5px 0px 5px;
}

.logo-div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  margin: 0 16px;
  color: #f0f0f0;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #eb0200;
}

.nav-links a.active {
  color: #eb0200;
  font-weight: bold;
}

.header-social {
  display: flex;
  gap: 15px;
}

.header-social a {
  color: #ffffff;
  transition: color 0.3s ease, transform 0.3s ease, filter 0.3s ease,
    rotate 0.3s ease;
}

.header-social a:hover {
  color: #eb0200;
  transform: scale(1.2) rotate(8deg);
  filter: brightness(1.5);
}

/* Section */
.section {
  margin: 0 72px;
  padding: 45px 20px;
  min-height: 900px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section.show {
  opacity: 1;
  transform: translateY(0);
}

/* Spiderman GIF */
.spiderman-container {
  position: absolute;
  z-index: 1;
}

.spiderman-gif {
  position: relative;
  top: 75px;
  left: 40%;
  width: 300px;
  height: 300px;
}

/* Home */
.main-section {
  background-image: url("./images/bckg/home.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin: 0;
}

.home {
  padding: 64px 16px;
  margin: 0 72px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
}

.arrow-gif {
  width: 200px;
  height: 200px;
  transform: rotate(45deg);
}

.main-title {
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.home h1 {
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.home h2 {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.home h1:hover {
  cursor: pointer;
  transform: scale(1.05);
}

.home h1:hover + h2 {
  opacity: 1;
}

.home-text {
  grid-column: 1 / -1;
  margin: 0 240px;
  text-align: center;
  backdrop-filter: blur(4px);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h3 {
  margin-bottom: 8px;
  font-size: 25px;
}

.home-text p {
  font-size: 20px;
}

/* Animated Title */
.animated-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
}

.animated-title span:nth-child(1) {
  animation-delay: 0s;
}
.animated-title span:nth-child(2) {
  animation-delay: 0.1s;
}
.animated-title span:nth-child(3) {
  animation-delay: 0.2s;
}
.animated-title span:nth-child(4) {
  animation-delay: 0.3s;
}
.animated-title span:nth-child(5) {
  animation-delay: 0.4s;
}
.animated-title span:nth-child(6) {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home h2 {
  position: absolute;
  top: 24%;
  right: 13%;
  margin: 0;
  max-width: 500px;
  padding: 30px;
  color: #000000;
  font-size: 19px;
  line-height: 1.5;
  transform: rotate(345deg);
}

.home h2::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background-color: #ffffff;
  border: 3px solid #000000;
  border-radius: 50%;
  z-index: -1;
  transform: rotate(-1deg);
}

.home h2::after {
  content: "";
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border: 3px solid #000000;
  border-radius: 50%;
  box-shadow: -40px 0 0 0px #ffffff, -40px 0 0 3px #000000,
    -20px 0 0 -1px #ffffff, -20px 0 0 2px #000000;
}

/* About */
.about {
  z-index: 2;
  background-image: url("./images/bckg/about.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin: 0;
}

.meows {
  display: flex;
  align-items: center;
}

.meows-one {
  width: 240px;
}

.meows-one h2,
.meows-three h2 {
  text-align: center;
  margin: 30px;
  font-size: 50px;
  text-shadow: 0 1px 0px #2e3b95b3, 1px 0 0px #2e3b95b3, 1px 2px 1px #2e3b95b3,
    2px 1px 1px #2e3b95b3, 2px 3px 2px #2e3b95b3;
}

.click-here-gif {
  width: 290px;
}

.img-container {
  position: absolute;
  top: 25.5%;
  left: 47.5%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 20px 0;
  overflow: hidden;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.img-container:hover {
  transform: scale(1.05);
}

.img-about {
  width: 130%;
  object-fit: cover;
}

.meows-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.meows-modal {
  background-color: #eb0200;
  color: #000000;
  border-radius: 15px;
  padding: 20px;
  max-width: 800px;
  width: 90%;
  position: relative;
}

.meows-cross {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  color: #ffffff;
  padding: 1px 2px 0 2px;
  transition: color 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.meows-cross:hover {
  color: #eb0200;
  background-color: #ffffff;
  transform: scale(1.05);
}

.meows-content {
  display: flex;
  flex-direction: column;
}

.meows-header {
  padding-bottom: 10px;
}

.meows-header h2,
.meows-header p {
  margin: 0;
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

.meows-header h2 {
  font-size: 50px;
  letter-spacing: 3.5px;
}

.meows-header p {
  font-size: 25px;
}

.meows-block {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 15px;
  border-radius: 10px;
  background-color: #ffffff;
}

.meows-modal-img {
  width: 300px;
  border-radius: 10px;
}

.meows-info {
  width: 100%;
  max-width: 400px;
  margin-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.meows-description {
  font-size: 17px;
  margin: 30px 0;
}

.meows-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.stat {
  text-align: center;
  padding: 15px;
  border-radius: 8px;
}

.stat-label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}

.stat-value {
  display: block;
  font-size: 19px;
  font-weight: bold;
}

.buttons {
  margin: 40px 0;
}

.button-2 {
  display: flex;
  gap: 12px;
}

.secondary-button {
  color: #ffffff;
  background-color: transparent;
  border: 2px solid #2e3b95b3;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s, transform 0.3s;
  backdrop-filter: blur(4px);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.secondary-button:hover {
  transform: scale(1.05);
  border-color: #eb0200;
  cursor: pointer;
}

.about-text {
  width: 60%;
  padding: 24px;
  max-width: 768px;
  border: 1px solid #2e3b95b3;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(4px);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-partners {
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.partners-gif {
  position: absolute;
  bottom: 17%;
  z-index: 2;
  width: 70px;
  height: 70px;
}

.partners-friends {
  position: relative;
  margin: 0 0 20px;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  text-shadow: 0 1px 0px #2e3b95b3, 1px 0 0px #2e3b95b3, 1px 2px 1px #2e3b95b3,
    2px 1px 1px #2e3b95b3, 2px 3px 2px #2e3b95b3;
}

.partners-logo {
  width: 110%;
  height: 120px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
  padding: 10px 0;
  box-sizing: border-box;
}

.partners-list {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
  animation: scrollPartners 70s linear infinite;
}

.circle-image {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 90px;
}

.circle-image a {
  overflow: hidden;
  display: flex;
  justify-content: center;
  width: 70px;
  height: 70px;
  border: 2px solid #2e3b95b3;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: color 0.3s, transform 0.3s;
}

.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle-image span {
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  padding: 2px 5px;
  border-radius: 10px;
  border: 1px solid #2e3b95b3;
  backdrop-filter: blur(4px);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.circle-image:hover a {
  transform: scale(1.05);
  border-color: #eb0200;
  cursor: pointer;
}

.circle-image:hover span {
  transform: scale(1.05);
  background-color: #eb0200;
}

@keyframes scrollPartners {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* Пауза анімації при наведенні */
.partners-logo:hover .partners-list {
  animation-play-state: paused;
}

.profession-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.profession-modal {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  border: 5px solid #eb0200;
  max-width: 500px;
  width: 90%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.profession-cross {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  color: #000000;
  padding: 1px 2px 0 2px;
  transition: color 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.profession-cross:hover {
  transform: scale(1.05);
  color: #ffffff;
  background-color: #eb0200;
}

.profession-modal h2 {
  margin: 0;
  padding-bottom: 20px;
  color: #000000;
  font-size: 24px;
  font-weight: 700;
}

.profesion-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.profession-benefits p {
  margin: 8px 0;
  color: #000000;
  font-size: 16px;
}

.profession-img {
  width: 20%;
  height: 20%;
  cursor: pointer;
}

.profession-img:hover {
  transform: scaleX(-1);
}

/* Works */
.works {
  background-image: url("./images/bckg/works.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin: 0;
}

.title-p {
  backdrop-filter: blur(7px);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 5px;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-shadow: 0 1px 0px #000000, 1px 0 0px #000000, 1px 2px 1px #000000,
    2px 1px 1px #000000, 2px 3px 2px #000000;
}

.works-head,
.blog-head {
  margin-bottom: 45px;
}

.worksList,
.blogList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 24px;
  width: 100%;
  max-width: 1400px;
}

.work-card {
  position: relative;
  overflow: hidden;
  width: 300px;
  height: 380px;
  border: 1px solid #ffffff;
  border-radius: 10px;
  transition: border-color 0.3s ease;
}

.work-card:hover {
  border-color: #be0502;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.work-card:hover img {
  transform: scale(1.1);
}

.work-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  text-align: start;
}

.work-card:hover .work-card-content {
  transform: translateY(0);
}

.work-card-title {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 800;
}

.work-card-tech {
  font-size: 12px;
  margin-bottom: 12px;
  padding: 2px 8px;
  background-color: #eb0200cc;
  border-radius: 10px;
  border: 1px solid transparent;
}

.work-card-main-descrip {
  font-size: 14px;
  word-break: normal;
  padding: 12px;
  margin-bottom: 16px;
  background-color: #ffffff;
  border: 1px solid transparent;
  color: #000000;
}

.work-btn {
  display: flex;
  justify-content: end;
}

.viewDetailsBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: -0.5px;
  padding: 8px 12px;
  border-radius: 10px;
  border: none;
  color: #ffffff;
  background-color: #eb0200;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.work-card:hover .viewDetailsBtn {
  transform: scale(1.05);
  background-color: #be0502;
  cursor: pointer;
}

.details-arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.work-card:hover .details-arrow {
  transform: translateX(5px);
}

/* Work card Modal */
.work-backdrop {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background-color: rgba(0, 0, 0, 0.8);
}

.work-modal {
  overflow: hidden;
  overflow-y: auto;
  background-color: #000000;
  margin: 3% auto;
  padding: 25px;
  border: 4px solid #ffffff;
  border-radius: 10px;
  width: 100%;
  max-width: 850px;
  height: 100%;
  max-height: 700px;
}

.work-cross {
  position: relative;
  left: 96%;
}

.title-and-cat {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.workTitle {
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  font-weight: 800;
  text-shadow: 0 1px 0px #2e3b95b3, 1px 0 0px #2e3b95b3, 1px 2px 1px #2e3b95b3,
    2px 1px 1px #2e3b95b3, 2px 3px 2px #2e3b95b3;
  margin: 0;
}

.crawling-cat {
  width: 50px;
  height: 80px;
}

.workImage {
  width: 100%;
  height: 80%;
  border: 1px dashed #ffffff;
  border-radius: 10px;
  margin-bottom: 24px;
}

.work-modal-content {
  display: flex;
  gap: 40px;
}

.work-modal-text,
.work-modal-techlinks {
  width: 50%;
  padding: 16px;
  border: 1px dashed #ffffff;
  border-radius: 10px;
}

.work-modal-techlinks {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.work-modal-h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #eb0200;
  letter-spacing: -0.5px;
}

.workMainDescription {
  font-size: 16px;
}

.workDescription {
  font-size: 16px;
  margin-top: 16px;
}

.workTechnologies {
  font-size: 12px;
  color: #ffffff;
  background-color: #2e3b95cc;
  border-radius: 10px;
  padding: 2px 8px;
  margin-bottom: 24px;
}

.work-modal-a {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.workLinks {
  font-size: 14px;
  color: #000000;
  font-weight: 700;
  background-color: #ffffff;
  border: 1px solid #eb0200;
  border-radius: 10px;
  width: 100%;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.workLinks svg {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.workLinks a {
  color: #000000;
  transition: color 0.3s ease;
}

.workLinks:hover {
  color: #ffffff;
  background-color: #eb0200;
  transform: scale(1.05);
}

.workLinks:hover a {
  color: #ffffff;
}

/* Events */
.events {
  background-image: url("./images/bckg/events.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin: 0;
}

.events-filters {
  display: flex;
  gap: 16px;
  margin: 30px 0;
}

.events-filters select {
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.eventsList {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.event-card {
  display: flex;
  align-items: center;
  position: relative;
  background: url("./images/events/event-card-1.jpg");
  padding: 24px;
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  transform: rotate(-1deg);
  transition: transform 0.3s ease;
  max-width: 300px;
}

.event-card:nth-child(3n) {
  background: url("./images/events/event-card-3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(2deg);
}

.event-card:nth-child(3n-1) {
  background: url("./images/events/event-card-2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(-2deg);
}

.event-card:nth-child(3n-2) {
  background: url("./images/events/event-card-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(1deg);
}

.event-card:hover {
  transform: rotate(0) scale(1.02);
}

.event-type {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 5px 13px;
  border-radius: 20px;
  border: 1px solid #000000;
  font-size: 13px;
  font-weight: bold;
  background: #be0502;
  color: white;
}

.event-content {
  padding: 5px;
  backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.event-title {
  font-size: 24px;
  margin-bottom: 10px;
  color: #000000;
}

.event-datetime,
.datetime-group,
.event-place {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #000000;
}

.event-description {
  color: #000000;
  font-weight: 600;
  font-size: 16px;
}

.event-icon {
  width: 16px;
  height: 16px;
  fill: #000000;
}

/* Meetups */
.meetups {
  background-image: url("./images/bckg/meetups.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin: 0;
}

.cat-and-text {
  position: relative;
  display: inline-block;
  margin-top: 10px;
}

.hiding-cat {
  position: absolute;
  bottom: 50%;
  left: 30%;
  width: 100px;
  height: 100px;
  z-index: 3;
}

.cat-and-text p {
  position: relative;
  z-index: 2;
  margin: 0;
  line-height: 1.2;
}

.swiper-container {
  max-width: 900px;
  width: 100%;
  height: 400px;
  margin-top: 20px;
}

.swiper-slide {
  background-color: #f5f5f5;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #eb0200 !important;
}

.swiper-pagination-bullet {
  background-color: #eb0200 !important;
}

.swiper-container {
  perspective: 1500px;
}

.swiper-slide {
  transform: rotateY(0);
  transition: transform 0.3s;
}

.swiper-slide:hover {
  transform: rotateY(15deg);
}

/* Blog */
.blog {
  background-image: url("./images/bckg/blog.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin: 0;
}

.blog-card {
  width: 400px;
  height: 440px;
  border: 1px solid #2e3b95b3;
  border-radius: 10px;
  transition: border-color 0.3s ease;
  overflow: hidden;

  backdrop-filter: blur(4px);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.blog-card:hover {
  border-color: #eb0200cc;
}

.blog-card-image {
  width: 100%;
  max-width: 390px;
  height: 160px;
  border: 1px solid #2e3b954d;
  border-radius: 10px;
  margin: 4px;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.blog-card:hover .blog-card-image {
  transform: scale(1.1);
  border: none;
}

.blog-card-content {
  padding: 20px;
  text-align: start;
}

.blog-card-ctg {
  font-size: 12px;
  border: 2px solid #2e3b95b3;
  border-radius: 10px;
  padding: 2px 8px;
  margin-bottom: 12px;
}

.blog-card-title {
  margin-bottom: 8px;
  font-size: 18px; /*20*/
  font-weight: 800;
  text-transform: uppercase;
}

.blog-card-date {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 12px;
}

.blog-card-date p {
  font-size: 14px;
}

.blog-svg {
  width: 12px;
  height: 12px;
  margin-right: 4px;
}

.blog-card-info {
  font-size: 16px;
  word-break: normal;
  margin-bottom: 16px;
}

.readMoreBtn {
  font-size: 14px;
  letter-spacing: -0.5px;
  padding: 8px 16px;
  border: 1px solid #eb0200;
  border-radius: 10px;
  background-color: transparent;
  color: #ffffff;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.blog-card:hover .readMoreBtn {
  background-color: #be0502;
  transform: scale(1.05);
  cursor: pointer;
}

/* Blog card Modal */
.blog-backdrop {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background-color: rgba(0, 0, 0, 0.8);
}

.blog-modal {
  overflow: hidden;
  overflow-y: auto;
  background-color: #000000;
  margin: 3% auto;
  padding: 20px;
  border: 3px solid #2e3b954d;
  border-radius: 10px;
  width: 100%;
  max-width: 850px;
  height: 100%;
  max-height: 700px;
}

.ctg-btn {
  display: flex;
  justify-content: space-between;
}

.modal-cross {
  cursor: pointer;
  background: #be0502;
  border-radius: 10px;
  padding: 1px 5px;
  border: none;
  color: #ffffff;
  transition: background-color 0.3s ease;
}

.modal-cross:hover {
  background-color: #eb0200;
}

.blogHeader {
  margin-bottom: 24px;
  width: 100%;
}

.blogCategories {
  width: 40%;
  font-size: 12px;
  border: none;
  border-radius: 10px;
  color: #ffffff;
  background-color: #be0502;
  padding: 2px 8px;
  margin-bottom: 12px;
}

.blogTitle {
  margin: 0 0 12px 0;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  text-align: start;
}

.blogDateRead {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #a1a1a1;
}

.date,
.read {
  display: flex;
}

.blog-modal-svg {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.blogDate,
.blogReadTime {
  font-size: 14px;
}

.blogImage {
  width: 100%;
  height: 70%;
  border: 1px solid #2e3b954d;
  border-radius: 10px;
}

/* Contact */
.contact {
  background-image: url("./images/bckg/contact.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin: 0;
}

.social-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  width: 100%;
  max-width: 700px;
  height: 200px;
  margin: 20px 0;

  backdrop-filter: blur(4px);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-icon {
  position: relative;
  text-align: center;
}

.social-icon a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #121111c3;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icon a svg {
  color: #ffffff;
  transition: coolor 0.3s ease;
}

.social-label {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 13px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.social-icon:hover a {
  transform: scale(1.1);
}

.social-icon.twitter:hover a,
.social-icon.twitter:hover .social-label {
  background-color: #1da1f2;
}

.social-icon.discord:hover a,
.social-icon.discord:hover .social-label {
  background-color: #5865f2;
}

.social-icon.telegram:hover a,
.social-icon.telegram:hover .social-label {
  background-color: #0088cc;
}

.social-icon.github:hover a,
.social-icon.github:hover .social-label {
  background-color: #474646;
}

.social-icon.instagram:hover a,
.social-icon.instagram:hover .social-label {
  background-color: #e1306c;
}

.social-icon:hover a svg {
  color: #ffffff;
}

.social-icon:hover .social-label {
  opacity: 1;
  background-color: #333333;
  border-radius: 10px;
  padding: 5px;
}

.feedback {
  width: 600px;
  text-shadow: 0 1px 0px #2e3b95b3, 1px 0 0px #2e3b95b3, 1px 2px 1px #2e3b95b3,
    2px 1px 1px #2e3b95b3, 2px 3px 2px #2e3b95b3;
}

.feedback h2 {
  font-size: 25px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.feedback p {
  font-size: 16px;
  margin-bottom: 30px;
}

.feedback button {
  text-transform: uppercase;
  background-color: #eb0200;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 24px 32px;
  border-radius: 10px;
  border: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.feedback button:hover {
  background-color: #be0502;
  transform: scale(1.05);
  cursor: pointer;
}

/* Running Cat */
.cat-runner {
  position: fixed;
  bottom: 10px;
  left: -100px;
  z-index: 1000;
  animation: runLoop 15s linear infinite;
}

.cat-runner img {
  width: 115px;
  height: 80px;
}

@keyframes runLoop {
  0% {
    left: -100px;
  }
  99.99% {
    left: 100%;
  }
  100% {
    left: -100px;
  }
}

/* Feedback form Modal */
.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  background-color: rgba(0, 0, 0, 0.8);
  transition: opacity 0.3s, visibility 0.3s;
}

.backdrop.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 480px;
  background: linear-gradient(rgb(26, 26, 26), rgb(42, 42, 42));
  color: #ffffff;
  border: 4px solid #eb0200;
  border-radius: 15px;
  padding: 24px;
}

.modal-btn-close {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  background: transparent;
  border: none;
  color: #99a1af;
  transition: color 0.3s ease;
}

.modal-btn-close:hover {
  color: #ffffff;
}

.modal-h2 {
  width: 100%;
  text-align: center;
  margin: 0 0 24px 0;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-label {
  font-size: 14px;
  letter-spacing: -0.5px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-input {
  font-size: 14px;
  width: 100%;
  height: 36px;
  padding: 4px 12px;
  color: #ffffff;
  border: 1px solid #eb020080;
  border-radius: 8px;
  background-color: #0000007a;
}

.form-input.textarea {
  height: 46px;
  padding: 8px 12px;
}

.form-input:focus {
  border-color: #a1a1a1;
  box-shadow: 0 0 3px 3px #a1a1a1;
  color: white;
}

.form-button {
  margin-top: 8px;
  width: 100%;
  height: 36px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  background-color: #eb0200;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-button:hover {
  background-color: #be0502;
}

/* Mobile Menu */
.mobile-menu-btn {
  position: absolute;
  top: 15%;
  right: 5%;
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
  z-index: 1000;
}

.mobile-menu-btn .close-icon {
  display: none;
}

.mobile-menu-btn.active .menu-icon {
  display: none;
}

.mobile-menu-btn.active .close-icon {
  display: block;
}
