/* Trustly.dev/2026 Conference Landing Page Styles */

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

body {
  font-family: 'Trustly Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

a {
  color: #0EE06E;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #12ff7d;
  text-decoration: underline;
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #000 0%, #0a2e1f 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(14, 224, 110, 0.1) 0%, transparent 70%);
}

.hero-content {
  text-align: center;
  z-index: 1;
  padding: 2rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0EE06E;
  text-shadow: 0 0 30px rgba(14, 224, 110, 0.5);
}

.hero-subtitle {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #fff;
  font-weight: 300;
}

.hero-edition {
  font-size: 1.1rem;
  color: #888;
  margin-bottom: 3rem;
  font-style: italic;
}

.hero-details {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.detail-item a {
  color: #0EE06E;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.detail-item a:hover {
  border-bottom-color: #0EE06E;
}

.detail-icon {
  font-size: 1.5rem;
}

.hero-locations {
  margin-bottom: 3rem;
  font-size: 1.1rem;
  color: #ccc;
}

.hero-locations strong {
  color: #0EE06E;
}

.cta-button {
  display: inline-block;
  background: #0EE06E;
  color: #000;
  padding: 1rem 3rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(14, 224, 110, 0.4);
}

.cta-button:hover {
  background: #0cc55f;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(14, 224, 110, 0.6);
  text-decoration: none;
  color: #000;
}

.cta-button.large {
  padding: 1.5rem 4rem;
  font-size: 1.4rem;
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -55%;
  width: 100%;
  height: 100%;
  background-image: url(background1.png);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.2;
  transform: rotate(0deg);
  pointer-events: none;
  z-index: 0;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.about-section h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #0EE06E;
}

.intro-text {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-invite {
  color: #0EE06E;
  font-weight: 700;
  font-size: 1.1em;
  text-shadow: 0 0 10px rgba(14, 224, 110, 0.3);
}

.about-section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.highlight-item {
  background: rgba(14, 224, 110, 0.05);
  border: 1px solid rgba(14, 224, 110, 0.2);
  padding: 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(14, 224, 110, 0.1);
  border-color: rgba(14, 224, 110, 0.4);
  transform: translateY(-5px);
}

.highlight-item h3 {
  color: #0EE06E;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Timezone Section */
.timezone-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
}

.timezone-section h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #0EE06E;
}

.timezone-section .intro-text {
  margin-bottom: 3rem;
  color: #ccc;
}

.timezone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.timezone-card {
  background: rgba(14, 224, 110, 0.05);
  border: 1px solid rgba(14, 224, 110, 0.2);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.timezone-card:hover {
  background: rgba(14, 224, 110, 0.1);
  border-color: rgba(14, 224, 110, 0.4);
  transform: translateY(-3px);
}

.timezone-card h3 {
  color: #0EE06E;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.tz-time {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

.tz-label {
  font-size: 0.9rem;
  color: #888;
}

/* Speakers Section */
.speakers-section {
  padding: 6rem 0;
  background: #000;
}

.speakers-section h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #0EE06E;
}

.speakers-coming-soon {
  text-align: center;
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 4rem;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.speaker-card {
  background: rgba(14, 224, 110, 0.03);
  border: 1px solid rgba(14, 224, 110, 0.2);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.speaker-card:hover {
  border-color: #0EE06E;
  box-shadow: 0 10px 40px rgba(14, 224, 110, 0.2);
  transform: translateY(-5px);
}

.speaker-card.tba {
  opacity: 0.6;
  border-style: dashed;
}

.speaker-card.tba:hover {
  opacity: 0.8;
}

.speaker-image {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, #0a2e1f 0%, #0EE06E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker-image-duo {
  gap: 0;
}

.speaker-image-duo img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.speaker-placeholder {
  font-size: 4rem;
  font-weight: 700;
  color: #000;
  opacity: 0.8;
}

.speaker-info {
  padding: 2rem;
}

.speaker-name {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #0EE06E;
}

.speaker-company {
  font-size: 1rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.speaker-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.experience-report-tag {
  background: rgba(14, 224, 110, 0.12);
  color: #0EE06E;
  border: 1px solid rgba(14, 224, 110, 0.35);
}

.speaker-topic {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.speaker-bio {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #aaa;
  font-style: italic;
  margin-bottom: 1.2rem;
}

.speaker-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 1rem;
}

.speaker-topics {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.speaker-topics li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
}

.speaker-topics li:before {
  content: "\25B8";
  position: absolute;
  left: 0;
  color: #0EE06E;
  font-weight: bold;
}

/* Call for Demos */
.call-for-demos {
  margin-top: 4rem;
  padding: 3rem;
  background: rgba(255, 165, 0, 0.05);
  border: 1px solid rgba(255, 165, 0, 0.3);
  border-radius: 15px;
  text-align: center;
}

.call-for-demos h3 {
  color: #FFA500;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.call-for-demos p {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
}

/* Schedule Section */
.schedule-section {
  padding: 6rem 0;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.schedule-section::before {
  content: '';
  position: absolute;
  top: -38%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-image: url('background2.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.schedule-section .container {
  position: relative;
  z-index: 1;
}

.schedule-section h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #0EE06E;
  position: relative;
  z-index: 1;
}

.schedule-note {
  text-align: center;
  font-size: 1.1rem;
  color: #888;
  margin-bottom: 4rem;
  font-style: italic;
}

.schedule-timeline {
  max-width: 900px;
  margin: 0 auto;
}

.schedule-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(14, 224, 110, 0.03);
  border-left: 4px solid #0EE06E;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: left;
}

.schedule-item:hover {
  background: rgba(14, 224, 110, 0.08);
  transform: translateX(10px);
}

.schedule-item.keynote {
  background: rgba(14, 224, 110, 0.1);
  border-left-width: 6px;
}

.schedule-item.break {
  background: rgba(255, 255, 255, 0.03);
  border-left-color: #666;
}

.schedule-item.interactive {
  background: rgba(255, 165, 0, 0.08);
  border-left-color: #FFA500;
}

.schedule-item .time {
  font-weight: 700;
  font-size: 1.1rem;
  color: #0EE06E;
  min-width: 140px;
  flex-shrink: 0;
  text-align: left;
}

.schedule-content {
  text-align: left;
}

.schedule-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #fff;
  text-align: left;
}

.schedule-content p {
  color: #ccc;
  line-height: 1.6;
  text-align: left;
}

/* Register Section */
.register-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #0a2e1f 100%);
  text-align: center;
}

.register-section h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #0EE06E;
}

.register-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.register-note {
  margin-top: 3rem !important;
  font-size: 1rem !important;
  color: #888;
}

/* Footer */
.footer {
  padding: 3rem 0;
  background: #000;
  border-top: 1px solid rgba(14, 224, 110, 0.2);
}

.footer-content {
  text-align: center;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo svg {
  height: 30px;
  width: auto;
}

.footer p {
  color: #666;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-details {
    flex-direction: column;
    gap: 1rem;
  }

  .about-section h2,
  .speakers-section h2,
  .schedule-section h2,
  .register-section h2,
  .timezone-section h2 {
    font-size: 2rem;
  }

  .speakers-grid {
    grid-template-columns: 1fr;
  }

  .timezone-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .schedule-item {
    flex-direction: column;
    gap: 1rem;
  }

  .schedule-item .time {
    min-width: auto;
  }

  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .cta-button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  .cta-button.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }

  .timezone-grid {
    grid-template-columns: 1fr;
  }
}
