.ceylon-wrapper{
    padding:70px 20px;
    background:#07111f;
}

.ceylon-box{
    --gold:#d4af37;

    position:relative;
    max-width:1400px;
    margin:auto;

    border-radius:28px;
    overflow:hidden;

    border:1px solid rgba(212,175,55,.25);

    background:
      linear-gradient(to right, rgba(2,8,23,0.96) 35%, rgba(2,8,23,0.25) 70%, transparent 100%),
      url('https://ceylon.uber.space/wp-content/uploads/2026/05/back2.png');

    background-size:cover;
    background-position:right center;

    box-shadow:
      0 0 20px rgba(212,175,55,.08),
      0 0 60px rgba(0,0,0,.45);

    animation:ceylonGlow 4s infinite alternate;
}

/* GLOW */
@keyframes ceylonGlow{
    0%{
        box-shadow:
        0 0 15px rgba(212,175,55,.08),
        0 0 40px rgba(0,0,0,.35);
    }

    100%{
        box-shadow:
        0 0 30px rgba(212,175,55,.20),
        0 0 70px rgba(0,0,0,.55);
    }
}

/* BADGE */
.ceylon-badge{
    position:absolute;
    top:18px;
    right:18px;

    background:linear-gradient(135deg,#ffb300,#ffd54f);

    color:#000;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;

    padding:10px 16px;
    border-radius:40px;

    z-index:5;

    box-shadow:0 0 15px rgba(255,193,7,.45);

    animation:pulseBadge 2s infinite alternate;
}

@keyframes pulseBadge{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.05);
    }
}

/* INNER */
.ceylon-inner{
    display:flex;
    align-items:center;
    min-height:760px;
    padding:90px;
}

/* LEFT */
.ceylon-left{
    max-width:560px;
    color:#fff;
    font-family:'Montserrat',sans-serif;
}

/* HEADER */
.ceylon-header{
    text-align:center;
    margin-bottom:35px;
}

.ceylon-logo{
    font-size:120px;
    color:#d4af37;
    line-height:1;
    margin-bottom:10px;
}

/* SHIMMER */
@keyframes goldShimmer{
    0%{background-position:-200% center;}
    100%{background-position:200% center;}
}

.ceylon-title{
    font-family:'Playfair Display',serif;
    font-size:38px;
    letter-spacing:2px;

    background:linear-gradient(
      90deg,
      #b8860b,
      #ffd76a,
      #fff4b3,
      #d4af37,
      #b8860b
    );

    background-size:200% auto;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:goldShimmer 6s linear infinite;
}

.ceylon-sub{
    margin-top:10px;
    font-size:12px;
    letter-spacing:1px;
    opacity:.7;
}

/* TEXT */
.ceylon-headline{
    font-family:'Playfair Display',serif;
    font-size:34px;
    line-height:1.45;
    margin-bottom:20px;
}

.ceylon-desc{
    font-size:15px;
    line-height:1.8;
    opacity:.88;
    margin-bottom:45px;
    max-width:470px;
}

/* FEATURES */
.ceylon-features{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:18px;
}

.ceylon-feature{
    flex:1;
    min-width:95px;

    text-align:center;

    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;
}

.ceylon-feature svg{
    width:28px;
    height:28px;

    stroke:#d4af37;
    fill:none;
    stroke-width:1.3;
}

.ceylon-feature span{
    font-size:10px;
    line-height:1.4;
    letter-spacing:.5px;
}

/* BUTTON */
.ceylon-btn{
    display:inline-block;
    margin-top:45px;

    background:linear-gradient(135deg,#d4af37,#f5d76e);

    color:#000;
    text-decoration:none;

    padding:15px 38px;
    border-radius:50px;

    font-weight:700;
    letter-spacing:.5px;

    transition:.35s ease;

    box-shadow:0 0 20px rgba(212,175,55,.25);
}

.ceylon-btn:hover{
    transform:translateY(-4px);

    box-shadow:
      0 0 25px rgba(212,175,55,.45),
      0 0 40px rgba(212,175,55,.15);
}

/* MOBILE */
@media(max-width:900px){

    .ceylon-inner{
        padding:70px 35px;
        min-height:auto;
        justify-content:center;
        text-align:center;
    }

    .ceylon-left{
        max-width:100%;
    }

    .ceylon-box{
        background:
        linear-gradient(to bottom, rgba(2,8,23,.92), rgba(2,8,23,.88)),
        url('https://ceylon.uber.space/wp-content/uploads/2026/05/back2.png');

        background-size:cover;
        background-position:center;
    }

    .ceylon-features{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .ceylon-logo{
        font-size:90px;
    }

    .ceylon-title{
        font-size:28px;
    }

    .ceylon-headline{
        font-size:25px;
    }
}

@media(max-width:520px){

    .ceylon-wrapper{
        padding:50px 15px;
    }

    .ceylon-inner{
        padding:55px 22px;
    }

    .ceylon-logo{
        font-size:70px;
    }

    .ceylon-headline{
        font-size:22px;
    }

    .ceylon-btn{
        width:100%;
        text-align:center;
    }

    .ceylon-feature span{
        font-size:9px;
    }
}
