@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;900&family=Barlow:wght@300;400;500;600;700&display=swap');

:root {
  --bg-color: #0A0A0A;
  --text-color: #FFFFFF;
  --accent-color: #E8192C;
  --black-btn: #FFFFFF;
  --border-color: #1A1A1A;
  --font-main: 'Barlow', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-main);
  line-height: 1.5;
  overflow-x: hidden;
}

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 0;
}

.scroll-content {
  position: relative;
  z-index: 1;
  background-color: var(--bg-color);
}

a {
  text-decoration: none;
  color: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-cond);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

/* Reusable Asterisk */
.asterisk {
  color: var(--accent-color);
  display: inline-block;
  line-height: 1;
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--black-btn);
}

.btn-primary {
  background-color: var(--black-btn);
  color: #0A0A0A;
}
.btn-primary:hover {
  background-color: #ccc;
}

.btn-outline {
  background-color: transparent;
  color: var(--text-color);
  border-color: var(--text-color);
}
.btn-outline:hover {
  background-color: rgba(255,255,255,0.05);
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-brand {
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--accent-color);
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1400px;
  margin: 60px auto;
  padding: 0 5%;
  gap: 60px;
}

.hero-content h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.strikethrough {
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--text-color);
}

.hero-tags {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-bg-star {
  position: absolute;
  width: 120%;
  height: 120%;
  z-index: -1;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M45,0 L55,0 L55,40 L90,20 L95,30 L60,50 L95,70 L90,80 L55,60 L55,100 L45,100 L45,60 L10,80 L5,70 L40,50 L5,30 L10,20 L45,40 Z" fill="none" stroke="%23ef4438" stroke-width="2"/></svg>');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-image {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
}

/* Marquee */
.marquee-wrapper {
  background-color: var(--text-color);
  color: var(--bg-color);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  transform: rotate(-2deg) scale(1.05);
  margin: 60px 0 100px;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: scroll-marquee 20s linear infinite;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  align-items: center;
  width: max-content;
}

.marquee-content span {
  display: inline-flex;
  align-items: center;
  margin-right: 32px;
}

.marquee-content .asterisk {
  margin: 0 16px;
}

@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Bio Section */
.bio-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  gap: 60px;
}

.bio-left-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bio-headline {
  font-size: 3.5rem;
  line-height: 1.1;
}

.bio-text {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 24px;
}

.bio-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.bio-stat-item h4 {
  font-size: 0.7rem;
  color: var(--accent-color);
  text-transform: uppercase;
  margin-bottom: 4px;
  letter-spacing: 0.1em;
}
.bio-stat-item p {
  font-weight: 700;
  font-size: 1.1rem;
}

/* Big Stats Row */
.big-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 5%;
}

.big-stat-box {
  border: 1px solid #9B0E1C;
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-color);
}

.big-stat-box h2 {
  font-size: 3rem;
  margin-bottom: 8px;
}

.big-stat-box p {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.big-stat-box.dark {
  background-color: var(--text-color);
  color: var(--bg-color);
}

/* Awards Section */
.awards-section {
  max-width: 1000px;
  margin: 100px auto;
  padding: 0 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-top: 16px;
}

.section-header p {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #cccccc;
}

.award-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.award-item {
  border: 1px solid #9B0E1C;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  background-color: #111111;
  transition: box-shadow 0.3s ease;
}

.award-item:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.award-num {
  background-color: var(--accent-color);
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 4px;
  flex-shrink: 0;
}

.award-content {
  flex-grow: 1;
}

.award-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.award-subtitle {
  font-size: 0.9rem;
  color: #888888;
  font-style: italic;
}

.award-meta {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: right;
  flex-shrink: 0;
}

/* Portfolio Section */
.portfolio-section {
  max-width: 1400px;
  margin: 100px auto;
  padding: 0 5%;
}

@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 3.5rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-tags {
    justify-content: center;
  }
  .hero-image-wrap {
    order: -1;
  }
  .bio-section {
    grid-template-columns: 1fr;
  }
  .big-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .award-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .award-meta {
    text-align: left;
    margin-top: 12px;
  }
  .nav-links {
    display: none;
  }
}
