body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f6f3fa;
  color: #2d133b;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}
.splitzy-link {
  color: #7b2ff2;
  text-decoration: none;
  font-weight: 600;
}
.splitzy-link:hover {
  color: #f357a8;
  text-decoration: underline;
}


.animated-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  background: linear-gradient(120deg, #7b2ff2 0%, #f357a8 100%);
  opacity: 0.18;
  animation: bgMove 12s linear infinite alternate;
  pointer-events: none;
}

@keyframes bgMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

header {
  background: linear-gradient(90deg, #7b2ff2 0%, #f357a8 100%);
  color: #fff;
  padding: 2rem 1rem 1.2rem 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(123,47,242,0.08);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  z-index: 1;
  position: relative;
}

header h1 {
  margin: 0;
  font-size: 2.7rem;
  letter-spacing: 2px;
  font-weight: 700;
  text-shadow: 0 2px 8px #7b2ff255;
}

.subtitle {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  opacity: 0.93;
  font-weight: 500;
  letter-spacing: 1px;
}

main {
  flex: 1;
  max-width: 700px;
  margin: 2.5rem auto 1.5rem auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 24px rgba(123,47,242,0.09);
  padding: 2.5rem 2rem 2rem 2rem;
  position: relative;
  z-index: 1;
  animation: mainFadeIn 1.2s cubic-bezier(.77,0,.18,1) 0.2s backwards;
}

@keyframes mainFadeIn {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}

section {
  margin-bottom: 2.2rem;
}

.about .highlight {
  color: #7b2ff2;
  font-weight: 600;
  font-size: 1.08em;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7em 1.2em;
  margin: 1em 0 0.5em 0;
  padding: 0;
  list-style: none;
}

.skills li {
  background: linear-gradient(90deg, #7b2ff2 0%, #f357a8 100%);
  color: #fff;
  padding: 0.4em 1.1em;
  border-radius: 18px;
  font-size: 1em;
  font-weight: 500;
  box-shadow: 0 2px 8px #7b2ff222;
  transition: transform 0.2s;
}
.skills li:hover {
  transform: scale(1.07);
}

.app-list {
  display: flex;
  gap: 1.5em;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.app-card {
  display: flex;
  align-items: center;
  background: #f6f3fa;
  border-radius: 14px;
  box-shadow: 0 2px 8px #7b2ff211;
  padding: 1.1em 1.5em;
  min-width: 210px;
  margin-bottom: 1em;
  animation: cardPop 0.8s cubic-bezier(.77,0,.18,1) backwards;
}
.app-card:nth-child(2) { animation-delay: 0.2s; }

@keyframes cardPop {
  from { opacity: 0; transform: scale(0.92);}
  to { opacity: 1; transform: scale(1);}
}

.app-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-right: 1em;
  background: linear-gradient(135deg, #7b2ff2 60%, #f357a8 100%);
  box-shadow: 0 2px 8px #7b2ff233;
  position: relative;
}
.app-icon.soon {
  background: linear-gradient(135deg, #f357a8 60%, #7b2ff2 100%);
}
.app-icon::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff4;
  position: absolute;
  top: 12px; left: 12px;
}

.status {
  font-size: 0.95em;
  padding: 2px 10px;
  border-radius: 8px;
  margin-left: 8px;
  font-weight: 600;
  letter-spacing: 1px;
}

.status.hosted {
  background: #7b2ff2;
  color: #fff;
}

.status.soon {
  background: #f357a8;
  color: #fff;
}

.button {
  display: inline-block;
  background: linear-gradient(90deg, #7b2ff2 0%, #f357a8 100%);
  color: #fff;
  padding: 0.7em 1.8em;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1em;
  font-size: 1.1em;
  box-shadow: 0 2px 8px #7b2ff222;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.button:hover {
  background: linear-gradient(90deg, #f357a8 0%, #7b2ff2 100%);
  transform: translateY(-2px) scale(1.04);
}

.contact-info {
  background: #f6f3fa;
  border-radius: 10px;
  padding: 1em 1.5em;
  font-size: 1.08em;
  box-shadow: 0 2px 8px #7b2ff211;
  display: inline-block;
}

.contact-info a {
  color: #7b2ff2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.contact-info a:hover {
  color: #f357a8;
}

footer {
  background: #2d133b;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 1rem;
  margin-top: auto;
  letter-spacing: 1px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  z-index: 1;
  position: relative;
  box-shadow: 0 -2px 16px #7b2ff211;
}

.animated-fadein {
  opacity: 0;
  animation: fadeIn 1.2s forwards;
}
.animated-fadein:nth-of-type(1) { animation-delay: 0.2s; }
.animated-fadein:nth-of-type(2) { animation-delay: 0.4s; }
.animated-fadein:nth-of-type(3) { animation-delay: 0.6s; }

@keyframes fadeIn {
  to { opacity: 1; }
}

.animated-slidein {
  opacity: 0;
  transform: translateX(-40px);
  animation: slideIn 1.2s forwards 0.5s;
}
@keyframes slideIn {
  to { opacity: 1; transform: translateX(0);}
}

@media (max-width: 700px) {
  main {
    padding: 1.2rem 0.5rem;
    max-width: 98vw;
  }
  .app-list {
    flex-direction: column;
    gap: 0.7em;
  }
}