/*==================================================
RULETDENIZ V5
Premium Affiliate Landing Page
==================================================*/

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

*::before,
*::after{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Poppins",sans-serif;

    background:#090909;

    color:#fff;

    line-height:1.6;

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

button{

    font-family:inherit;

    cursor:pointer;

    border:none;

}

:root{

    --bg:#090909;

    --card:#101010;

    --gold:#D4AF37;

    --gold-light:#F0D878;

    --text:#ffffff;

    --text-light:#b8b8b8;

    --border:rgba(255,255,255,.08);

    --radius:22px;

    --transition:.35s ease;

    --shadow:

        0 18px 45px rgba(0,0,0,.35);

}

/*==========================
GLOBAL
==========================*/

.container{

    width:min(1180px,92%);

    margin:auto;

}

section{

    position:relative;

}

.section-title{

    text-align:center;

    margin-bottom:35px;

}

.section-title span{

    display:inline-block;

    color:var(--gold);

    font-size:13px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:10px;

}

.section-title h2{

    font-size:38px;

    font-weight:800;

}

.section-title h2::after{

    content:"";

    display:block;

    width:70px;

    height:3px;

    margin:16px auto 0;

    background:var(--gold);

    border-radius:50px;

}
/*==================================================
HEADER
==================================================*/

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:999;

    background:rgba(9,9,9,.78);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.05);

    transition:background .35s ease,border-color .35s ease;

}

.header .container{

    height:78px;

    display:flex;

    justify-content:center;

    align-items:center;

}

.logo{

    display:flex;

    align-items:center;

    justify-content:center;

}

.logo img{

    width:64px;

    transition:transform .35s ease, filter .35s ease;

    will-change:transform;

}

.logo:hover img{

    transform:scale(1.08);

    filter:drop-shadow(0 0 14px rgba(212,175,55,.45));

}

/*==========================
TABLET
==========================*/

@media(max-width:768px){

    .header .container{

        height:72px;

    }

    .logo img{

        width:58px;

    }

}

/*==========================
SMALL MOBILE
==========================*/

@media(max-width:430px){

    .header .container{

        height:68px;

    }

    .logo img{

        width:54px;

    }

}
/*==================================================
HERO
==================================================*/

.hero{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    min-height:42vh;

    padding:100px 0 25px;

    overflow:hidden;

}

/* Gold Background Glow */

.hero::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    left:50%;

    top:-420px;

    transform:translateX(-50%);

    background:radial-gradient(
        circle,
        rgba(212,175,55,.16),
        transparent 72%
    );

    filter:blur(45px);

    pointer-events:none;

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:760px;

    margin:auto;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 22px;

    border-radius:999px;

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

    background:rgba(255,255,255,.03);

    color:var(--gold);

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:20px;

}

.hero h1{

    font-size:clamp(48px,7vw,82px);

    font-weight:900;

    line-height:1.05;

    letter-spacing:2px;

    margin-bottom:18px;

}

.hero-divider{

    width:110px;

    height:3px;

    margin:0 auto;

    border-radius:50px;

    background:linear-gradient(
        90deg,
        transparent,
        var(--gold),
        transparent
    );

}

.hero h2{

    margin-top:18px;

    font-size:22px;

    font-weight:600;

    letter-spacing:8px;

}

.hero p{

    max-width:540px;

    margin:22px auto 0;

    color:var(--text-light);

    font-size:17px;

    line-height:1.8;

}

.hero-button{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    min-width:240px;

    height:60px;

    margin-top:34px;

    padding:0 34px;

    border-radius:16px;

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    color:#111;

    font-weight:700;

    transition:var(--transition);

    box-shadow:0 16px 36px rgba(212,175,55,.22);

}

.hero-button:hover{

    transform:translateY(-4px);

    box-shadow:0 22px 46px rgba(212,175,55,.35);

}

/* Floating Layer */

.hero-glow{

    position:absolute;

    inset:0;

    pointer-events:none;

}

/*==========================
TABLET
==========================*/

@media(max-width:992px){

    .hero{

        min-height:40vh;

        padding:95px 0 22px;

    }

    .hero h1{

        font-size:60px;

    }

    .hero h2{

        font-size:20px;

        letter-spacing:6px;

    }

}

/*==========================
MOBILE
==========================*/

