body{
  font-family: 'Roboto', sans-serif;
  margin:0; padding:0;
  background: linear-gradient(135deg,#1f1c2c,#928dab);
  color:#eee;
  scroll-behavior: smooth;
}
header{
  background: rgba(0,0,0,0.8);
  padding:20px;
  text-align:center;
  box-shadow: 0 0 20px #ff00ff;
}
header h1{
  font-size:2.5rem;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #00ffff;
}
header nav a{
  color:#fff;
  margin:0 15px;
  text-decoration:none;
  font-weight:bold;
  transition: 0.3s;
}
header nav a:hover{
  color:#ff0;
  transform: scale(1.1);
}
main{
  max-width: 1000px;
  margin:20px auto;
  padding:20px;
}
.cards-container{
  display:flex; flex-wrap:wrap; justify-content:center; gap:20px;
}
.card{
  perspective:1000px; width:250px; height:150px; position:relative;
}
.card-front, .card-back{
  width:100%; height:100%;
  border-radius:15px;
  padding:20px;
  color:#00ffcc;
  background: rgba(0,0,0,0.6);
  text-align:center;
  line-height:1.5rem;
  backface-visibility:hidden;
  position:absolute;
  box-shadow:0 0 30px #ff00ff;
  transition: transform 0.8s;
  display:flex; align-items:center; justify-content:center;
}
.card-front{transform: rotateY(0deg);}
.card-back{transform: rotateY(180deg);}
.card:hover .card-front{transform: rotateY(-180deg);}
.card:hover .card-back{transform: rotateY(0deg);}
.project-link{
  color:#00ffcc;
  font-weight:bold;
  text-decoration:none;
  font-size:1.2rem;
  transition:0.3s;
}
.project-link:hover{
  color:#ff0;
  transform: scale(1.1);
}
footer{
  text-align:center; padding:20px;
  background: rgba(0,0,0,0.8);
  box-shadow: 0 -5px 20px #00ffff;
}
/* Sekcja FAQ */
.faq-section {
  margin: 40px auto;
  max-width: 900px;
  padding: 30px;
  background: rgba(0,0,0,0.7);
  border-radius: 15px;
  box-shadow: 0 0 25px #00ffff, 0 0 50px #ff00ff;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 2rem;
  color: #ff0;
  text-shadow: 0 0 10px #ff00ff, 0 0 15px #00ffff;
}

.faq-item {
  margin-bottom: 20px;
  padding: 15px 20px;
  border-left: 5px solid #ff00ff;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  transition: 0.3s;
}

.faq-item:hover {
  background: rgba(255,255,255,0.1);
  transform: scale(1.02);
}

.faq-question {
  font-weight: bold;
  color: #00ffcc;
  margin-bottom: 10px;
}

.faq-answer {
  color: #eee;
  line-height: 1.6rem;
}
