/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1f1c1c;
    color: white;
    line-height: 1.5;
}

/* HEADER */
header {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(0,0,0,0.8);
    z-index: 100;
}

header .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

header .logo {
    font-size: 1.2em;
    font-weight: bold;
    color: white;
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

header nav a {
    color: #f6d55c;
    text-decoration: none;
    font-weight: bold;
}

header nav a:hover {
    color: #c84b31;
}

/* HERO */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}


/* COVER LETTER */
#coverletter {
    margin: 20px;
    background: #222;
    padding: 60px 20px;
}

.cover-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.cover-grid .imagecontainer img {
    width: 280px;
    border-radius: 12px;
}

.cover-grid .covertext {
    text-align: center;
    flex: 1;
    margin: 15px;
    font-size: 20px;
}

/* PRESENTATION TEXT */
.presentation-text {
    font-size: 1.3rem;
    font-weight: bold;
    color: #f6d55c;
    line-height: 1.7;
    margin-bottom: 10px;
    text-shadow: 0 0 12px rgba(246, 213, 92, 0.3);
}

.presentation-sub {
    display: block;
    font-size: 1rem;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    font-style: italic;
}

/* ROCKET BUTTON */
.rocket-btn-wrapper {
    position: relative;
    display: inline-block;
    margin: 24px 0 36px;
}

.rocket-btn {
    position: relative;
    z-index: 1;
    padding: 14px 42px;
    font-size: 1.15rem;
    font-weight: bold;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    background: linear-gradient(135deg, #c84b31, #f6d55c);
    color: #1f1c1c;
    box-shadow: 0 0 20px rgba(246, 213, 92, 0.45), 0 6px 24px rgba(200, 75, 49, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.rocket-btn:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 0 36px rgba(246, 213, 92, 0.7), 0 10px 32px rgba(200, 75, 49, 0.5);
}

.rocket-btn-icon {
    margin-right: 8px;
    font-size: 1.2rem;
}

.rocket-canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 10;
}

.rocket-particle {
    position: absolute;
    font-size: 1.4rem;
    transform: translate(-50%, -50%);
    animation: rocketFly 0.9s ease-out forwards;
}

@keyframes rocketFly {
    0%   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(0.3); }
}

/* FOR YOU TITLE */
.for-you-title {
    font-size: 2rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-weight: normal;
    color: rgba(246, 213, 92, 0.75);
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    text-shadow: 0 0 18px rgba(246, 213, 92, 0.2);
}

/* SIGNATURE */
.signature {
    margin-top: 24px;
    font-size: 1.1rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
}

/* SKILLS */
#skills {
    background: #333;
    padding: 60px 20px;
    text-align: center;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    
}

.skill {
    background: #444;
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s;
    color: aliceblue;
}

.skill:hover {
    transform: translateY(-8px);
}

.skill img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* FOOTER */
footer {
    background: #111;
    padding: 20px;
    text-align: center;
}

footer form {
    margin-top: 10px;
}



/* seccion profolio*/

/*bloque 1*/
#bar {
    margin-top: 150px;
    background: #222;
    padding: 60px 20px;
}

.cover-bar {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.cover-bar .imagecontainer img {
    display: block;
    width: 280px;
    border-radius: 12px;
}

.cover-bar .bartext {

    flex: 1;
    margin: 15px;
    
}
.bartext p{
    text-align: justify;
}


/*bloque2*/
.cover-memories {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.cover-memories .imagecontainer img {
    display: block;
    width: 280px;
    border-radius: 12px;
}

.cover-memories .memoriestext {

    flex: 1;
    margin: 15px;
    
}
#bar a{
    font-size: 20px;
    color: aliceblue;
}
.memoriestext p{
    text-align: justify;
}

/*CV*/


#curriculum {
    margin: 20px;
    background: #222;
    padding: 150px 20px;
    
}

.containercv {
    
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}



.imagecontainercv img,
.imagecontainercv video {
    width: 280px;
    border-radius: 12px;
}

.containercv .covertext{
      text-align: center;
    flex: 1;
    margin: 15px;
    font-size: 35px;
}

/*education*/

#Education {
    margin: 20px;
    background: #222;
    padding: 150px 20px;
    text-align: center;
}
#Education h2{
    font-size: 40px;
}
 #Education h3{
    font-size: 25px;
    margin-top: 20px;
 }
#Education p{
    margin: 5px;
    font-size: 20px;
    
}

 .imagencertificado img{
    width: 350px;
    border-radius: 12px;
}
/*Work*/

#WorkExperience {
    margin: 20px;
    background: #222;
    padding: 150px 20px;
    text-align: center;
}

#WorkExperience h2{
    font-size: 40px;
    margin: 40px;
}