@media(max-width:768px){

    .hero{

        min-height:36vh;

        padding:90px 0 20px;

    }

    .hero h1{

        font-size:46px;

    }

    .hero h2{

        font-size:18px;

        letter-spacing:4px;

    }

    .hero p{

        font-size:15px;

    }

    .hero-button{

        width:100%;

        max-width:320px;

    }

}

/*==========================
SMALL MOBILE
==========================*/

@media(max-width:430px){

    .hero{

        min-height:34vh;

        padding:85px 0 15px;

    }

    .hero h1{

        font-size:40px;

    }

    .hero h2{

        font-size:16px;

        letter-spacing:3px;

    }

    .hero-badge{

        font-size:11px;

        padding:8px 18px;

    }

}
/*==================================================
FEATURED SPONSOR
==================================================*/

.featured{

    padding:10px 0 80px;

}

.featured-card{

    position:relative;

    display:grid;

    grid-template-columns:300px 1fr;

    align-items:center;

    gap:48px;

    max-width:1100px;

    margin:auto;

    padding:42px;

    border-radius:28px;

    background:linear-gradient(
        180deg,
        rgba(255,255,255,.05),
        rgba(255,255,255,.02)
    );

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

    box-shadow:0 20px 60px rgba(0,0,0,.35);

    overflow:hidden;

    transition:all .35s ease;

}

.featured-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(
        90deg,
        transparent,
        var(--gold),
        transparent
    );

}

.featured-card:hover{

    transform:translateY(-8px);

    border-color:rgba(212,175,55,.35);

    box-shadow:0 30px 70px rgba(212,175,55,.12);

}

/*==========================
LOGO
==========================*/

.featured-logo{

    display:flex;

    justify-content:center;

    align-items:center;

}

.featured-logo img{

    width:240px;

    transition:.35s ease;

}

.featured-card:hover .featured-logo img{

    transform:scale(1.05);

}

/*==========================
CONTENT
==========================*/

.featured-content{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.featured-content ul{

    display:flex;

    flex-direction:column;

    gap:16px;

    margin-bottom:34px;

}

.featured-content li{

    display:flex;

    align-items:center;

    gap:14px;

    font-size:17px;

    color:#fff;

}

.featured-content li i{

    width:42px;

    height:42px;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

    border-radius:12px;

    color:var(--gold);

    background:rgba(212,175,55,.08);

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

}

/*==========================
BUTTON
==========================*/

.featured-button{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    width:260px;

    height:60px;

    border-radius:16px;

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    color:#111;

    font-weight:700;

    transition:.35s ease;

    box-shadow:0 15px 35px rgba(212,175,55,.22);

}

.featured-button:hover{

    transform:translateY(-4px);

    box-shadow:0 22px 45px rgba(212,175,55,.35);

}

/*==========================
TABLET
==========================*/

@media(max-width:992px){

    .featured-card{

        grid-template-columns:1fr;

        text-align:center;

        gap:34px;

        padding:36px;

    }

    .featured-logo img{

        width:210px;

    }

    .featured-content li{

        justify-content:center;

    }

    .featured-button{

        width:100%;

        max-width:320px;

        margin:auto;

    }

}

/*==========================
MOBILE
==========================*/

@media(max-width:576px){

    .featured{

        padding:0 0 60px;

    }

    .featured-card{

        padding:28px 22px;

        border-radius:22px;

    }

    .featured-logo img{

        width:170px;

    }

    .featured-content li{

        font-size:15px;

    }

    .featured-content li i{

        width:36px;

        height:36px;

        font-size:14px;

    }

}
/*==================================================
SPONSOR GRID
==================================================*/

.sponsors{

    padding:20px 0 80px;

}

.sponsor-grid{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:18px;
}

    align-items:stretch;

}

/*==================================================
SPONSOR CARD
==================================================*/

.sponsor-card{

    position:relative;

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    height:100%;

    min-height:320px;

    padding:32px 26px;

    border-radius:24px;

    background:linear-gradient(
        180deg,
        rgba(255,255,255,.045),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 14px 36px rgba(0,0,0,.28);

    overflow:hidden;

    transition:all .35s ease;

}

/* Gold Shine */

.sponsor-card::before{

    content:"";

    position:absolute;

    top:0;

    left:-130%;

    width:60%;

    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.10),
        transparent
    );

    transition:.9s;

}

