* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #FFF7F5;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.ff55-page{
    --ff-red:#F64A3E;
    --ff-coral:#FD7E73;
    --ff-peach:#FFB2A6;
    --ff-light:#FFF7F5;
    --ff-dark:#171827;
    --ff-navy:#242642;
    --ff-purple:#6752D9;
    --ff-purple-light:#F0EDFF;
    --ff-orange:#F58A3C;
    --ff-green:#239A70;
    --ff-green-light:#ECFAF5;
    --ff-text:#343541;
    --ff-muted:#727481;
    --ff-border:#EDE5E2;
    --ff-white:#FFFFFF;

    max-width:1350px;
    width:100%;
    margin:0 auto;
    padding:25px 18px 80px;
    color:var(--ff-text);
    font-family:Arial,Helvetica,sans-serif;
    line-height:1.75;
}

.ff55-page *,
.ff55-page *::before,
.ff55-page *::after{
    box-sizing:border-box;
}

.ff55-page p{
    margin:0 0 18px;
    font-size:16px;
}

.ff55-page strong{
    color:#B9322B;
}




.site-header {
    width: 100%;
    position: relative;
    z-index: 9999;
    background: linear-gradient(135deg, #F54A3E 0%, #e03d32 100%);
    box-shadow: 0 4px 20px rgba(245, 74, 62, 0.25);
}

.header-container {
    width: 100%;
    max-width: 1280px;
    min-height: 76px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 28px;
    box-sizing: border-box;
}

/* =========================================================
   LOGO
========================================================= */
.site-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 92px;
    height: 65px;
    padding: 4px 10px;
    background: #fff;
    border-radius: 10px;
    text-decoration: none !important;
    overflow: hidden;
    transition: transform 0.25s ease;
}

.site-logo:hover {
    transform: scale(1.03);
}

