* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #f5f5f5;
  background: #181818;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 40px;
  padding: 0 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
.nav-logo {
  padding-left: 10px;
}
.nav-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff9800;
  letter-spacing: 5px;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin-left: auto;
  padding-left: 700px;
}
.nav-link {
  text-decoration: none;
  color: #f5f5f5;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
  font-size: 1.1rem;
}
.nav-link:hover {
  color: #ff9800;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #181818 60%, #ff9800 100%);
  color: #f5f5f5;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10rem;
}
.hero-content {
  flex: 1;
  margin-left: -50px;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.gradient-text {
  background: linear-gradient(90deg, #ff9800 0%, #ffb347 50%, #ff9800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn-primary {
  background: linear-gradient(90deg, #ff9800 0%, #ffb347 100%);
  color: #181818;
}
.btn-primary:hover {
  background: #ff9800;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px #ff980044;
}
.btn-secondary {
  background: transparent;
  color: #ff9800;
  border: 2px solid #ff9800;
}
.btn-secondary:hover {
  background: #ff9800;
  color: #181818;
  transform: translateY(-2px);
}
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -100px;
}
.profile-photo {
  width: 450px;
  height: 450px;
  object-fit: cover;
  border-radius: 100%;
  border: 8px solid #ff9800;
  box-shadow: 0 15px 40px #ff980044;
}

section {
  padding: 80px 0;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #ff9800;
  letter-spacing: 1px;
}

.about {
  background: #232323;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  justify-content: space-between;
}
.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #e0e0e0;
}
.about-stats {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 40px auto 0 auto;
  max-width: 900px;
}
.stat {
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 300px;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: #181818;
  border-radius: 25px;
  box-shadow: 0 8px 32px #ff980044;
  transition: transform 0.3s;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stat:hover {
  transform: translateY(-5px);
}
.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff9800;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.9rem;
  color: #e0e0e0;
  font-weight: 500;
}


.skills {
  background: #181818;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.skill-category h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #ff9800;
  font-weight: 600;
}
.skill-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.skill-item {
  background: #232323;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px #ff98001a;
  transition: transform 0.3s;
}
.skill-item:hover {
  transform: translateY(-3px);
}
.skill-name {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ff9800;
}
.skill-bar {
  width: 100%;
  height: 8px;
  background: #333;
  border-radius: 4px;
  overflow: hidden;
}
.skill-progress {
  height: 100%;
  background: linear-gradient(90deg, #ff9800 0%, #ffb347 100%);
  border-radius: 4px;
  transition: width 1s;
}

.projects {
  background: #232323;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}
.project-card {
  background: #181818;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px #ff98001a;
  transition: all 0.3s;
}
.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px #ff980044;
}
.project-content {
  padding: 2rem;
}
.project-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ff9800;
  font-weight: 600;
}
.project-content p {
  color: #e0e0e0;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.project-tech span {
  background: linear-gradient(90deg, #ff9800 0%, #ffb347 100%);
  color: #181818;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.services {
  background: #181818;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.service-card {
  background: #232323;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px #ff98001a;
  transition: all 0.3s;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px #ff980044;
}
.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(90deg, #ff9800 0%, #ffb347 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.service-icon i {
  font-size: 2rem;
  color: #181818;
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #ff9800;
  font-weight: 600;
}
.service-card p {
  color: #e0e0e0;
  line-height: 1.6;
}

.contact {
  background: #232323;
}
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #ff9800;
  font-weight: 600;
}
.contact-info p {
  color: #e0e0e0;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-item i {
  width: 40px;
  height: 40px;
  background: linear-gradient(90deg, #ff9800 0%, #ffb347 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #181818;
}
.contact-form {
  background: #181818;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px #ff98001a;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #333;
  border-radius: 10px;
  font-size: 1rem;
  background: #232323;
  color: #ff9800;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff9800;
}

.footer {
  background: #181818;
  color: #ff9800;
  padding: 3rem 0 1rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  font-weight: 600;
  color: #ff9800;
}
.footer-section ul {
  list-style: none;
}
.footer-section ul li {
  margin-bottom: 0.5rem;
}
.footer-section ul li a {
  color: #ffb347;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-section ul li a:hover {
  color: #ff9800;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  width: 40px;
  height: 40px;
  background: #232323;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff9800;
  text-decoration: none;
  transition: all 0.3s;
}
.social-links a:hover {
  background: linear-gradient(90deg, #ff9800 0%, #ffb347 100%);
  color: #181818;
  transform: translateY(-3px);
}
.discord-footer {
  display: inline-flex;
  align-items: center;
  background: #232323;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  justify-content: center;
  color: #ff9800;
  transition: background 0.3s, color 0.3s;
  position: relative;
}
.discord-footer i {
  font-size: 1em;
}
.discord-username {
  display: inline-flex;
  align-items: center;
  color: #ff9800;
  font-size: 1.1em;
  font-family: inherit;
  background: none;
  border-radius: 0;
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #232323;
  color: #ffb347;
}

@media (max-width: 900px) {
  .about-content { flex-direction: column; gap: 2rem; }
  .hero-content { margin-left: 0; }
  .hero-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0 10px;
  }
  .hero-content {
    margin-left: 0;
    text-align: center;
    width: 100%;
  }
  .hero-image {
    margin-right: 0;
    margin-bottom: 1.5rem;
    justify-content: center;
    width: 100%;
  }
  .profile-photo {
    width: 220px;
    height: 220px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .nav-menu { position: fixed; left: -100%; top: 70px; flex-direction: column; background: #181818; width: 100%; text-align: center; transition: 0.3s; box-shadow: 0 10px 27px #ff98001a; padding: 2rem 0; }
  .nav-menu.active { left: 0; }
  .hamburger { display: flex; }
  .hero-title { font-size: 2.5rem; }
  .hero-buttons { flex-direction: column; }
  .contact-content { grid-template-columns: 1fr; }
  .section-title { font-size: 2rem; }
}

.contact-wild {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
}
.contact-wild-card {
  display: flex;
  background: linear-gradient(120deg, #232323 60%, #181818 100%);
  border-radius: 32px;
  box-shadow: 0 8px 48px #ff980033;
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  margin: 60px auto 0 auto;
  min-height: 400px;
}
.contact-wild-left {
  flex: 1.2;
  padding: 48px 36px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-wild-cta {
  font-size: 2rem;
  color: #ff9800;
  margin-bottom: 18px;
  font-weight: 700;
}
.contact-wild-message {
  color: #e0e0e0;
  margin-bottom: 32px;
  font-size: 1.1rem;
}
.contact-wild-info {
  margin-bottom: 32px;
}
.contact-wild-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  font-size: 1.1rem;
  color: #fff;
}
.contact-wild-item i {
  background: #ff9800;
  color: #181818;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3em;
}
.contact-wild-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff9800 0%, #ffb347 100%);
  color: #181818;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 30px;
  font-size: 1.1em;
  text-decoration: none;
  box-shadow: 0 4px 24px #ff980044;
  transition: background 0.3s, color 0.3s, transform 0.2s;
  margin-top: 10px;
}
.contact-wild-btn:hover {
  background: #ff9800;
  color: #fff;
  transform: scale(1.05);
}
.contact-wild-right {
  flex: 1;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 24px 36px 24px;
  min-width: 260px;
  position: relative;
}
.contact-wild-photo {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #ff9800;
  box-shadow: 0 0 60px 20px #ff980066;
  margin-bottom: 28px;
  background: radial-gradient(circle, #ff9800 0%, #181818 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.contact-wild-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.contact-wild-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 10px;
}
.contact-wild-socials a, .contact-wild-socials .discord-footer {
  width: 40px;
  height: 40px;
  background: #232323;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff9800;
  font-size: 1.3em;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.contact-wild-socials a:hover, .contact-wild-socials .discord-footer:hover {
  background: linear-gradient(90deg, #ff9800 0%, #ffb347 100%);
  color: #181818;
  transform: translateY(-3px) scale(1.1);
}
.contact-wild-socials .discord-username {
  color: #ff9800;
  font-size: 1.1em;
  margin-left: 0.5rem;
  font-family: inherit;
  background: none;
  border-radius: 0;
}
@media (max-width: 900px) {
  .contact-wild-card {
    flex-direction: column;
    align-items: center;
    padding: 0 0 24px 0;
    min-width: 0;
  }
  .contact-wild-left, .contact-wild-right {
    padding: 32px 18px 0 18px;
    min-width: 0;
    width: 100%;
  }
  .contact-wild-photo {
    width: 120px;
    height: 120px;
    margin-bottom: 18px;
    box-shadow: 0 0 40px 10px #ff980066;
    background: radial-gradient(circle, #ff9800 0%, #232323 80%);
  }
  .contact-wild-socials {
    justify-content: center;
  }
}