.sponsor-card:hover::before{

    left:160%;

}

.sponsor-card:hover{

    transform:translateY(-8px);

    border-color:rgba(212,175,55,.35);

    box-shadow:0 24px 55px rgba(212,175,55,.12);

}

/*==========================
LOGO
==========================*/

.sponsor-logo{

    display:flex;

    justify-content:center;

    align-items:center;

    height:110px;

    margin-bottom:20px;

}

.sponsor-logo img{

    width:170px;

    max-height:90px;

    object-fit:contain;

    transition:.35s ease;

}

.sponsor-card:hover .sponsor-logo img{

    transform:scale(1.05);

}

/*==========================
TITLE
==========================*/

.sponsor-card h3{

    font-size:24px;

    font-weight:700;

    margin-bottom:12px;

}

/*==========================
DESCRIPTION
==========================*/

.sponsor-card p{

    flex:1;

    color:var(--text-light);

    font-size:15px;

    line-height:1.8;

    margin-bottom:24px;

}

/*==========================
BUTTON
==========================*/

.sponsor-btn{

    width:100%;

    height:54px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:14px;

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    color:#111;

    font-size:15px;

    font-weight:700;

    letter-spacing:.5px;

    transition:.35s ease;

    box-shadow:0 10px 24px rgba(212,175,55,.18);

}

.sponsor-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 36px rgba(212,175,55,.28);

}

/*==================================================
TABLET
==================================================*/

@media(max-width:768px){

    .sponsors{

        padding:10px 0 70px;

    }

    .sponsor-grid{

        gap:18px;

    }

    .sponsor-card{

        min-height:auto;

        padding:26px 20px;

    }

    .sponsor-logo{

        height:90px;

        margin-bottom:16px;

    }

    .sponsor-logo img{

        width:145px;

    }

    .sponsor-card h3{

        font-size:21px;

    }

    .sponsor-card p{

        font-size:14px;

        margin-bottom:20px;

    }

}
/*==================================================
SOCIAL
==================================================*/

.social{

    padding:20px 0 70px;

}

.social-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:22px;

}

.social-card{

    display:flex;

    align-items:center;

    gap:18px;

    padding:22px;

    border-radius:22px;

    background:linear-gradient(
        180deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(255,255,255,.06);

    transition:all .35s ease;

}

.social-card:hover{

    transform:translateY(-6px);

    border-color:rgba(212,175,55,.30);

    box-shadow:0 18px 42px rgba(212,175,55,.10);

}

.social-icon{

    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    border-radius:16px;

    background:rgba(212,175,55,.08);

    color:var(--gold);

    font-size:24px;

}

.social-info{

    flex:1;

}

.social-info h3{

    font-size:18px;

    font-weight:700;

    margin-bottom:4px;

}

.social-info span{

    color:var(--text-light);

    font-size:14px;

}

/*==================================================
FOOTER
==================================================*/

.footer{

    padding:28px 0;

    background:#070707;

    border-top:1px solid rgba(255,255,255,.06);

}

.footer-content{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:14px;

    text-align:center;

}

.footer p{

    color:var(--text-light);

    font-size:14px;

}

.footer-links{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:18px;

}

.footer-links a{

    color:var(--text-light);

    transition:.3s ease;

}

.footer-links a:hover{

    color:var(--gold);

}

/*==================================================
MOBILE
==================================================*/

@media(max-width:768px){

    .social{

        padding:15px 0 60px;

    }

    .social-grid{

        gap:16px;

    }

    .social-card{

        padding:18px;

    }

    .social-icon{

        width:52px;

        height:52px;

        font-size:20px;

    }

    .footer{

        padding:24px 0;

    }

    .footer-links{

        gap:14px;

    }

}
/*==================================================
PART 7
ANIMATIONS + BUTTON EFFECTS + SCROLLBAR
==================================================*/

/* Fade Up */

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* Floating Logo */

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-6px);

    }

    100%{

        transform:translateY(0);

    }

}

/* Gold Glow */

@keyframes pulseGlow{

    0%{

        box-shadow:0 0 0 rgba(212,175,55,.18);

    }

    50%{

        box-shadow:0 0 30px rgba(212,175,55,.30);

    }

    100%{

        box-shadow:0 0 0 rgba(212,175,55,.18);

    }

}