#WorkExperience h3{
    font-size: 25px;
    margin-top: 25px;
}

#WorkExperience p{
    margin: 5px;
    font-size: 20px;
    text-align: justify;
}

/*Idiomas*/
#lenguajes{
    margin: 20px;
    background: #222;
    padding: 150px 20px;
    text-align: center;
}
#lenguajes h2{
    font-size: 40px;
    margin: 40px;
}
#lenguajes h3{
    font-size: 25px;
    margin-top: 30px;
}

#lenguajes p{
    font-size: 20px;
    margin: 5px;
   
}

/*Contactos*/

#contacto{
     margin: 20px;
    background: #222;
    padding: 150px 20px;
    text-align: center;
}
#contacto h1{
    font-size: 50px;
}
#contacto h2{
    font-size: 35px;
}

#contacto p{
    font-size: 30px;
}

#contacto a{
    font-size: 30px;
    color: antiquewhite;
}

/* ============================================================
   PLANETARY EXPLOSION — PORTFOLIO CARD
   ============================================================ */

.pe-card .pe-tag {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f6d55c;
    margin-bottom: 12px;
}

.pe-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 32px;
    background: linear-gradient(135deg, #c84b31, #f6d55c);
    color: #1f1c1c;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 30px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pe-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(248, 213, 92, 0.35);
}

/* Decorative mockup in the card */
.pe-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pe-mockup {
    position: relative;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 40% 35%, #1a0a3c 0%, #0a0015 70%);
    box-shadow: 0 0 40px rgba(198, 75, 49, 0.4), 0 0 80px rgba(198, 75, 49, 0.15);
    overflow: hidden;
}

.pe-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(246, 213, 92, 0.18);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.pe-orbit--1 { width: 100px; height: 100px; }
.pe-orbit--2 { width: 160px; height: 160px; }
.pe-orbit--3 { width: 220px; height: 220px; }

.pe-star {
    position: absolute;
    top: 50%; left: 50%;
    width: 36px; height: 36px;
    margin: -18px 0 0 -18px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff7a0 0%, #f6d55c 50%, #c84b31 100%);
    box-shadow: 0 0 20px #f6d55c, 0 0 40px #c84b31;
    animation: pe-pulse 2.4s ease-in-out infinite;
}

