/* ========== BODY - PURPLE BACKGROUND ========== */
body {
  background: linear-gradient(135deg, #130617 0%, #1A0625 50%, #25052B 75%, #2A062C 100%) !important;
  background-attachment: fixed !important;
  min-height: 100vh !important;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(135deg, #130617 0%, #1A0625 50%, #25052B 75%, #2A062C 100%);
  background-image: url('../img/coverBlockhero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.hero .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 24px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -1px;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: linear-gradient(90deg, #620080 0%, #ec4899 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.5);
  background: linear-gradient(90deg, #ec4899 0%, #620080 100%);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid rgba(147, 51, 234, 0.5);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
  background: rgba(147, 51, 234, 0.2);
  border-color: rgba(147, 51, 234, 0.7);
  transform: translateY(-2px);
}

.hero-social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hero-social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(42, 6, 44, 0.6);
  border: 2px solid rgba(147, 51, 234, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-social-link:hover {
  background: rgba(147, 51, 234, 0.3);
  border-color: rgba(147, 51, 234, 0.7);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(147, 51, 234, 0.4);
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-photo {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 968px) {
  .hero {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 4rem;
    background-attachment: scroll;
  }
  
  .hero .container {
    padding: 0;
  }
  
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
    padding: 2rem 20px;
    width: 100%;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    max-width: 100%;
    font-size: 1.05rem;
  }
  
  .hero-buttons {
    justify-content: center;
    gap: 1rem;
  }
  
  .hero-btn-primary,
  .hero-btn-secondary {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }
  
  .hero-social-icons {
    justify-content: center;
  }
  
  .hero-image {
    order: -1;
  }
  
  .hero-photo {
    max-width: 350px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 65px;
    padding-bottom: 3rem;
    min-height: auto;
  }
  
  .hero .container {
    padding: 0;
  }
  
  .hero-wrapper {
    padding: 1.5rem 16px;
    gap: 2rem;
    width: 100%;
  }
  
  .hero-content {
    gap: 1.5rem;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    align-items: center;
  }
  
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    max-width: 300px;
    padding: 0.875rem 1.5rem;
  }
  
  .hero-social-icons {
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .hero-social-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .hero-image {
    order: -1;
    margin-bottom: 1rem;
  }
  
  .hero-photo {
    max-width: 280px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 65px;
    padding-bottom: 2.5rem;
  }
  
  .hero .container {
    padding: 0;
  }
  
  .hero-wrapper {
    padding: 1rem 12px;
    gap: 1.5rem;
    width: 100%;
  }
  
  .hero-content {
    gap: 1.25rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  .hero-description {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .hero-buttons {
    gap: 0.625rem;
  }
  
  .hero-btn-primary,
  .hero-btn-secondary {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .hero-social-link {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
  
  .hero-image {
    order: -1;
    margin-bottom: 0.75rem;
  }
  
  .hero-photo {
    max-width: 240px;
    width: 100%;
  }
}

/* ========== HERO DIVIDER ========== */
.hero-divider {
  background: linear-gradient(90deg, #620080 0%, #ec4899 100%);
  padding: 1.5rem 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.divider-content {
  display: flex;
  gap: 4rem;
  animation: scrollText 30s linear infinite;
  white-space: nowrap;
  width: fit-content;
}

.divider-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 2px;
  flex-shrink: 0;
}

@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .hero-divider {
    padding: 1rem 0;
  }
  
  .divider-text {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
  
  .divider-content {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-divider {
    padding: 0.75rem 0;
  }
  
  .divider-text {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
  }
  
  .divider-content {
    gap: 1.5rem;
  }
}

/* ========== SOCIAL SECTION - CONTAINER STYLE ========== */
.social-container {
  background: rgba(19, 6, 23, 0.8);
  border: 2px solid rgba(147, 51, 234, 0.6);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  box-shadow: 0 0 20px rgba(147, 51, 234, 0.4), inset 0 0 20px rgba(147, 51, 234, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.social {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.social a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social a:hover {
  color: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px) scale(1.1);
  filter: drop-shadow(0 0 10px rgba(147, 51, 234, 0.8));
}

@media (max-width: 768px) {
  .social-container {
    padding: 1rem 1.5rem;
  }
  
  .social {
    gap: 1.5rem;
  }
  
  .social a {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}

/* ========== KEY FEATURES SECTION ========== */
.key-features-section {
  padding: 6rem 0;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
}

.key-features-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  margin-bottom: 3rem;
}

.key-features-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.key-features-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin: 0;
  text-align: center;
}

.key-features-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  text-align: center;
}

.key-features-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: linear-gradient(90deg, #620080 0%, #ec4899 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
  align-self: flex-start;
}

.key-features-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.5);
}

.key-features-cards {
  display: flex;
  width: 100%;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 1.5rem;
  align-items: stretch;
  flex-wrap: wrap;
}

@media (max-width: 968px) {
  .key-features-cards {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.feature-card {
  background: rgba(42, 6, 44, 0.6);
  border-radius: 16px;
  padding: 1.25rem;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(147, 51, 234, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 0;
  max-width: 320px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(147, 51, 234, 0.5);
  box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

.slider-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(147, 51, 234, 0.2);
  border: 1px solid rgba(147, 51, 234, 0.4);
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 10;
  position: relative;
}

.slider-nav-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  transition: all 0.3s ease;
}

.slider-nav-btn:hover {
  background: rgba(147, 51, 234, 0.4);
  border-color: rgba(147, 51, 234, 0.6);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.4);
}

.slider-nav-btn:active {
  transform: scale(0.95);
}

.slider-nav-btn i {
  position: relative;
  z-index: 1;
}

.feature-icon-wrapper {
  width: 50px;
  height: 50px;
  background: rgba(147, 51, 234, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
  border: 2px solid rgba(147, 51, 234, 0.5);
}

.feature-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.feature-card-description {
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1rem 0;
  flex: 1;
}

.feature-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(90deg, #620080 0%, #ec4899 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  margin-top: auto;
  width: 100%;
}

.feature-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(147, 51, 234, 0.5);
  background: linear-gradient(90deg, #ec4899 0%, #620080 100%);
}

/* Slider dots indicator */
.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0 24px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(147, 51, 234, 0.3);
  border: 2px solid rgba(147, 51, 234, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.slider-dot:hover {
  background: rgba(147, 51, 234, 0.5);
  transform: scale(1.2);
}

.slider-dot.active {
  background: rgba(147, 51, 234, 0.8);
  border-color: rgba(147, 51, 234, 1);
  width: 12px;
  height: 12px;
  box-shadow: 0 0 10px rgba(147, 51, 234, 0.5);
}

@media (max-width: 968px) {
  .key-features-section {
    padding: 4rem 0;
  }
  
  .key-features-wrapper {
    margin-bottom: 2rem;
    padding: 0 20px;
  }
  
  .key-features-title {
    font-size: 2.5rem;
  }
  
  .key-features-description {
    font-size: 1rem;
  }
  
  .key-features-text {
    text-align: center;
    max-width: 100%;
  }
  
  .key-features-cards {
    padding: 0 20px;
  }
  
  .key-features-cards .feature-card {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .key-features-section {
    padding: 3rem 0;
  }
  
  .key-features-wrapper {
    padding: 0 16px;
    margin-bottom: 1.5rem;
  }
  
  .key-features-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .key-features-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .key-features-cards {
    padding: 0 16px;
    gap: 1rem;
  }
  
  .feature-card {
    padding: 1rem;
  }
  
  .feature-icon-wrapper {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .feature-card-title {
    font-size: 1rem;
  }
  
  .feature-card-description {
    font-size: 0.85rem;
  }
  
  .feature-card-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .key-features-section {
    padding: 2.5rem 0;
  }
  
  .key-features-title {
    font-size: 1.75rem;
  }
  
  .key-features-description {
    font-size: 0.9rem;
  }
}

/* ========== ABOUT & COMMERCIAL SECTION ========== */
.about-commercial-section {
  padding: 6rem 0;
  position: relative;
  background-image: url('../img/coverBlockcommerchwsk.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.8;
}

.about-commercial-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-commercial-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.about-commercial-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin: 0;
}

.about-commercial-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.about-commercial-social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1.5rem 2rem;
  background: rgba(42, 6, 44, 0.8);
  border: 2px solid rgba(147, 51, 234, 0.6);
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(147, 51, 234, 0.3);
  width: fit-content;
}

.social-icon-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(147, 51, 234, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(147, 51, 234, 0.4);
}

.social-icon-link:hover {
  background: rgba(147, 51, 234, 0.5);
  border-color: rgba(147, 51, 234, 0.8);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(147, 51, 234, 0.5);
}

.commercial-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.commercial-grid-card {
  background: rgba(42, 6, 44, 0.6);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(147, 51, 234, 0.2);
  text-decoration: none;
  color: inherit;
  aspect-ratio: 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.commercial-grid-card:hover {
  transform: translateY(-5px);
  border-color: rgba(147, 51, 234, 0.5);
  box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

.commercial-grid-icon {
  width: 60px;
  height: 60px;
  background: rgba(147, 51, 234, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  border: 2px solid rgba(147, 51, 234, 0.5);
}

.commercial-grid-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.commercial-grid-description {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  flex: 1;
}

@media (max-width: 968px) {
  .about-commercial-section {
    padding: 4rem 0;
    background-attachment: scroll;
  }
  
  .about-commercial-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 20px;
  }
  
  .about-commercial-title {
    font-size: 2.5rem;
  }
  
  .about-commercial-description {
    font-size: 1rem;
  }
  
  .about-commercial-text {
    text-align: center;
  }
  
  .about-commercial-btn {
    align-self: center;
  }
  
  .commercial-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .commercial-grid-card {
    padding: 1.5rem;
  }
}

@media (max-width: 640px) {
  .about-commercial-section {
    padding: 3rem 0;
  }
  
  .about-commercial-wrapper {
    padding: 0 16px;
    gap: 2rem;
  }
  
  .about-commercial-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .about-commercial-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .commercial-cards-grid {
    gap: 1rem;
  }
  
  .commercial-grid-card {
    padding: 1.25rem;
  }
  
  .commercial-grid-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }
  
  .commercial-grid-title {
    font-size: 1.1rem;
  }
  
  .commercial-grid-description {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .about-commercial-section {
    padding: 2.5rem 0;
  }
  
  .about-commercial-title {
    font-size: 1.75rem;
  }
  
  .about-commercial-description {
    font-size: 0.9rem;
  }
}

/* ========== SKILLS SECTION ========== */
.skills-section {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, rgba(98, 0, 128, 0.1) 100%);
}

.skills-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.skills-expertise,
.skills-software {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.skills-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.skills-title i {
  color: #ffb800;
  font-size: 1.5rem;
}

.expertise-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.expertise-btn {
  background: rgba(255, 140, 0, 0.2);
  border: 1px solid rgba(255, 140, 0, 0.4);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: default;
}

.expertise-btn:hover {
  background: rgba(255, 140, 0, 0.3);
  border-color: rgba(255, 140, 0, 0.6);
  transform: translateY(-2px);
}

.software-icons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.software-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.software-icon-name {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  margin-top: 0.5rem;
}

.software-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(42, 6, 44, 0.3);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 2px solid rgba(147, 51, 234, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: default;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.software-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.software-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* HTML */
.software-icon[title="HTML"] i {
  color: #e34c26;
}

.software-icon[title="HTML"]:hover {
  background: rgba(227, 76, 38, 0.2);
  border-color: rgba(227, 76, 38, 0.5);
  box-shadow: 0 8px 25px rgba(227, 76, 38, 0.4);
}

/* CSS */
.software-icon[title="CSS"] i {
  color: #264de4;
}

.software-icon[title="CSS"]:hover {
  background: rgba(38, 77, 228, 0.2);
  border-color: rgba(38, 77, 228, 0.5);
  box-shadow: 0 8px 25px rgba(38, 77, 228, 0.4);
}

/* JavaScript */
.software-icon[title="JavaScript"] i {
  color: #f7df1e;
}

.software-icon[title="JavaScript"]:hover {
  background: rgba(247, 223, 30, 0.2);
  border-color: rgba(247, 223, 30, 0.5);
  box-shadow: 0 8px 25px rgba(247, 223, 30, 0.4);
}

/* React */
.software-icon[title="React"] i {
  color: #61dafb;
}

.software-icon[title="React"]:hover {
  background: rgba(97, 218, 251, 0.2);
  border-color: rgba(97, 218, 251, 0.5);
  box-shadow: 0 8px 25px rgba(97, 218, 251, 0.4);
}

/* Figma */
.software-icon[title="Figma"] i {
  color: #f24e1e;
}

.software-icon[title="Figma"]:hover {
  background: rgba(242, 78, 30, 0.2);
  border-color: rgba(242, 78, 30, 0.5);
  box-shadow: 0 8px 25px rgba(242, 78, 30, 0.4);
}

/* After Effects */
.software-icon[title="After Effects"] i {
  color: #9999ff;
}

.software-icon[title="After Effects"]:hover {
  background: rgba(153, 153, 255, 0.2);
  border-color: rgba(153, 153, 255, 0.5);
  box-shadow: 0 8px 25px rgba(153, 153, 255, 0.4);
}

/* Photoshop */
.software-icon[title="Photoshop"] i {
  color: #31a8ff;
  font-size: 2rem;
}

.software-icon[title="Photoshop"]:hover {
  background: rgba(49, 168, 255, 0.2);
  border-color: rgba(49, 168, 255, 0.5);
  box-shadow: 0 8px 25px rgba(49, 168, 255, 0.4);
}

/* Illustrator */
.software-icon[title="Illustrator"] i {
  color: #ff9a00;
}

.software-icon[title="Illustrator"]:hover {
  background: rgba(255, 154, 0, 0.2);
  border-color: rgba(255, 154, 0, 0.5);
  box-shadow: 0 8px 25px rgba(255, 154, 0, 0.4);
}

.software-icon-text {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 968px) {
  .skills-section {
    padding: 4rem 0;
  }
  
  .skills-wrapper {
    gap: 3rem;
    padding: 0 20px;
  }
  
  .skills-title {
    font-size: 1.75rem;
  }
  
  .software-icons-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  
  .software-icon {
    width: 70px;
    height: 70px;
  }
  
  .software-icon i {
    font-size: 1.75rem;
  }
  
  .software-icon-name {
    font-size: 0.8rem;
  }
  
  .software-icon-text {
    font-size: 0.8rem;
  }
}

@media (max-width: 640px) {
  .skills-section {
    padding: 3rem 0;
  }
  
  .skills-wrapper {
    gap: 2.5rem;
    padding: 0 16px;
  }
  
  .skills-title {
    font-size: 1.5rem;
  }
  
  .skills-title i {
    font-size: 1.3rem;
  }
  
  .software-icons-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.875rem;
  }
  
  .software-icon {
    width: 60px;
    height: 60px;
  }
  
  .software-icon i {
    font-size: 1.5rem;
  }
  
  .software-icon-name {
    font-size: 0.75rem;
  }
  
  .expertise-buttons {
    justify-content: center;
    gap: 0.75rem;
  }
  
  .expertise-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .skills-section {
    padding: 2.5rem 0;
  }
  
  .skills-wrapper {
    gap: 2rem;
  }
  
  .skills-title {
    font-size: 1.35rem;
  }
  
  .software-icons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .software-icon {
    width: 65px;
    height: 65px;
  }
  
  .expertise-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .expertise-btn {
    width: 100%;
    text-align: center;
  }
}

@keyframes onePulse {
  0% {
    box-shadow: 0px 0px 0px 0px rgba(92, 103, 255, 0.3);
  }
  50% {
    box-shadow: 0px 0px 0px 12px rgba(92, 103, 255, 0.1);
  }
  100% {
    box-shadow: 0px 0px 0px 4px rgba(92, 103, 255, 0.3);
  }
}
@keyframes fadeInItem {
  100% {
    transform: translatex(0px);
    opacity: 1;
  }
}
.daily-word {
  color: black;
  position: relative;
}
.daily-word.active .more-button-list {
  opacity: 1;
  transform: scale(1);
}
.daily-word.active .more-button-list-item {
  animation: fadeInItem 0.6s 0.2s forwards;
}
.daily-word.active .more-button-list-item:nth-child(2) {
  animation-delay: 0.4s;
}
.daily-word.active .more-button-list-item:nth-child(3) {
  animation-delay: 0.6s;
}
.daily-word.active .more-button-list-item:nth-child(4) {
  animation-delay: 0.8s;
}
.daily-word.active .more-button {
  animation: onePulse 0.6s forwards linear;
}
.daily-word.active .menu-icon-wrapper {
  transform: rotate(-45deg);
}
.daily-word.active .menu-icon-line.first {
  transform: rotate(-90deg) translateX(1px);
}
.daily-word.active .menu-icon-line.last {
  transform: rotate(-90deg) translateX(-1px);
}
.daily-word .more-button {
  cursor: pointer;
  width: 100px;
  height: 30px;
  display: flex;
  border-radius: 4px;
  align-items: center;
  background-color: #f0763e;
  justify-content: center;
  box-shadow: 0px 0px 0px 4px rgba(92, 103, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: 0.2s ease-in;
  color: #fff;
  position: relative;
  z-index: 2;
}
.daily-word .more-button-list {
  background-color: transparent;
  border-radius: 8px;
  list-style-type: none;
  box-shadow: 0px 0px 4px 4px rgba(150, 157, 249, 0.16);
  padding: 2px;
  position: absolute;
  left: 100px;
  bottom: 0;
  opacity: 0;
  transform: scale(0);
  transform-origin: bottom left;
  transition: all 0.3s ease 0.1s;
}
.daily-word .more-button-list .wordList {
  width: 100%;
  color: white;
  min-width: 300px;
  background: #043c5f;
  border-radius: 8px;
  border: 2px solid #1195ad;
  padding: 10px;
}
.daily-word .more-button-list .wordList ul {
  list-style: none;
  max-height: 200px;
  overflow-y: auto;
}
.daily-word .more-button-list .wordList ul li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.daily-word .more-button-list .wordList ul li > span {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 24px;
  font-size: 14px;
}
.daily-word .more-button-list .wordList ul li > span.likes {
  position: relative;
  width: 24px;
  height: 24px;
}
.daily-word .more-button-list .wordList ul li > span.likes svg {
  color: #f0763e;
  position: absolute;
  font-size: 24px;
  z-index: 1;
}
.daily-word .more-button-list .wordList ul li > span.likes span {
  position: absolute;
  top: 0px;
  left: 9px;
  color: white;
  z-index: 2;
  font-size: 12px;
}
.daily-word .more-button-list .wordList ul li > span.translate {
  width: 35%;
  padding: 0 10px;
  min-width: 150px;
}
.daily-word .more-button-list .wordList ul li a {
  width: 15%;
  padding: 0 10px;
  min-width: 100px;
  font-size: 14px;
}
.daily-word .more-button-list .wordList ul li a.title {
  color: white;
}

.home .hero {
  width: 100%;
  height: 100%;
  color: white;
  margin-bottom: 40px;
}
.home .hero .search_area-wrapper {
  width: 100%;
  min-height: 220px;
  padding-bottom: 40px;
  background-color: #043c5f;
  position: relative;
}
.home .hero .search_area-wrapper > img {
  width: 100%;
}
.home .hero .search_area-wrapper .search_area {
  width: 100%;
  padding-top: 60px;
}
.home .hero .search_area-wrapper .search_area .selectors {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}
.home .hero .search_area-wrapper .search_area .selectors > span {
  cursor: pointer;
  width: 100px;
  height: 30px;
  display: flex;
  border-radius: 4px;
  align-items: center;
  background-color: #f0763e;
  justify-content: center;
}
.home .categories_wrapper {
  width: 100%;
}
.home .categories_wrapper > h2 {
  text-align: center;
  margin-bottom: 16px;
}
.home .categories_wrapper > p {
  text-align: center;
  max-width: 410px;
  margin: 0 auto 20px;
}
.home .categories_wrapper .categories-regular {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
  padding: 20px;
  padding-bottom: 30px;
  flex-wrap: wrap;
  background: #cfe6e4;
  border: 1px solid #64b8c4;
  margin: 0 20px;
  margin-bottom: 70px;
  border-radius: 30px;
}
.home .categories_wrapper .categories-regular .row {
  display: flex;
  min-width: 300px;
  gap: 20px;
  width: 50%;
  flex-wrap: wrap;
  justify-content: space-around;
}
.home .categories_wrapper .categories-regular .row > .card {
  background: transparent;
  max-width: 270px;
  min-width: 250px;
  width: 50%;
  height: 190px;
  border: 3px solid #002d49;
  border-radius: 12px;
  z-index: 1;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  text-align: center;
}
.home .categories_wrapper .categories-regular .row > .card a {
  height: 100%;
  text-decoration: none;
}
.home .categories_wrapper .categories-regular .row > .card img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: calc(100% - 26px);
  border-radius: 12px;
}
.home .categories_wrapper .categories-regular .row > .card span {
  display: block;
  color: black;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
}
.home .categories_wrapper .categories-regular .row .double-card {
  max-width: 230px;
  min-width: 250px;
  width: 50%;
  height: 190px;
  border-radius: 12px;
  z-index: 1;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.home .categories_wrapper .categories-regular .row .double-card > .card {
  background: #043c5f;
  width: 100%;
  height: 45%;
  border-radius: 12px;
  padding: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.home .categories_wrapper .categories-regular .row .double-card > .card a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.home .categories_wrapper .categories-regular .row .double-card > .card img {
  width: 50%;
  border-radius: 4px;
}
.home .categories_wrapper .categories-regular .row .double-card > .card svg {
  color: #f0763e;
  margin-right: 2px;
}
.home .categories_wrapper .categories-regular .row .double-card > .card span {
  display: flex;
  color: white;
  font-weight: 500;
  font-size: 12px;
}
.home .categories_wrapper .category-visual {
  position: relative;
  display: flex;
  background: #f9f2e6;
  border: 1px solid #64b8c4;
  justify-content: center;
  gap: 30px;
  align-items: end;
  padding: 40px;
  flex-wrap: wrap;
  margin: 0 20px;
  border-radius: 10px;
  margin-bottom: 40px;
}
.home .categories_wrapper .category-visual h2 {
  text-align: center;
  font-size: 26px;
  width: 100%;
}
.home .categories_wrapper .category-visual p {
  text-align: center;
  font-size: 20px;
}
.home .categories_wrapper .category-visual > .card {
  width: 40%;
  max-width: 600px;
  height: 307px;
  border: 3px solid #002d49;
  border-radius: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  text-align: center;
}
.home .categories_wrapper .category-visual > .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.home .categories_wrapper .clickable-dictionaries {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: end;
  flex-wrap: wrap;
  min-height: 300px;
}
.home .categories_wrapper .clickable-dictionaries > .card {
  position: relative;
  display: flex;
  height: 100%;
  gap: 30px;
  justify-content: center;
  align-items: center;
  padding: 30px;
  padding-bottom: 30px;
  flex-wrap: wrap;
  background: #f9f2e6;
  border: 1px solid #64b8c4;
  margin: 0 140px;
  margin-bottom: 70px;
  border-radius: 12px;
}
.home .categories_wrapper .clickable-dictionaries > .card img {
  height: 220px;
  border-radius: 20px;
}
.home .categories_wrapper .clickable-dictionaries > .card > div {
  display: flex;
  height: 100%;
  width: 60%;
  gap: 20px;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding: 0 20px;
  max-width: 500px;
}
.home .categories_wrapper .clickable-dictionaries > .card > div a {
  text-decoration: none;
  cursor: pointer;
}
.home .categories_wrapper .clickable-dictionaries > .card > div a button {
  width: 130px;
  height: 40px;
  background: #f0763e;
  color: white;
  border-radius: 8px;
  font-size: 16px;
  line-height: 16px;
  cursor: pointer;
}
.home .categories_wrapper .clickable-dictionaries > .card > div h2 {
  display: block;
  color: black;
  width: 100%;
  font-size: 20px;
  line-height: 26px;
  text-align: left;
}
.home .categories_wrapper .clickable-dictionaries > .card > div p {
  color: black;
  text-align: left;
  width: 80%;
  margin-bottom: 30px;
}
.home .team-section {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
.home .team-section__img {
  max-width: 400px;
  width: 100%;
}
.home .team-section__content {
  background: #7fd1d1;
  border-radius: 16px;
  padding: 32px 24px;
  max-width: 800px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.home .team-section__content h2 {
  text-align: center;
  font-size: 2.5rem;
  font-style: italic;
  margin: 0 0 16px 0;
}
.home .team-section__content p {
  font-style: italic;
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
  text-align: justify;
}

@media (max-width: 768px) {
  .home .hero .search_area-wrapper .search_area .search_filter .filter .row.first .search-bar {
    width: 100%;
    margin-bottom: 10px;
  }
  .home .hero .search_area-wrapper .search_area .search_filter .filter .row.first .search-bar > button {
    width: 60px;
  }
  .home .hero .search_area-wrapper .search_area .search_filter .filter .row.first .filters {
    width: 100%;
  }
}
@media (max-width: 1165px) {
  .home .categories_wrapper .clickable-dictionaries > .card {
    flex-direction: column;
    align-items: center;
  }
  .home .categories_wrapper .clickable-dictionaries > .card img {
    width: 70%;
    margin-bottom: 24px;
  }
  .home .categories_wrapper .clickable-dictionaries > .card > div {
    width: 70%;
    padding: 0;
  }
  .home .categories_wrapper .clickable-dictionaries > .card > div h2 {
    text-align: center;
  }
  .home .categories_wrapper .clickable-dictionaries > .card > div p {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .home .categories_wrapper .clickable-dictionaries > .card > div a {
    margin: 0 auto;
  }
}

/* ========== GENERAL RESPONSIVE FIXES ========== */
@media (max-width: 768px) {
  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
  }
  
  /* Ensure images don't overflow */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Fix text overflow */
  * {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Better touch targets for mobile */
  a, button {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  /* Smaller base font size for very small screens */
  body {
    font-size: 14px;
  }
  
  /* Better spacing for small screens */
  section {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ========== MASCOT RESPONSIVE ========== */
.mascot-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mascot {
  position: relative;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.mascot-svg {
  display: block;
  width: 80px;
  height: 80px;
}

.mascot-speech {
  position: absolute;
  bottom: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  min-width: 150px;
  text-align: center;
  white-space: nowrap;
}

.mascot-speech::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid white;
}

.mascot:hover .mascot-speech {
  opacity: 1;
}

.speech-text {
  font-size: 0.9rem;
  color: #620080;
}

@media (max-width: 640px) {
  .mascot-container {
    bottom: 20px;
    right: 20px;
  }
  
  .mascot-svg {
    width: 60px;
    height: 60px;
  }
  
  .mascot {
    padding: 6px;
  }
  
  .mascot-speech {
    min-width: 120px;
    padding: 0.5rem 0.75rem;
    bottom: calc(100% + 10px);
  }
  
  .speech-text {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .mascot-container {
    bottom: 16px;
    right: 16px;
  }
  
  .mascot-svg {
    width: 50px;
    height: 50px;
  }
  
  .mascot {
    padding: 5px;
  }
  
  .mascot-speech {
    min-width: 100px;
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
  }
  
  .speech-text {
    font-size: 0.75rem;
  }
}

/* ========== INLINE LINKS (для перелинковки) ========== */
.inline-link {
  color: var(--purple, #6c5ce7);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.inline-link:hover {
  color: #a29bfe;
  text-decoration: none;
}
