* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  font-family: "Arial", sans-serif;
  line-height: 1.2;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.header {
  background: #ff0000;
  color: #000;
  padding: 50px 20px;
  text-align: center;
  margin-bottom: 40px;
  transform: skew(-5deg);
  position: relative;
}

.header h1 {
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
  transform: skew(5deg);
}

.profile-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 60px;
  background: #fff;
  color: #000;
  padding: 40px;
  border: 10px solid #ff0000;
}

.profile-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 5px solid #000;
  transform: rotate(-3deg);
  cursor: pointer;
  transition: transform 0.5s ease;
}

.profile-image:hover {
  transform: rotate(-3deg) scale(1.05);
}

.profile-image.spinning {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.intro-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ff0000;
}

.intro-text p {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.social-links {
  margin-top: 30px;
}

.social-links a {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 15px 30px;
  margin: 10px 10px 10px 0;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  border: 3px solid #ff0000;
  transition: all 0.2s;
}

.social-links a:hover {
  background: #ff0000;
  color: #000;
  transform: translateX(10px);
}

.section {
  margin-bottom: 60px;
  background: #fff;
  color: #000;
  padding: 40px;
  border-left: 20px solid #ff0000;
  position: relative;
}

.section h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  color: #ff0000;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.job-description {
  margin-bottom: 40px;
  padding: 20px;
  background: #f0f0f0;
  border: 3px solid #000;
  position: relative;
}

.job-description:nth-child(even) {
  transform: translateX(20px);
}

.job-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ff0000;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.job-date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
  font-style: italic;
}

.job-description ul {
  list-style: none;
  margin: 15px 0;
}

.job-description li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.job-description li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: #ff0000;
  font-weight: bold;
}

.tech-stack {
  background: #000;
  color: #fff;
  padding: 15px;
  margin-top: 15px;
  font-weight: bold;
  text-transform: uppercase;
  border: 2px solid #ff0000;
}

.honours-link {
  display: inline-block;
  background: #ff0000;
  color: #000;
  padding: 20px 40px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  text-transform: uppercase;
  border: 5px solid #000;
  margin-top: 20px;
  transition: all 0.3s;
}

.honours-link:hover {
  background: #000;
  color: #ff0000;
  transform: scale(1.1);
}

.footer {
  background: #ff0000;
  color: #000;
  text-align: center;
  padding: 30px;
  margin-top: 60px;
  font-weight: bold;
  text-transform: uppercase;
}

.random-shape {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #ff0000;
  transform: rotate(45deg);
}

.shape-1 {
  top: 20px;
  right: 20px;
}

.shape-2 {
  bottom: 20px;
  left: 20px;
  background: #000;
}

@media (max-width: 768px) {
  .profile-section {
    grid-template-columns: 1fr;
  }

  .header h1 {
    font-size: 2.5rem;
  }

  .section h2 {
    font-size: 2rem;
  }
}
