body { 
    background-color: #050505; 
    font-family: 'Manrope', sans-serif; 
}
.icon-divider {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 3rem 0; /* Відступи зверху та знизу */
}

.divider-line {
  flex-grow: 1; /* Лінії заповнюють вільний простір */
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(251, 191, 38, 0.4), transparent);
}

.divider-icon {
  color: #FBBF24; /* Фірмовий жовтий колір */
  font-size: 1.75rem; /* Розмір іконки */
  padding: 0 1.5rem; /* Відступи по боках від іконки */
  animation: spin 10s linear infinite; /* Анімація обертання, як в лого */
}

/* Якщо анімація 'spin' ще не визначена глобально */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
 @keyframes rotate-bg {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

.gradient-text { 
    background: linear-gradient(90deg, #FDBA74, #FBBF24, #FDE047); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

.reveal { 
    opacity: 0; 
    transform: translateY(40px); 
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; 
}

.reveal.visible { 
    opacity: 1; 
    transform: translateY(0); 
}

.mobile-menu { 
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out; 
}

.mobile-menu a { 
    opacity: 0; 
    transform: translateY(10px); 
    animation: fadeIn 0.5s forwards; 
}

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

.animated-gradient-btn { 
    background-size: 200% auto; 
    transition: background-position 0.5s ease; 
}

.animated-gradient-btn:hover { 
    background-position: right center; 
}

#particles-js { 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    top: 0; 
    left: 0; 
    z-index: 1; 
}

.tab-button {
    background-color: #1a1a1a;
    border: 2px solid #333;
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tab-button:hover {
    background-color: #222;
    border-color: #f59e0b; /* amber-500 */
    transform: translateY(-3px);
}

.tab-button.tab-active {
    background-image: linear-gradient(to right, #f59e0b, #facc15);
    border-color: #facc15;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(250, 204, 21, 0.3);
}

.tab-button.tab-active .text-white {
    color: black;
}

.tab-button.tab-active .text-gray-400 {
    color: #444;
}

.tab-button.tab-active i {
    color: black;
}

.tab-content-panel {
    transform: translateY(20px);
}
  
.tab-content-panel.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    z-index: 10;
}
  
summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}
 /* --- ФОРМА КОНТАКТІВ --- */
    .contact-input {
        width: 100%;
        background-color: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0.5rem;
        padding: 0.75rem 1rem;
        color: white;
        transition: border-color 0.3s, box-shadow 0.3s;
    }
    .contact-input::placeholder { color: rgba(255, 255, 255, 0.4); }
    .contact-input:focus {
        outline: none;
        border-color: #FBBF24;
        box-shadow: 0 0 0 2px rgba(251, 191, 38, 0.5);
    }