.site-logo img {
    display: block;
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* =========================================================
   NAVIGATION
========================================================= */

.main-navigation {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-navigation > ul {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-navigation li {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-navigation > ul > li > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1.2;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-navigation > ul > li > a:hover,
.main-navigation > ul > li.current-menu-item > a {
    color: #F54A3E;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* =========================================================
   MORE DROPDOWN
========================================================= */

.more-menu > a {
    cursor: pointer;
}

.more-menu > a::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 8px;
    margin-top: -3px;
    border-right: 1.8px solid currentColor;
    border-bottom: 1.8px solid currentColor;
    transform: rotate(45deg);
    transition: all 0.25s ease;
}

.more-menu:hover > a::after {
    transform: rotate(225deg);
    margin-top: 3px;
}

.more-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: 240px;
    margin: 0;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #f0e6e4;
    border-radius: 16px;
    list-style: none;
    box-shadow: 0 20px 50px rgba(30, 15, 15, 0.18);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.more-menu:hover .more-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.more-dropdown li {
    width: 100%;
}

.more-dropdown a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 44px;
    padding: 11px 14px;
    box-sizing: border-box;
    border-radius: 10px;
    color: #2a252c;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.more-dropdown a:hover {
    color: #F54A3E;
    background: #FFF2F0;
    padding-left: 18px;
}

/* =========================================================
   HEADER BUTTONS
========================================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    height: 46px;
    padding: 10px 20px;
    box-sizing: border-box;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Login */

.header-login {
    color: #ffffff !important;
    background: #38B286;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
}

.header-login:hover {
    color: #F54A3E !important;
    background: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Register */

.header-register {
    color: #fbf6f5 !important;
    background: #618DF3;
    border-color: #618DF3;
    box-shadow: 0 6px 18px rgba(40, 15, 12, 0.18);
}

.header-register:hover {
    color: #F54A3E !important;
    background: #fff8f7;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(40, 15, 12, 0.22);
}

/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    margin: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5.5px;
    transition: all 0.25s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2.2px;
    border-radius: 4px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1100px) {
    .header-container {
        gap: 18px;
        padding: 12px 20px;
    }

    .main-navigation > ul > li > a {
        padding: 10px 12px;
        font-size: 13.5px;
    }

    .header-btn {
        min-width: 78px;
        padding: 0 15px;
        font-size: 13px;
        height: 42px;
    }

    .site-logo img {
        max-width: 160px;
        height: 48px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 880px) {
    .header-container {
        min-height: 70px;
        padding: 10px 16px;
    }

    .site-logo img {
        max-width: 148px;
        height: 46px;
    }

    .mobile-menu-toggle {
        display: flex;
        margin-left: 6px;
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: none;
        padding: 14px 16px 22px;
        box-sizing: border-box;
        background: #ffffff;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 20px 40px rgba(25, 15, 15, 0.15);
    }

    .main-navigation.mobile-open {
        display: block;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .main-navigation > ul {
        display: block;
        width: 100%;
        gap: 4px;
    }

    .main-navigation li {
        width: 100%;
    }

    .main-navigation > ul > li > a {
        display: flex;
        justify-content: flex-start;
        width: 100%;
        min-height: 48px;
        padding: 13px 14px;
        box-sizing: border-box;
        color: #242126;
        border-radius: 10px;
        font-size: 15px;
    }

    .main-navigation > ul > li > a:hover,
    .main-navigation > ul > li.current-menu-item > a {
        color: #F54A3E;
        background: #FFF2F0;
        box-shadow: none;
    }

    .more-menu > a::after {
        margin-left: auto;
        border-color: #F54A3E;
    }

    /* Mobile Dropdown */

    .more-dropdown {
        position: static;
        width: 100%;
        display: none !important;
        padding: 4px 0 6px 14px;
        margin: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .more-menu.mobile-dropdown-open .more-dropdown {
        display: block !important;
    }

    .more-menu:hover .more-dropdown {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .more-dropdown a {
        min-height: 44px;
        color: #55505a;
        font-size: 14px;
    }

    .more-dropdown a:hover {
        color: #F54A3E;
        background: #FFF2F0;
        padding-left: 18px;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {
    .header-container {
        padding: 9px 14px;
    }

    .site-logo img {
        max-width: 138px;
        height: 44px;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        margin-left: auto;
    }
}

@media (max-width: 380px) {
    .site-logo img {
        max-width: 126px;
        height: 42px;
    }

    .mobile-menu-toggle {
        width: 42px;
        height: 42px;
    }
}


/* =========================================================
   HERO
   ========================================================= */

.ff55-hero{
    position:relative;
    min-height:480px;
    overflow:hidden;
    display:flex;
    align-items:center;
    padding:65px 7%;
    border-radius:36px;
    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(255,255,255,.22) 0,
            rgba(255,255,255,0) 28%
        ),
        radial-gradient(
            circle at 15% 100%,
            rgba(255,178,166,.22) 0,
            rgba(255,178,166,0) 32%
        ),
        linear-gradient(
            118deg,
            #C62D2B 0%,
            #F64A3E 38%,
            #FD7E73 70%,
            #FFB2A6 100%
        );
    box-shadow:
        0 30px 70px rgba(198,45,43,.22),
        inset 0 1px 0 rgba(255,255,255,.28);
}

/* large decorative circle */

.ff55-hero-circle{
    position:absolute;
    width:470px;
    height:470px;
    right:-145px;
    top:-90px;
    border:1px solid rgba(255,255,255,.23);
    border-radius:50%;
}

.ff55-hero-circle::before{
    content:"";
    position:absolute;
    inset:38px;
    border:1px solid rgba(255,255,255,.17);
    border-radius:50%;
}

.ff55-hero-circle::after{
    content:"";
    position:absolute;
    inset:78px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:50%;
}


/* hero left content */

.ff55-hero-content{
    position:relative;
    z-index:5;
    width:62%;
}

.ff55-hero-label{
    display:inline-flex;
    align-items:center;
    gap:9px;
    margin-bottom:22px;
    padding:8px 16px;
    border:1px solid rgba(255,255,255,.3);
    border-radius:30px;
    background:rgba(255,255,255,.13);
    color:#fff;
    font-size:13px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
    backdrop-filter:blur(10px);
}

.ff55-hero-content h1{
    max-width:920px;
    margin:0;
    color:#fff;
    font-size: 48px;
    line-height:1.08;
    letter-spacing:-2.5px;
    font-weight:700;
    text-shadow:0 8px 25px rgba(100,20,20,.2);
}

.ff55-hero-line{
    width:90px;
    height:5px;
    margin-top:27px;
    border-radius:20px;
    background:#fff;
}

.ff55-hero-content .intro {
    margin: 18px 0 0;
    color: #ffff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.2px;
    opacity: 0.95;
}

/* hero game visual */

.ff55-game-orbit{
    position:absolute;
    z-index:4;
    right:8%;
    top:50%;
    width:265px;
    height:265px;
    transform:translateY(-50%);
    border:1px solid rgba(255,255,255,.2);
    border-radius:50%;
    background:rgba(255,255,255,.055);
    box-shadow:
        0 0 70px rgba(255,255,255,.12),
        inset 0 0 40px rgba(255,255,255,.08);
    backdrop-filter:blur(5px);
}

.ff55-game-orbit-inner{
    position:absolute;
    inset:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.23),
            rgba(255,255,255,.07)
        );
    border:1px solid rgba(255,255,255,.24);
    box-shadow:
        0 20px 45px rgba(90,20,20,.18);
}

.ff55-controller{
    position:relative;
    width:125px;
    height:82px;
    border-radius:40px 40px 30px 30px;
    background:#fff;
    box-shadow:0 15px 30px rgba(90,20,20,.22);
}

.ff55-controller::before{
    content:"";
    position:absolute;
    left:26px;
    top:29px;
    width:31px;
    height:9px;
    border-radius:5px;
    background:var(--ff-red);
    box-shadow:
        11px -11px 0 -2px var(--ff-red),
        11px 11px 0 -2px var(--ff-red);
}

.ff55-controller::after{
    content:"";
    position:absolute;
    right:26px;
    top:27px;
    width:12px;
    height:12px;
    border-radius:50%;
    background:var(--ff-purple);
    box-shadow:
        15px 10px 0 var(--ff-coral);
}

.ff55-orbit-icon{
    position:absolute;
    display:flex;
    align-items:center;
    justify-content:center;
    width:48px;
    height:48px;
    border:1px solid rgba(255,255,255,.3);
    border-radius:15px;
    background:rgba(255,255,255,.16);
    color:#fff;
    font-size:21px;
    backdrop-filter:blur(10px);
}

.ff55-orbit-icon.one{
    left:-12px;
    top:65px;
}

.ff55-orbit-icon.two{
    right:4px;
    top:12px;
}

.ff55-orbit-icon.three{
    right:-10px;
    bottom:45px;
}

.ff55-orbit-icon.four{
    left:40px;
    bottom:-15px;
}


/* =========================================================
   INTRO OVERLAP
   ========================================================= */

.ff55-intro-wrap{
    position:relative;
    z-index:10;
    width:90%;
    margin:-45px auto 50px;
}

.ff55-intro{
    display:grid;
    grid-template-columns:90px 1fr;
    gap:25px;
    padding:32px 38px;
    border:1px solid rgba(246,74,62,.13);
    border-radius:24px;
    background:#fff;
    box-shadow:0 22px 55px rgba(29,30,45,.10);
}

.ff55-intro-mark{
    width:72px;
    height:72px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:22px;
    background:
        linear-gradient(
            145deg,
            var(--ff-red),
            var(--ff-coral)
        );
    color:#fff;
    font-size:30px;
    box-shadow:0 12px 25px rgba(246,74,62,.22);
}

.ff55-intro-text p:last-child{
    margin-bottom:0;
}


/* =========================================================
   SECTION HEADER
   ========================================================= */

.ff55-section{
    margin:50px 0;
}

.ff55-heading{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:25px;
}

.ff55-heading-number{
    display:flex;
    align-items:center;
    justify-content:center;
    width:52px;
    height:52px;
    flex:0 0 52px;
    border-radius:17px;
    background:var(--ff-dark);
    color:#fff;
    font-size:22px;
    box-shadow:0 10px 22px rgba(23,24,39,.15);
}

.ff55-heading-text{
    flex:1;
}

.ff55-heading-text span{
    display:block;
    margin-bottom:3px;
    color:var(--ff-red);
    font-size:12px;
    font-weight:900;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.ff55-page h2{
    margin:0;
    color:var(--ff-dark);
    font-size: 40px;
    line-height:1.2;
    letter-spacing:-1px;
    font-weight:900;
}

.ff55-page h3{
    margin:32px 0 17px;
    color:var(--ff-navy);
    font-size:24px;
    line-height:1.35;
    font-weight:800;
}


/* =========================================================
   FEATURES - 3 LARGE PANELS
   ========================================================= */

.ff55-feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-top:28px;
}

.ff55-feature{
    position:relative;
    min-height:180px;
    overflow:hidden;
    padding:27px;
    border-radius:23px;
    background:#fff;
    border:1px solid var(--ff-border);
    box-shadow:0 12px 35px rgba(30,31,45,.055);
}

.ff55-feature::after{
    content:"";
    position:absolute;
    right:-45px;
    bottom:-55px;
    width:150px;
    height:150px;
    border-radius:50%;
    background:var(--ff-light);
}

.ff55-feature-icon{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:center;
    width:50px;
    height:50px;
    margin-bottom:24px;
    border-radius:16px;
    color:#fff;
    font-size:22px;
}

.ff55-feature:nth-child(1) .ff55-feature-icon{
    background:linear-gradient(135deg,#F64A3E,#FD7E73);
}

.ff55-feature:nth-child(2) .ff55-feature-icon{
    background:linear-gradient(135deg,#6752D9,#8977E8);
}

.ff55-feature:nth-child(3) .ff55-feature-icon{
    background:linear-gradient(135deg,#239A70,#42BE91);
}

.ff55-feature:nth-child(4) .ff55-feature-icon{
    background:linear-gradient(135deg,#F58A3C,#FFB15F);
}

.ff55-feature:nth-child(5) .ff55-feature-icon{
    background:linear-gradient(135deg,#E44D88,#F27BAD);
}

.ff55-feature:nth-child(6) .ff55-feature-icon{
    background:linear-gradient(135deg,#3E70D9,#709AFF);
}

.ff55-feature-text{
    position:relative;
    z-index:3;
    max-width:230px;
    color:var(--ff-dark);
    font-size:16px;
    font-weight:800;
    line-height:1.45;
}


/* =========================================================
   DOWNLOAD - SPLIT EDITORIAL
   ========================================================= */

.ff55-download{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    margin-top:28px;
}

.ff55-method{
    position:relative;
    padding:34px;
    overflow:hidden;
    border-radius:28px;
    background:var(--ff-dark);
    color:#fff;
}

.ff55-method:nth-child(2){
    background:
        linear-gradient(
            145deg,
            #FFF7F5,
            #fff
        );
    border:1px solid var(--ff-border);
    color:var(--ff-text);
}

.ff55-method-top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:15px;
    margin-bottom:28px;
}

.ff55-method-number{
    display:flex;
    align-items:center;
    justify-content:center;
    width:54px;
    height:54px;
    border-radius:17px;
    background:var(--ff-red);
    color:#fff;
    font-size:17px;
    font-weight:900;
}

.ff55-method:nth-child(2) .ff55-method-number{
    background:var(--ff-purple);
}

.ff55-method-title{
    flex:1;
}

.ff55-method-title h3{
    margin:0;
    color:inherit;
    font-size:21px;
}

.ff55-method-tag{
    color:var(--ff-peach);
    font-size:11px;
    font-weight:900;
    letter-spacing:1px;
    text-transform:uppercase;
}


/* =========================================================
   TIMELINE
   ========================================================= */

.ff55-timeline{
    position:relative;
    display:grid;
    gap:4px;
}

.ff55-timeline::before{
    content:"";
    position:absolute;
    left:17px;
    top:20px;
    bottom:20px;
    width:2px;
    background:rgba(255,255,255,.15);
}

.ff55-method:nth-child(2) .ff55-timeline::before{
    background:#eadeda;
}

.ff55-timeline-step{
    position:relative;
    display:grid;
    grid-template-columns:36px 1fr;
    gap:16px;
    padding:12px 0;
}

.ff55-step-number{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:center;
    width:36px;
    height:36px;
    border-radius:50%;
    background:#31334B;
    color:#fff;
    font-size:12px;
    font-weight:900;
}

.ff55-method:nth-child(2) .ff55-step-number{
    background:#FFE4DF;
    color:var(--ff-red);
}

.ff55-timeline-step p{
    margin:0;
    color:inherit;
    font-size:14.5px;
}

.ff55-method .ff55-timeline-step strong{
    color:var(--ff-peach);
}

.ff55-method:nth-child(2) .ff55-timeline-step strong{
    color:#B9322B;
}


/* =========================================================
   OR AREA
   ========================================================= */

.ff55-or{
    display:flex;
    align-items:center;
    gap:14px;
    margin:30px 0;
    color:var(--ff-purple);
    font-size:13px;
    font-weight:900;
    letter-spacing:2px;
    text-transform:uppercase;
}

.ff55-or::before,
.ff55-or::after{
    content:"";
    flex:1;
    height:1px;
    background:#DED7F8;
}

.ff55-or-box{
    position:relative;
    padding:23px 25px 23px 68px;
    border-radius:20px;
    background:var(--ff-purple-light);
    border:1px solid #DED7F8;
}

.ff55-or-icon{
    position:absolute;
    left:20px;
    top:22px;
    width:33px;
    height:33px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:11px;
    background:var(--ff-purple);
    color:#fff;
}

.ff55-or-box p{
    margin:0 0 10px;
    font-size:15px;
}

.ff55-or-box p:last-child{
    margin-bottom:0;
}


/* =========================================================
   REGISTRATION / LOGIN TIMELINE
   ========================================================= */

.ff55-process{
    position:relative;
    max-width:980px;
    margin:28px auto 0;
    padding-left:30px;
}

.ff55-process::before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    bottom:0;
    width:2px;
    transform:translateX(-50%);
    background:
        linear-gradient(
            to bottom,
            var(--ff-red),
            var(--ff-peach),
            var(--ff-purple)
        );
}

.ff55-process-item{
    position:relative;
    width:50%;
    padding:0 40px 24px 0;
}

.ff55-process-item:nth-child(even){
    margin-left:50%;
    padding:0 0 24px 40px;
}

.ff55-process-card{
    position:relative;
    padding:22px;
    border:1px solid var(--ff-border);
    border-radius:19px;
    background:#fff;
    box-shadow:0 8px 25px rgba(30,31,45,.055);
}

.ff55-process-card p{
    margin:0;
    font-size:15px;
}

.ff55-process-dot{
    position:absolute;
    top:20px;
    right:-58px;
    z-index:3;
    display:flex;
    align-items:center;
    justify-content:center;
    width:36px;
    height:36px;
    border:6px solid #fff;
    border-radius:50%;
    background:var(--ff-red);
    color:#fff;
    font-size:11px;
    font-weight:900;
    box-shadow:0 5px 15px rgba(246,74,62,.2);
}

.ff55-process-item:nth-child(even) .ff55-process-dot{
    left:-58px;
    right:auto;
    background:var(--ff-purple);
}


/* =========================================================
   PROBLEMS - CLEAN LIST
   ========================================================= */

.ff55-problem-list{
    margin-top:28px;
    border-top:1px solid var(--ff-border);
}

.ff55-problem-row{
    display:grid;
    grid-template-columns:55px 220px 1fr;
    align-items:center;
    gap:20px;
    padding:23px 5px;
    border-bottom:1px solid var(--ff-border);
}

.ff55-problem-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:48px;
    height:48px;
    border-radius:15px;
    background:#FFF0ED;
    color:var(--ff-red);
    font-size:20px;
}

.ff55-problem-name{
    color:var(--ff-dark);
    font-weight:850;
}

.ff55-problem-text{
    font-size:15px;
}


/* =========================================================
   SAFETY - GREEN PANEL
   ========================================================= */

.ff55-safety-panel{
    margin-top:28px;
    padding:32px;
    border-radius:27px;
    background:
        linear-gradient(
            135deg,
            #ECFAF5,
            #F8FFFC
        );
    border:1px solid #D5EEE4;
}

.ff55-safety-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin-top:10px;
}

.ff55-safety-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    padding:19px;
    border-radius:17px;
    background:#fff;
    border:1px solid #E0EEE9;
}

.ff55-safety-icon{
    flex:0 0 38px;
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:var(--ff-green);
    color:#fff;
    font-size:16px;
}

.ff55-safety-item p{
    margin:0;
    font-size:15px;
}


/* =========================================================
   SAFE GAMING TIPS
   ========================================================= */

.ff55-tips{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:14px;
    margin-top:28px;
}

.ff55-tip{
    position:relative;
    min-height:240px;
    padding:23px 20px;
    border-radius:22px;
    background:#fff;
    border:1px solid var(--ff-border);
    box-shadow:0 9px 28px rgba(30,31,45,.055);
}

.ff55-tip-number{
    display:flex;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    margin-bottom:25px;
    border-radius:14px;
    background:var(--ff-dark);
    color:#fff;
    font-size:15px;
    font-weight:900;
}

.ff55-tip:nth-child(2) .ff55-tip-number{
    background:var(--ff-red);
}

.ff55-tip:nth-child(3) .ff55-tip-number{
    background:var(--ff-purple);
}

.ff55-tip:nth-child(4) .ff55-tip-number{
    background:var(--ff-orange);
}

.ff55-tip:nth-child(5) .ff55-tip-number{
    background:var(--ff-green);
}

.ff55-tip-text{
    font-size:14.5px;
}

.ff55-tip-text strong{
    display:block;
    margin-bottom:7px;
}


/* =========================================================
   CONCLUSION
   ========================================================= */

.ff55-conclusion{
    position:relative;
    overflow:hidden;
    margin:60px 0;
    padding:50px 55px;
    border-radius:30px;
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(103,82,217,.4),
            transparent 27%
        ),
        linear-gradient(
            120deg,
            #171827,
            #292C4D 65%,
            #F64A3E
        );
    box-shadow:0 25px 55px rgba(23,24,39,.18);
}

.ff55-conclusion::before{
    content:"55";
    position:absolute;
    right:35px;
    bottom:-50px;
    color:rgba(255,255,255,.055);
    font-size:190px;
    line-height:1;
    font-weight:900;
}

.ff55-conclusion h2{
    position:relative;
    z-index:2;
    margin:0 0 20px;
    color:#fff;
    font-size: 40px;
}

.ff55-conclusion p{
    position:relative;
    z-index:2;
    max-width:1000px;
    color:#fff;
}


/* =========================================================
   FAQ
   ========================================================= */

.ff55-faq{
    display:grid;
    gap:14px;
    margin-top:28px;
}

.ff55-faq-item{
    padding:24px 27px;
    border:1px solid var(--ff-border);
    border-radius:20px;
    background:#fff;
    box-shadow:0 8px 25px rgba(30,31,45,.045);
}

.ff55-faq-item h3{
    display:flex;
    align-items:center;
    gap:14px;
    margin:0 0 14px;
    color:var(--ff-dark);
    font-size:18px;
    line-height:1.4;
}

.ff55-faq-item h3::before{
    content:"?";
    flex:0 0 34px;
    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:11px;
    background:var(--ff-red);
    color:#fff;
    font-size:15px;
    font-weight:900;
}

.ff55-faq-item p{
    margin:0 0 0 48px;
    color:var(--ff-muted);
    font-size:15px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media(max-width:1050px){

    .ff55-game-orbit{
        right:4%;
        transform:translateY(-50%) scale(.82);
    }

    .ff55-hero-content{
        width:67%;
    }

    .ff55-feature-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .ff55-tips{
        grid-template-columns:repeat(3,1fr);
    }
}


@media(max-width:850px){

    .ff55-hero{
        min-height:420px;
    }

    .ff55-hero-content{
        width:100%;
        text-align:center;
    }

    .ff55-hero-content h1{
        margin:0 auto;
    }

    .ff55-hero-line{
        margin:25px auto 0;
    }

    .ff55-game-orbit{
        opacity:.35;
        right:-50px;
    }

    .ff55-download{
        grid-template-columns:1fr;
    }

    .ff55-process{
        padding-left:45px;
    }

    .ff55-process::before{
        left:20px;
        transform:none;
    }

    .ff55-process-item,
    .ff55-process-item:nth-child(even){
        width:100%;
        margin-left:0;
        padding:0 0 22px 35px;
    }

    .ff55-process-dot,
    .ff55-process-item:nth-child(even) .ff55-process-dot{
        left:-43px;
        right:auto;
    }

    .ff55-problem-row{
        grid-template-columns:55px 1fr;
    }

    .ff55-problem-text{
        grid-column:2;
    }

    .ff55-safety-grid{
        grid-template-columns:1fr;
    }

    .ff55-tips{
        grid-template-columns:repeat(2,1fr);
    }
}


@media(max-width:600px){

    .ff55-page{
        padding:10px 12px 55px;
    }

    .ff55-hero{
        min-height:390px;
        padding:45px 22px;
        border-radius:26px;
    }

    .ff55-hero-content h1{
        font-size:37px;
        letter-spacing:-1.5px;
    }

    .ff55-game-orbit{
        width:220px;
        height:220px;
        right:-75px;
        top:70%;
        opacity:.25;
    }

    .ff55-controller{
        transform:scale(.8);
    }

    .ff55-intro-wrap{
        width:94%;
        margin:-30px auto 40px;
    }

    .ff55-intro{
        grid-template-columns:1fr;
        padding:25px 21px;
        gap:17px;
    }

    .ff55-intro-mark{
        width:55px;
        height:55px;
        border-radius:16px;
        font-size:23px;
    }

    .ff55-heading{
        align-items:flex-start;
    }

    .ff55-heading-number{
        width:44px;
        height:44px;
        flex-basis:44px;
        font-size:18px;
    }

    .ff55-page h2{
        font-size:27px;
    }

    .ff55-page h3{
        font-size:21px;
    }

    .ff55-feature-grid,
    .ff55-tips{
        grid-template-columns:1fr;
    }

    .ff55-feature{
        min-height:auto;
    }

    .ff55-method{
        padding:25px 19px;
    }

    .ff55-problem-row{
        grid-template-columns:45px 1fr;
        gap:13px;
        padding:19px 0;
    }

    .ff55-problem-icon{
        width:42px;
        height:42px;
    }

    .ff55-problem-text{
        grid-column:1 / -1;
        padding-left:55px;
    }

    .ff55-safety-panel{
        padding:20px 15px;
    }

    .ff55-conclusion{
        padding:35px 22px;
        border-radius:23px;
    }

    .ff55-conclusion h2{
        font-size:30px;
    }

    .ff55-faq-item{
        padding:20px 17px;
    }

    .ff55-faq-item h3{
        font-size:17px;
    }

    .ff55-faq-item p{
        margin-left:0;
        padding-left:48px;
    }

    .ff55-page p{
        font-size:15px;
    }
}


/* =========================================================
   ESSENTIAL PAGES - COMMON DESIGN
   ========================================================= */

.page-container{
    --primary:#F64A3E;
    --primary-2:#FD7E73;
    --soft:#FFB2A6;
    --bg:#FFF7F5;
    --dark:#19161D;
    --text:#45414A;
    --muted:#74717A;
    --white:#FFFFFF;
    --purple:#6659D9;
    --purple-soft:#F2F0FF;
    --green:#1D9D70;
    --green-soft:#EAF8F2;

    width:100%;
    max-width:1240px;
    margin:0 auto;
    padding:25px 18px 70px;
    color:var(--text);
    font-family:Arial,Helvetica,sans-serif;
    line-height:1.75;
    box-sizing:border-box;
}

.page-container *,
.page-container *::before,
.page-container *::after{
    box-sizing:border-box;
}

.page-container h1,
.page-container h2{
    margin-top:0;
    color:var(--dark);
    line-height:1.25;
}

.page-container p{
    margin:0 0 19px;
}

.page-container p:last-child{
    margin-bottom:0;
}

.page-container a{
    color:var(--primary);
    font-weight:700;
    text-decoration:none;
    transition:.2s ease;
}

.page-container a:hover{
    color:var(--purple);
    text-decoration:underline;
}


/* =========================================================
   HERO
   ========================================================= */

.page-hero{
    position:relative;
    overflow:hidden;
    min-height:200px;
    display:flex;
    align-items:center;
    padding:60px 55px;
    margin-bottom:32px;
    border-radius:32px;
    background:
        radial-gradient(
            circle at 88% 20%,
            rgba(255,255,255,.32),
            transparent 22%
        ),
        radial-gradient(
            circle at 8% 100%,
            rgba(255,178,166,.35),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #F64A3E 0%,
            #FD7E73 55%,
            #FF9F94 100%
        );
    box-shadow:0 24px 55px rgba(246,74,62,.20);
}

.page-hero::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    right:-90px;
    top:-100px;
    border-radius:50%;
    background:rgba(255,255,255,.13);
}

.page-hero::after{
    content:"";
    position:absolute;
    width:160px;
    height:160px;
    right:170px;
    bottom:-105px;
    border-radius:50%;
    background:rgba(255,255,255,.10);
}

.page-hero-content{
    position:relative;
    z-index:3;
    max-width:800px;
}

.page-hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 15px;
    margin-bottom:20px;
    border:1px solid rgba(255,255,255,.35);
    border-radius:999px;
    background:rgba(255,255,255,.15);
    color:#fff;
    font-size:13px;
    font-weight:800;
    letter-spacing:.4px;
}

.page-hero h1{
    margin:0 0 17px;
    color:#fff;
    font-size:48px;
    letter-spacing:-1.5px;
}

.page-hero-intro{
    max-width:720px;
    margin:0;
    color:rgba(255,255,255,.94);
    font-size:18px;
}

.page-hero-icon{
    position:absolute;
    right:65px;
    bottom:55px;
    z-index:2;
    width:130px;
    height:130px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.28);
    border-radius:35px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    transform:rotate(8deg);
}

.page-hero-icon span{
    font-size:60px;
    transform:rotate(-8deg);
}


/* =========================================================
   INTRO AREA
   ========================================================= */

.page-intro{
    position:relative;
    display:grid;
    grid-template-columns:1.45fr .75fr;
    gap:22px;
    align-items:stretch;
    margin-bottom:24px;
}

.page-intro-text{
    position:relative;
    padding:35px;
    border-radius:25px;
    background:#fff;
    border:1px solid #EFE5E2;
    box-shadow:0 12px 32px rgba(35,25,25,.055);
}

.page-intro-text::before{
    content:"";
    position:absolute;
    left:0;
    top:28px;
    width:5px;
    height:70px;
    border-radius:0 8px 8px 0;
    background:linear-gradient(
        180deg,
        var(--primary),
        var(--primary-2)
    );
}

.page-disclaimer{
    position:relative;
    overflow:hidden;
    padding:30px;
    border-radius:25px;
    background:linear-gradient(145deg,#211D27,#302A37);
    color:#DDD8E1;
    box-shadow:0 15px 35px rgba(25,20,30,.15);
}

.page-disclaimer::after{
    content:"!";
    position:absolute;
    right:20px;
    bottom:-35px;
    font-size:170px;
    line-height:1;
    color:rgba(255,178,166,.08);
    font-weight:900;
}

.page-disclaimer-icon{
    position:relative;
    z-index:2;
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
    border-radius:17px;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-2)
    );
    color:#fff;
    font-size:25px;
}

.page-disclaimer p{
    position:relative;
    z-index:2;
}


/* =========================================================
   MAIN CONTENT CARDS
   ========================================================= */

.page-card{
    position:relative;
    padding:35px;
    margin-bottom:24px;
    border:1px solid #EFE5E2;
    border-radius:25px;
    background:var(--white);
    box-shadow:0 12px 32px rgba(35,25,25,.055);
}

.page-card::before{
    content:"";
    position:absolute;
    left:0;
    top:28px;
    width:5px;
    height:58px;
    border-radius:0 8px 8px 0;
    background:linear-gradient(
        180deg,
        var(--primary),
        var(--primary-2)
    );
}

.page-card h2{
    position:relative;
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:21px;
    font-size:29px;
}

.page-card h2::before{
    content:"✦";
    display:flex;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    flex:0 0 44px;
    border-radius:14px;
    background:var(--bg);
    color:var(--primary);
    font-size:20px;
}

.page-card:nth-child(1) h2::before{
    content:"🎯";
}

.page-card:nth-child(2) h2::before{
    content:"✓";
}

.page-card:nth-child(3) h2::before{
    content:"💡";
}

.page-card:nth-child(4) h2::before{
    content:"✦";
}

.page-card:nth-child(5) h2::before{
    content:"★";
}


/* =========================================================
   INFORMATION PANEL
   ========================================================= */

.page-info-panel{
    position:relative;
    margin-top:24px;
    padding:24px;
    border-radius:20px;
    background:var(--purple-soft);
    border:1px solid #E2DEFA;
}

.page-info-panel::before{
    content:"ℹ️";
    display:block;
    margin-bottom:10px;
    font-size:25px;
}


/* =========================================================
   ASSISTANCE
   ========================================================= */

.page-help{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    padding:30px;
    border-radius:24px;
    background:linear-gradient(
        135deg,
        var(--green-soft),
        #fff
    );
    border:1px solid #D8EEE5;
}

.page-help-content h2{
    margin-bottom:13px;
}

.page-help-content p{
    margin:0;
}

.page-help-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    flex:0 0 auto;
    padding:13px 21px;
    border-radius:14px;
    background:var(--green);
    color:#fff!important;
    text-decoration:none!important;
    box-shadow:0 9px 20px rgba(29,157,112,.18);
    transition:.25s ease;
}

.page-help-button:hover{
    transform:translateY(-3px);
    background:#17885F;
}


/* =========================================================
   FINAL SECTION
   ========================================================= */

.page-final{
    position:relative;
    overflow:hidden;
    padding:42px;
    border-radius:28px;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(255,178,166,.18),
            transparent 25%
        ),
        linear-gradient(135deg,#17151D,#292432);
    color:#DDD9E1;
    box-shadow:0 20px 45px rgba(25,20,30,.16);
}

.page-final::before{
    content:"✦";
    position:absolute;
    right:45px;
    top:15px;
    color:rgba(255,178,166,.09);
    font-size:150px;
    line-height:1;
}

.page-final h2{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:21px;
    color:#fff;
    font-size:29px;
}

.page-final h2::before{
    content:"★";
    display:flex;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    flex:0 0 44px;
    border-radius:14px;
    background:rgba(255,255,255,.08);
    color:var(--soft);
}

.page-final p{
    position:relative;
    z-index:2;
    color:#D8D3DD;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media(max-width:950px){

    .page-hero{
        padding:50px 38px;
    }

    .page-hero-icon{
        right:30px;
        opacity:.7;
    }

    .page-intro{
        grid-template-columns:1fr;
    }
}


@media(max-width:650px){

    .page-container{
        padding:12px 10px 45px;
    }

    .page-hero{
        min-height:auto;
        padding:38px 23px;
        border-radius:24px;
    }

    .page-hero h1{
        font-size:37px;
        letter-spacing:-.8px;
    }

    .page-hero-intro{
        font-size:16px;
    }

    .page-hero-icon{
        display:none;
    }

    .page-card,
    .page-intro-text{
        padding:25px 20px;
        border-radius:20px;
    }

    .page-card h2,
    .page-final h2{
        font-size:25px;
    }

    .page-disclaimer{
        padding:25px 21px;
        border-radius:20px;
    }

    .page-help{
        display:block;
        padding:25px 20px;
    }

    .page-help-button{
        width:100%;
        margin-top:20px;
    }

    .page-final{
        padding:29px 21px;
        border-radius:22px;
    }

    .page-final::before{
        right:-5px;
        font-size:100px;
    }
}


@media(max-width:400px){

    .page-hero{
        padding:32px 18px;
    }

    .page-hero h1{
        font-size:32px;
    }

    .page-card,
    .page-intro-text{
        padding:22px 17px;
    }

    .page-card h2,
    .page-final h2{
        font-size:22px;
    }

    .page-card h2::before,
    .page-final h2::before{
        width:40px;
        height:40px;
        flex-basis:40px;
    }

    .page-container p{
        font-size:14.5px;
        line-height:1.75;
    }
}

.ff55-footer {
    background: #19161D;
    color: #fff;
    margin-top: 60px;
    border-top: 4px solid #F54A3E;
}

.ff55-footer-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 55px 20px 20px;
}

.ff55-footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 45px;
    padding-bottom: 40px;
}