/* Entrance Animation */

.hero-content,
.featured-card,
.sponsor-card,
.social-card{

    animation:fadeUp .8s ease both;

}

/* Floating Logo */

.logo img{

    animation:float 5s ease-in-out infinite;

}

/*==========================
BUTTON SHINE
==========================*/

.hero-button,
.featured-button,
.sponsor-btn{

    position:relative;

    overflow:hidden;

}

.hero-button::before,
.featured-button::before,
.sponsor-btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-130%;

    width:60%;

    height:100%;

    background:linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.35),

        transparent

    );

    transition:left .8s ease;

}

.hero-button:hover::before,
.featured-button:hover::before,
.sponsor-btn:hover::before{

    left:170%;

}

.hero-button:hover,
.featured-button:hover,
.sponsor-btn:hover{

    animation:pulseGlow 1.5s infinite;

}

/*==========================
SCROLLBAR
==========================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#0d0d0d;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(

        180deg,

        var(--gold),

        #8b6b14

    );

    border-radius:100px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--gold-light);

}

/*==========================
TEXT SELECTION
==========================*/

::selection{

    background:var(--gold);

    color:#111;

}

/*==========================
FOCUS
==========================*/

a:focus-visible,
button:focus-visible{

    outline:2px solid var(--gold);

    outline-offset:4px;

    border-radius:10px;

}

/*==========================
PERFORMANCE
==========================*/

.hero-button,
.featured-button,
.sponsor-btn,
.featured-card,
.sponsor-card,
.social-card,
.logo img{

    will-change:transform;

}

img{

    image-rendering:auto;

}
/*==================================================
RESPONSIVE FINAL
RULETDENIZ V5
==================================================*/

/* Laptop */

@media (max-width:1200px){

    .container{

        width:min(1100px,94%);

    }

}

/* Tablet */

@media (max-width:992px){

    .section-title h2{

        font-size:32px;

    }

    .hero{

        min-height:40vh;

        padding:95px 0 22px;

    }

    .featured-card{

        grid-template-columns:1fr;

        text-align:center;

    }

    .featured-content li{

        justify-content:center;

    }

}

/* Mobile */

@media (max-width:768px){

    .container{

        width:92%;

    }

    .section-title{

        margin-bottom:30px;

    }

    .section-title h2{

        font-size:28px;

    }

    .hero{

        min-height:36vh;

        padding:90px 0 20px;

    }

    .hero h1{

        font-size:46px;

    }

    .hero h2{

        font-size:18px;

        letter-spacing:4px;

    }

    .hero p{

        font-size:15px;

    }

    .hero-button,

    .featured-button{

        width:100%;

        max-width:320px;

        margin-inline:auto;

    }

    .featured{

        padding:0 0 60px;

    }

    .sponsors{

        padding:10px 0 60px;

    }

    .social{

        padding:10px 0 60px;

    }

}

/* Small Mobile */

@media (max-width:430px){

    .header .container{

        height:68px;

    }

    .logo img{

        width:54px;

    }

    .hero{

        min-height:34vh;

        padding:85px 0 15px;

    }

    .hero h1{

        font-size:40px;

    }

    .hero h2{

        font-size:16px;

        letter-spacing:3px;

    }

    .hero-badge{

        font-size:11px;

        padding:8px 16px;

    }

    .featured-card{

        padding:24px 18px;

    }

    .sponsor-card{

        padding:22px 18px;

    }

}
.sponsor-card{
    width:100%;
}

/*==================================================
 CURRENT INDEX COMPATIBILITY
==================================================*/

/* index.html uses direct icon/span children for social cards. */
.social-card i{
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    border-radius:50%;
    background:rgba(212,175,55,.10);
    color:var(--gold);
    font-size:18px;
}
/* =========================================
   MÜZİK KONTROLÜ
   ========================================= */

.music-control {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);

    z-index: 9999;

    padding: 10px 20px;

    background: #111;
    color: #f5c842;

    border: 1px solid rgba(212, 166, 45, 0.55);
    border-radius: 8px;

    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.5px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.music-control:hover {
    background: #181818;
    border-color: #d4a62d;
    transform: translateX(-50%) translateY(-2px);
}

.music-control.playing {
    color: #fff;
    border-color: #d4a62d;
}

