@font-face {
    font-family: 'MyDearWatson';
    src: url('assets/fonts/MyDearWatson-Regular.otf') format('opentype');
    font-display: swap;
}

@font-face {
    font-family: 'Geek A Byte 2';
    src: url('assets/fonts/geekabyte2.ttf') format('truetype');
    font-display: swap;
}

:root {
    --accent-pink: #ff1975;
    --cta-blue: #4b7ce1;
    --card-blue: #4b7ce1;
    --card-pink: #ff92f9;
    --card-purple: #be69ff;
    --card-radius: 10px;
    --page-max-width: 1240px;
    --shadow-soft: 0 16px 32px rgba(0, 0, 0, 0.08);
}

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

body {
    margin: 0;
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    background-color: #ffffff;
    color: #2b2b2b;
}

a {
	text-decoration: none !important;
}

.page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 24px 64px;
    gap: 1.5rem;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
}

.hero-logo {
    max-width: 420px;
    width: 80vw;
    height: auto;
}

.hero-tagline {
    font-family: 'MyDearWatson', cursive;
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    color: var(--accent-pink);
    letter-spacing: 4px;
    margin: 0;
    text-transform: uppercase;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cta-blue);
    color: #ffffff;
    font-family: 'Geek A Byte 2', 'Comic Sans MS', cursive;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    padding: 18px 56px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(75, 124, 225, 0.35);
    text-transform: uppercase;
    transition: 0.4s ease-in-out;
    position: relative;
}

.hero-cta::before {
    position: absolute;
    right: -8px;
    bottom: -8px;
    content: '';
    background-color: #54058D;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    z-index: -1;
    opacity: 0;
    transition: 0.4s ease-in-out;
}

.hero-cta>span {
    animation: rotateUpDown 2s ease-in-out infinite reverse;
}

.hero-cta:hover {
    background-color: #FFC702;
}

.hero-cta:hover::before {
    opacity: 1;
}

.hero-cta:hover>span {
    color: #54058D;
}

@keyframes rotateUpDown {

    0%,
    100% {
        transform: rotate(15.48deg);
    }

    50% {
        transform: rotate(-10.21deg);
    }
}

.content {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding: 0 12px;
}

.content-image {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
}

.content-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
}

.content-image--robot img {
    max-width: 260px;
}

.content-image--book img {
    max-width: 250px;
}

.content-cards {
    width: 70%;
    flex: 1 1 680px;
    display: flex;
    gap: 5rem;
    justify-content: center;
    align-items: center;
    align-self: center;
}

.content-left,
.content-right {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.content-right {
    align-items: flex-start;
}

.info-card {
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px 75px 20px 20px;
    border-radius: var(--card-radius);
    flex: 1 1 calc(50% - 14px);
    /* min-width: 240px; */
    /* max-width: 420px; */
    width: 100%;
    max-height: 100px;
    min-height: 93px;
    overflow: visible;
    box-shadow: var(--shadow-soft);
}

.info-card-avatar {
    position: absolute;
    top: 50%;
    right: -32px;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid transparent;
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.info-card-title {
    margin: 0;
    font-family: 'Geek A Byte 2', 'Comic Sans MS', cursive;
    font-size: 1.5em;
    color: #ffffff;
    text-transform: uppercase;
}

.info-card-text {
    margin: 0;
    font-family: 'MyDearWatson', cursive;
    font-size: 1em;
    color: #ffffff;
    line-height: 1;
}

.info-card--forum {
    background: var(--card-blue);
}

.info-card--forum .info-card-avatar {
    border-color: var(--card-blue);
}

.info-card--playground {
    background: var(--card-pink);
}

.info-card--playground .info-card-avatar {
    border-color: var(--card-pink);
}

.info-card--story {
    background: var(--card-purple);
    padding: 20px 20px 20px 75px;
}

.info-card--story .info-card-avatar {
    border-color: var(--card-purple);
    right: unset;
    left: -32px;
}

.info-card--whatsapp {
    background: var(--card-blue);
    padding: 20px 20px 20px 75px;
}

.info-card--whatsapp .info-card-avatar {
    border-color: var(--card-blue);
    right: unset;
    left: -32px;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 18px;
}

.footer-social img {
    width: 32px;
    height: 32px;
}

.footer-handle {
    margin: 0;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 1.1rem;
}

.footer-note {
    margin: 0;
    font-family: 'MyDearWatson', cursive;
    font-size: 1rem;
}

.preorder-note {
    font-size: 0.9rem;
    color: #555;
    margin-top: 0.5rem;
}

.whatsapp-float {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 20px;
  right: 20px;
  background: #25d366;          /* WhatsApp green */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}



@media (max-width: 980px) {
    .content {
        justify-content: center;
    }

    .content-cards {
        justify-content: center;
    }
}

@media (max-width: 760px) {
    .page {
        padding: 40px 18px 56px;
        gap: 48px;
    }

    .content {
        flex-direction: column;
        align-items: center;
        margin-top: unset;
        gap: 2rem;
    }

    .content-image,
    .content-cards {
        flex: unset;
        width: 100%;
        margin-left: unset;
    }

    .content-cards {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .info-card {
        width: 100%;
        width: clamp(280px, 100%, 400px);
        padding: 28px 24px;
        text-align: center;
    }

    .info-card-avatar {
        top: -10px;
        right: unset;
        left: -12px;
        transform: none;
        width: 60px;
        height: 60px;
    }

    .info-card--story .info-card-avatar,
    .info-card--whatsapp .info-card-avatar {
        left: -12px;
    }

    .info-card-body {
        align-items: center;
    }

    .content-right {
        align-items: center;
    }
}

@media (max-width: 1029px) {
    .content {
        flex-direction: column;
        align-items: center;
        margin: unset;
    }

    .content-image {
        margin: unset;
        width: 60%;
    }

    .content-cards {
        flex: unset;
        width: 100%;
    }
}

@media (max-width: 1400px) {}