.ff55-footer-brand {
    max-width: 350px;
}

.ff55-footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
}

.ff55-footer-logo img {
    width: auto;
    max-width: 180px;
    height: 52px;
    object-fit: contain;
}

.ff55-footer-brand p {
    margin: 0;
    color: #C9C6CB;
    font-size: 14px;
    line-height: 1.8;
}

.ff55-footer-column h3 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
}

.ff55-footer-column h3::after {
    content: "";
    display: block;
    width: 35px;
    height: 3px;
    margin-top: 9px;
    background: #F54A3E;
    border-radius: 10px;
}

.ff55-footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ff55-footer-column li {
    margin-bottom: 11px;
}

.ff55-footer-column li a {
    color: #C9C6CB;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.25s ease;
}

.ff55-footer-column li a:hover {
    color: #F54A3E;
    padding-left: 5px;
}

.ff55-footer-account p {
    margin: 0 0 18px;
    color: #C9C6CB;
    font-size: 14px;
    line-height: 1.7;
}

.ff55-footer-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ff55-footer-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    padding: 10px 17px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.ff55-footer-login {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.06);
}

.ff55-footer-login:hover {
    background: #F54A3E;
    border-color: #F54A3E;
}

.ff55-footer-register {
    color: #F54A3E;
    background: #fff;
    border: 1px solid #fff;
}