/* ==================================================
   RULETDENIZ — TASARIM KORUMALI KOMPAKT AYARLAR
   Orijinal renkler, hizalama, kartlar ve efektler korunur.
   Sadece gereksiz bölüm boşlukları azaltılır.
   ================================================== */

html, body {
    background: #090909;
}

/* Header'ın altında içerik sıkışmasın; hero ortalaması korunur. */
.hero {
    min-height: 40vh;
    padding: 95px 0 20px;
}

/* Ana sponsor ile sonraki bölüm arasındaki gereksiz boşluk azaltılır. */
.featured {
    padding: 5px 0 48px;
}

.featured .section-title {
    margin-bottom: 25px;
}

/* Diğer sponsorlar daha kompakt ama kart tasarımı aynıdır. */
.sponsors {
    padding: 10px 0 48px;
}

.sponsors .section-title {
    margin-bottom: 28px;
}

/* Sosyal medya bölümü yukarı alınır. */
.social {
    padding: 10px 0 45px;
}

.social .section-title {
    margin-bottom: 28px;
}

.footer {
    padding: 24px 0;
}

@media (max-width: 992px) {
    .hero {
        min-height: 38vh;
        padding: 90px 0 20px;
    }

    .featured {
        padding: 5px 0 42px;
    }

    .sponsors {
        padding: 8px 0 42px;
    }

    .social {
        padding: 8px 0 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 36vh;
        padding: 88px 0 18px;
    }

    .featured {
        padding: 0 0 35px;
    }

    .sponsors {
        padding: 5px 0 35px;
    }

    .social {
        padding: 5px 0 32px;
    }
}

@media (max-width: 430px) {
    .hero {
        min-height: 34vh;
        padding: 82px 0 15px;
    }

    .featured {
        padding: 0 0 30px;
    }

    .sponsors {
        padding: 5px 0 30px;
    }

    .social {
        padding: 5px 0 28px;
    }
}
.music-control {
    position: static;
    display: block;
    margin: 10px auto 0;

    padding: 9px 18px;

    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 8px;

    background: #111;
    color: #f5c842;

    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 700;

    cursor: pointer;

    transition: all 0.25s ease;
}

.music-control:hover {
    background: #181818;
    border-color: #d4a62d;
    transform: translateY(-2px);
}

.music-control.playing {
    color: #fff;
    border-color: #d4a62d;
}


/*==================================================
  REKLAM ALANI — BETOVIS YERİNE
==================================================*/

.ad-section{
    padding:5px 0 48px;
}

.ad-card{
    position:relative;
    min-height:155px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:32px;
    border-radius:28px;
    overflow:hidden;

    background:
        radial-gradient(circle at 50% 0%, rgba(212,175,55,.12), transparent 62%),
        linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));

    border:1px solid rgba(212,175,55,.28);
    box-shadow:
        0 20px 60px rgba(0,0,0,.35),
        0 0 45px rgba(212,175,55,.06);

    transition:transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.ad-card::before{
    content:"";
    position:absolute;
    inset:10px;
    border:1px solid rgba(212,175,55,.08);
    border-radius:21px;
    pointer-events:none;
}

.ad-card::after{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    width:180px;
    height:2px;
    transform:translateX(-50%);
    background:linear-gradient(90deg, transparent, var(--gold), transparent);
    box-shadow:0 0 18px rgba(212,175,55,.35);
}

.ad-card span{
    position:relative;
    z-index:2;
    color:var(--gold-light);
    font-size:clamp(18px, 2.2vw, 27px);
    font-weight:800;
    letter-spacing:2px;
    text-shadow:0 0 18px rgba(212,175,55,.14);
}

.ad-card:hover{
    transform:translateY(-5px);
    border-color:rgba(212,175,55,.48);
    box-shadow:
        0 28px 70px rgba(0,0,0,.42),
        0 0 45px rgba(212,175,55,.12);
}

@media(max-width:768px){
    .ad-section{
        padding:0 0 35px;
    }

    .ad-card{
        min-height:125px;
        padding:24px 18px;
        border-radius:22px;
    }

    .ad-card span{
        font-size:17px;
        letter-spacing:1.2px;
    }
}

@media(max-width:430px){
    .ad-card{
        min-height:110px;
        padding:22px 14px;
    }

    .ad-card span{
        font-size:15px;
        letter-spacing:.8px;
    }
}
