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

body, html {
  height: 100%;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* Cursor Light Effect */
.cursor-light {
  position: fixed;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(100, 150, 220, 0.20) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  z-index: 1;
  mix-blend-mode: screen;
}

/* Background */
body {
  background: #000000;
  background: linear-gradient(150deg, #000000 0%, #131c2f 50%, #000000 100%);
}

/* Main Container */
.MainScreen {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 16px;
  position: relative;
  z-index: 2;
}

/* Logo Section */
.Herosection {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 30px;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeInScale 0.8s ease-out 0.2s forwards;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.logo-circle {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 100%;
  position: absolute;
  box-shadow: 
    0 0 80px 30px rgba(150, 180, 220, 0.25),
    0 0 140px 50px rgba(150, 180, 220, 0.15);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 
      0 0 80px 30px rgba(150, 180, 220, 0.25),
      0 0 140px 50px rgba(150, 180, 220, 0.15);
  }
  50% {
    box-shadow: 
      0 0 100px 40px rgba(150, 180, 220, 0.35),
      0 0 160px 60px rgba(150, 180, 220, 0.25);
  }
}

.logo-container {
  width: 200px;
  height: 200px;
  position: relative;
  z-index: 2;
  border-radius: 100%;
  border: 6px solid #636D7D;
  overflow: hidden;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.70) translateX(-1%);
}

/* Headings */
.LeonorFreitas {
  color: #FFFFFF;
  font-size: 42px;
  font-weight: 600;
  text-align: center;
  margin: 8px 0 4px 0;
  letter-spacing: -0.5px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.UXUI {
  color: #D1D5DC;
  font-size: 17px;
  font-weight: 300;
  text-align: center;
  margin: 0 0 2px 0;
  letter-spacing: 0.3px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.BuildingTheFuture {
  color: #8B92A0;
  font-size: 13px;
  font-weight: 300;
  text-align: center;
  margin: 0 0 24px 0;
  letter-spacing: 0.2px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

/* Cards Container */
.Cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 480px;
}

/* Card Styles */
.Card {
  background: rgba(70, 90, 115, 0.35);
  backdrop-filter: blur(20px);
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(30px);
}

/* Card animation delays */
.Card:nth-child(1) {
  animation: slideInUp 0.6s ease-out 1.1s forwards;
}

.Card:nth-child(2) {
  animation: slideInUp 0.6s ease-out 1.3s forwards;
}

.Card:nth-child(3) {
  animation: slideInUp 0.6s ease-out 1.5s forwards;
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.Card:hover {
  background: rgba(75, 95, 125, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.12);
}

/* Icon Box */
.icon-box {
  width: 46px;
  height: 46px;
  background: rgba(100, 130, 170, 0.35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.Card:hover .icon-box {
  background: rgba(100, 130, 170, 0.5);
  transform: rotate(5deg) scale(1.05);
}

.icon-box svg {
  width: 22px;
  height: 22px;
  stroke: #51A2FF;
  stroke-width: 2;
  transition: all 0.3s ease;
}

.Card:hover .icon-box svg {
  stroke: #7BB8FF;
  transform: scale(1.1);
}

/* Card Content */
.card-content {
  flex: 1;
}

.card-title {
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 2px;
  letter-spacing: -0.2px;
  transition: color 0.3s ease;
}

.Card:hover .card-title {
  color: #7BB8FF;
}

.card-desc {
  color: #A8B2C0;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.1px;
  transition: color 0.3s ease;
}

.Card:hover .card-desc {
  color: #C8D2E0;
}

/* Open Icon */
.open-icon {
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.Card:hover .open-icon {
  opacity: 1;
  transform: translate(2px, -2px);
}

.open-icon svg {
  width: 18px;
  height: 18px;
  stroke: #51A2FF;
  stroke-width: 2;
}

/* Copyright */
.Copyright {
  color: #7B8594;
  font-size: 15px;
  font-weight: 300;
  text-align: center;
  margin-top: 20px;
  letter-spacing: 0.2px;
}

@keyframes pageLoad {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

body {
  animation: pageLoad 0.3s ease-in;
}

/* Responsive - Mobile */
@media (max-width: 600px) {
  .Herosection {
    width: 160px;
    height: 160px;
  }

  .logo-circle {
    width: 140px;
    height: 140px;
  }

  .logo-container {
    width: 160px;
    height: 160px;
    border: 5px solid #636D7D;
  }

  .logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.70) translateX(-1%);
  }

  .LeonorFreitas {
    font-size: 32px;
  }

  .UXUI {
    font-size: 15px;
  }

  .BuildingTheFuture {
    font-size: 12px;
  }

  .Cards {
    max-width: 100%;
  }

  .Card {
    padding: 16px 20px;
  }
}

/* Responsive - Short Screens */
@media (max-height: 700px) {
  .MainScreen {
    gap: 12px;
  }

  .Herosection {
    width: 150px;
    height: 150px;
    margin-bottom: 8px;
  }

  .logo-circle {
    width: 130px;
    height: 130px;
  }

  .logo-container {
    width: 150px;
    height: 150px;
    border: 5px solid #636D7D;
  }

  .logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.70) translateX(-1%);
  }

  .LeonorFreitas {
    font-size: 36px;
    margin: 6px 0 3px 0;
  }

  .UXUI {
    font-size: 15px;
  }

  .BuildingTheFuture {
    font-size: 12px;
    margin-bottom: 18px;
  }

  .Cards {
    gap: 14px;
  }

  .Card {
    padding: 16px 20px;
  }

  .Copyright {
    margin-top: 20px;
    font-size: 12px;
  }
}