.ff55-footer-register:hover {
    color: #fff;
    background: #F54A3E;
    border-color: #F54A3E;
}

.ff55-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.ff55-footer-bottom p {
    margin: 0;
    color: #99959D;
    font-size: 13px;
}

.ff55-footer-note {
    text-align: right;
}


/* Tablet */
@media (max-width: 950px) {
    .ff55-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .ff55-footer-brand {
        max-width: 100%;
    }
}


/* Mobile */
@media (max-width: 600px) {
    .ff55-footer {
        margin-top: 40px;
    }

    .ff55-footer-container {
        padding: 40px 18px 18px;
    }

    .ff55-footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ff55-footer-column h3 {
        margin-bottom: 16px;
    }

    .ff55-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .ff55-footer-note {
        text-align: left;
    }
}


.ff55-author-section {
    width: 100%;
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 18px;
}

.ff55-author-card {
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 35px;
    background: #fff;
    border: 1px solid #f1deda;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(245, 74, 62, 0.10);
}

.ff55-author-image {
    flex: 0 0 240px;
    width: 240px;
    height: 240px;
    padding: 5px;
    border-radius: 50%;
    overflow: hidden;
}

.ff55-author-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #fff;
}

.ff55-author-content {
    flex: 1;
}

.ff55-author-label {
    display: inline-block;
    margin-bottom: 8px;
    color: #F54A3E;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.ff55-author-content h1 {
    margin: 0 0 4px;
    color: #19161D;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.25;
}

.ff55-author-role {
    margin: 0 0 15px;
    color: #F54A3E;
    font-size: 15px;
    font-weight: 600;
}

.ff55-author-content p {
    margin: 0 0 13px;
    color: #55515A;
    font-size: 15px;
    line-height: 1.75;
}

.ff55-author-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.ff55-author-info span {
    display: inline-flex;
    align-items: center;
    padding: 8px 13px;
    color: #45414A;
    background: #FFF7F5;
    border: 1px solid #FFE1DC;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}


/* Tablet */
@media (max-width: 700px) {
    .ff55-author-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 22px;
        gap: 22px;
    }

    .ff55-author-content h1 {
        font-size: 27px;
    }

    .ff55-author-info {
        justify-content: center;
    }
}


/* Mobile */
@media (max-width: 480px) {
    .ff55-author-section {
        margin: 35px auto;
        padding: 0 14px;
    }

    .ff55-author-card {
        padding: 25px 18px;
        border-radius: 18px;
    }

    .ff55-author-image {
        width: 115px;
        height: 115px;
        flex-basis: 115px;
    }

    .ff55-author-content h1 {
        font-size: 24px;
    }

    .ff55-author-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .ff55-author-info span {
        width: 100%;
        justify-content: center;
    }
}