.pe-planet {
    position: absolute;
    border-radius: 50%;
}
.pe-planet--a {
    width: 14px; height: 14px;
    background: radial-gradient(circle at 35% 35%, #6fa8dc, #274e7e);
    top: 18%; left: 62%;
    animation: pe-orbit-a 6s linear infinite;
}
.pe-planet--b {
    width: 10px; height: 10px;
    background: radial-gradient(circle at 35% 35%, #c09060, #6b3a1f);
    top: 65%; left: 24%;
    animation: pe-orbit-b 9s linear infinite;
}
.pe-planet--c {
    width: 7px; height: 7px;
    background: radial-gradient(circle at 35% 35%, #8fd8a0, #2d6b3f);
    top: 20%; left: 28%;
    animation: pe-orbit-c 12s linear infinite;
}

.pe-title-badge {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    font-weight: bold;
    letter-spacing: 0.15em;
    color: #f6d55c;
    text-align: center;
    white-space: nowrap;
    text-shadow: 0 0 8px #f6d55c;
}

@keyframes pe-pulse {
    0%, 100% { box-shadow: 0 0 20px #f6d55c, 0 0 40px #c84b31; }
    50%       { box-shadow: 0 0 30px #f6d55c, 0 0 60px #c84b31; }
}
@keyframes pe-orbit-a {
    from { transform: rotate(0deg)   translateX(40px) rotate(0deg); }
    to   { transform: rotate(360deg) translateX(40px) rotate(-360deg); }
}
@keyframes pe-orbit-b {
    from { transform: rotate(120deg)  translateX(60px) rotate(-120deg); }
    to   { transform: rotate(480deg)  translateX(60px) rotate(-480deg); }
}
@keyframes pe-orbit-c {
    from { transform: rotate(240deg)  translateX(80px) rotate(-240deg); }
    to   { transform: rotate(600deg)  translateX(80px) rotate(-600deg); }
}


/* ============================================================
   PLANETARY EXPLOSION — LANDING PAGE
   ============================================================ */

.pe-page {
    background-color: #0a0015;
}

/* --- Starfield --- */
.pe-stars {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        radial-gradient(1px 1px at 10%  20%, rgba(255,255,255,0.7) 0%, transparent 100%),
        radial-gradient(1px 1px at 30%  55%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 55%  10%, rgba(255,255,255,0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 75%  70%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 90%  30%, rgba(255,255,255,0.4) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 20% 80%, rgba(246,213,92,0.6) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 65% 45%, rgba(246,213,92,0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 45%  90%, rgba(255,255,255,0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 82%  15%, rgba(255,255,255,0.6) 0%, transparent 100%);
}

/* --- Shared section styles --- */
.pe-page .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.pe-section {
    position: relative;
    z-index: 1;
    padding: 100px 20px;
}

.pe-label {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #f6d55c;
    margin-bottom: 10px;
}

.pe-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    margin-bottom: 28px;
}

/* --- Hero --- */
.pe-hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 80px;
    background: radial-gradient(ellipse at 50% 0%, rgba(200,75,49,0.25) 0%, transparent 65%),
                radial-gradient(ellipse at 80% 80%, rgba(246,213,92,0.08) 0%, transparent 60%);
    gap: 60px;
}

@media (min-width: 900px) {
    .pe-hero {
        flex-direction: row;
        text-align: left;
        gap: 60px;
    }
}

.pe-hero__content {
    flex: 1;
    max-width: 560px;
}

.pe-hero__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f6d55c;
    margin-bottom: 16px;
}

.pe-hero__title {
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}

.pe-hero__title span {
    background: linear-gradient(90deg, #f6d55c, #c84b31);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pe-hero__sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 32px;
}

.pe-hero__back {
    background: transparent;
    border: 2px solid #f6d55c;
    color: #f6d55c;
    padding: 10px 24px;
    font-size: 0.9rem;
}

.pe-hero__back:hover {
    background: #f6d55c;
    color: #1f1c1c;
    box-shadow: none;
    transform: none;
}

.pe-hero__media {
    flex: 1;
    max-width: 580px;
    width: 100%;
}

.pe-trailer-link {
    display: block;
    text-decoration: none;
}

.pe-video-wrap {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(200,75,49,0.35);
    border: 1px solid rgba(246,213,92,0.2);
    transition: box-shadow 0.3s;
}

.pe-trailer-link:hover .pe-video-wrap {
    box-shadow: 0 0 80px rgba(246,213,92,0.4);
}

.pe-video-wrap img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.pe-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: rgba(200, 75, 49, 0.88);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    padding-left: 6px;
    transition: background 0.25s, transform 0.25s;
    pointer-events: none;
}

.pe-trailer-link:hover .pe-play-btn {
    background: #f6d55c;
    color: #1f1c1c;
    transform: translate(-50%, -50%) scale(1.1);
}

/* --- Mechanics --- */
.pe-mechanics {
    background: #111028;
}

.pe-section__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.pe-section__text {
    flex: 1;
    min-width: 280px;
}

.pe-section__text p {
    color: rgba(255,255,255,0.78);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.pe-section__text strong {
    color: #f6d55c;
}

.pe-steps {
    list-style: none;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pe-steps li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.pe-steps li span {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c84b31, #f6d55c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.75rem;
    color: #1f1c1c;
}

/* Evolution chain */
.pe-section__visual {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
}

.pe-evolution {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pe-evo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.pe-evo-item p {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
}

.pe-evo-body {
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #aaa, #444);
}

.pe-evo--dust  .pe-evo-body { width: 18px;  height: 18px;  background: radial-gradient(circle at 35% 35%, #bbb, #555); }
.pe-evo--rock  .pe-evo-body { width: 28px;  height: 28px;  background: radial-gradient(circle at 35% 35%, #a0826d, #5a3e2b); }
.pe-evo--planet .pe-evo-body{ width: 42px;  height: 42px;  background: radial-gradient(circle at 35% 35%, #6fa8dc, #1a3a6b); box-shadow: 0 0 10px rgba(111,168,220,0.4); }
.pe-evo--giant .pe-evo-body { width: 58px;  height: 58px;  background: radial-gradient(circle at 35% 35%, #e8a045, #7b3a10); box-shadow: 0 0 14px rgba(232,160,69,0.4); }
.pe-evo--star  .pe-evo-body { width: 76px;  height: 76px;  background: radial-gradient(circle at 35% 35%, #fff9a0, #f6d55c 40%, #c84b31); box-shadow: 0 0 24px #f6d55c, 0 0 48px rgba(200,75,49,0.5); animation: pe-pulse 2s ease-in-out infinite; }

.pe-evo-arrow {
    font-size: 1.4rem;
    color: #f6d55c;
    padding-bottom: 18px;
}

/* --- Features --- */
.pe-features {
    background: #0a0015;
    text-align: center;
}

.pe-features .pe-label,
.pe-features h2 {
    text-align: center;
}

.pe-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.pe-feature-card {
    background: #111028;
    border: 1px solid rgba(246,213,92,0.12);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: left;
    transition: transform 0.25s, border-color 0.25s;
}

.pe-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(246,213,92,0.4);
}

.pe-feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.pe-feature-card h3 {
    font-size: 1.1rem;
    color: #f6d55c;
    margin-bottom: 10px;
}

.pe-feature-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* --- CTA Band --- */
.pe-cta-band {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #1a0035 0%, #3d0010 100%);
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid rgba(246,213,92,0.15);
}

.pe-cta-band__inner h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: #fff;
    margin-bottom: 12px;
}

.pe-cta-band__inner p {
    color: rgba(255,255,255,0.65);
    margin-bottom: 32px;
    font-size: 1rem;
}

.pe-cta--large {
    padding: 16px 48px;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
}

/* --- Beta Testers --- */
.pe-beta {
    background: linear-gradient(135deg, #0a0015 0%, #1a0035 60%, #3d0010 100%);
    text-align: center;
    border-top: 1px solid rgba(246, 213, 92, 0.12);
}

.pe-beta__inner {
    max-width: 680px;
    margin: auto;
}

.pe-beta__icon {
    font-size: 3rem;
    margin-bottom: 12px;
    animation: pe-pulse 2.4s ease-in-out infinite;
}

.pe-beta h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: #fff;
    margin-bottom: 16px;
}

.pe-beta__desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 36px;
}

.pe-beta__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.pe-beta__field {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    width: 100%;
}

.pe-beta__input {
    flex: 1;
    min-width: 240px;
    max-width: 380px;
    padding: 14px 20px;
    border-radius: 50px;
    border: 2px solid rgba(246, 213, 92, 0.35);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pe-beta__input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.pe-beta__input:focus {
    border-color: #f6d55c;
    box-shadow: 0 0 16px rgba(246, 213, 92, 0.25);
}

.pe-beta__btn {
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, #c84b31, #f6d55c);
    color: #1f1c1c;
    box-shadow: 0 0 20px rgba(246, 213, 92, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.pe-beta__btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 32px rgba(246, 213, 92, 0.6);
}

.pe-beta__note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 4px;
}

/* --- Footer --- */
.pe-footer {
    background: #06000f;
    padding: 28px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.pe-footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
}

.pe-footer__links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.pe-footer__links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.pe-footer__links a:hover {
    color: #f6d55c;
}

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */

.pp-main {
    position: relative;
    z-index: 1;
    padding: 120px 20px 80px;
    min-height: 100vh;
}

.pp-container {
    max-width: 800px;
    margin: 0 auto;
}

.pp-header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(246,213,92,0.2);
}

.pp-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #fff;
    margin: 8px 0 4px;
}

.pp-subtitle {
    font-size: 1.1rem;
    color: #f6d55c;
    margin-bottom: 8px;
}

.pp-date {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
}

.pp-intro {
    background: rgba(246,213,92,0.06);
    border-left: 3px solid #f6d55c;
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin-bottom: 40px;
}

.pp-intro p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    line-height: 1.8;
}

.pp-section {
    margin-bottom: 40px;
}

.pp-section h2 {
    font-size: 1.2rem;
    color: #f6d55c;
    margin-bottom: 14px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(246,213,92,0.15);
}

.pp-section p {
    color: rgba(255,255,255,0.78);
    font-size: 0.97rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.pp-section ul {
    list-style: none;
    margin: 12px 0 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pp-section ul li {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    padding-left: 18px;
    position: relative;
}

.pp-section ul li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #f6d55c;
    font-weight: bold;
}

.pp-section strong {
    color: #fff;
}

.pp-service {
    background: #111028;
    border: 1px solid rgba(246,213,92,0.1);
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 16px;
}

.pp-service h3 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 8px;
}

.pp-service p {
    margin-bottom: 10px;
}

.pp-link {
    color: #f6d55c;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.pp-link:hover {
    color: #c84b31;
    text-decoration: underline;
}

.pp-contact {
    margin-top: 12px;
}

.pp-contact li::before {
    content: none;
}

.pp-contact li {
    padding-left: 0;
}

.pp-back {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

/* Link below mechanics section in landing page */
.pp-mechanics-link {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(246,213,92,0.1);
}

.pp-inline-link {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}

.pp-inline-link:hover {
    color: #f6d55c;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 600px) {
    .pe-evolution {
        gap: 6px;
    }
    .pe-evo-arrow { font-size: 1rem; }
    .pe-evo--star .pe-evo-body  { width: 52px; height: 52px; }
    .pe-evo--giant .pe-evo-body { width: 42px; height: 42px; }

    .pe-footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .pe-mockup {
        width: 200px;
        height: 200px;
    }
}

