:root {
    --red:#e52b2f;
    --red2:#c91f25;
    --ink:#122c3d;
    --muted:#667988;
    --line:#edf1f4;
    --bg:#f7fbfd;
    --card:#fff;
    --shadow:0 18px 50px rgba(16,47,66,.12);
    --radius:22px;
}

* {
    box-sizing:border-box;
}

body {
    margin:0;
    font-family:Inter,Arial,sans-serif;
    background:var(--bg);
    color:var(--ink);
}

a {
    text-decoration:none;
    color:inherit;
}

.topbar {
    height:76px;
    display:flex;
    align-items:center;
    gap:32px;
    padding:0 44px;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(18px);
    position:sticky;
    top:0;
    z-index:50;
    border-bottom:1px solid var(--line);
}

.brand {
    display:flex;
    align-items:center;
    gap:10px;
    min-width:240px;
}

.brand b {
    display:block;
    color:var(--red);
    font-size:28px;
    line-height:1;
}

.brand small {
    display:block;
    font-size:12px;
    color:#1f3544;
}

.brand-mark {
    display:grid;
    place-items:center;
}

.mainnav {
    display:flex;
    gap:28px;
    align-items:center;
    flex:1;
    justify-content:center;
    font-weight:700;
}

.mainnav a {
    font-size:15px;
}

.mainnav a:hover {
    color:var(--red);
}

.top-actions {
    display:flex;
    align-items:center;
    gap:18px;
}

.langs {
    display:flex;
    gap:8px;
}

.langs a {
    padding:9px 12px;
    border-radius:10px;
    font-weight:700;
}

.langs a.active {
    background:#fff;
    border:1px solid #ffd4d5;
    color:var(--red);
}

.search {
    font-size:34px;
    line-height:1;
}

.hero {
    position:relative;
    min-height:560px;
    background-image:var(--hero);
    background-size:cover;
    background-position:center;
    overflow:visible;
}

.hero-shade {
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(8,37,58,.74),rgba(8,37,58,.35) 48%,rgba(8,37,58,.05));
}

.hero-content {
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 500px;
    gap:30px;
    align-items:center;
    max-width:1500px;
    margin:0 auto;
    padding:54px 56px 78px;
}

.eyebrow {
    color:#fff;
    font-weight:800;
    letter-spacing:.06em;
    text-transform:uppercase;
}

.hero h1 {
    font-size:58px;
    line-height:1.06;
    margin:0 0 20px;
    color:#fff;
}

.lead {
    font-size:20px;
    line-height:1.55;
    color:#fff;
    max-width:620px;
}

.hero-buttons {
    display:flex;
    gap:16px;
    margin-top:28px;
}

.btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    border-radius:14px;
    padding:15px 22px;
    font-weight:800;
    border:1px solid transparent;
}

.btn .ico {
    width:24px;
    height:24px;
}

.btn.primary {
    background:linear-gradient(135deg,var(--red),var(--red2));
    color:white;
    box-shadow:0 14px 35px rgba(229,43,47,.28);
}

.btn.ghost {
    border-color:rgba(255,255,255,.75);
    color:#fff;
}

.btn.white {
    background:#fff;
    color:var(--red);
}

.wide {
    width:100%;
}

.laura-card {
    position:relative;
    min-height:380px;
}

.laura-photo {
    position:absolute;
    right:20px;
    bottom:-78px;
    width:360px;
    height:440px;
    background-size:cover;
    background-position:center;
    border-radius:180px 180px 24px 24px;
    box-shadow:var(--shadow);
    border:8px solid rgba(255,255,255,.45);
}

.bubble {
    position:absolute;
    left:0;
    top:45px;
    max-width:310px;
    background:rgba(255,255,255,.92);
    padding:24px;
    border-radius:24px;
    box-shadow:var(--shadow);
    font-size:17px;
    line-height:1.5;
}

.bubble b {
    color:var(--red);
}

.quick-search {
    position:relative;
    z-index:5;
    max-width:1180px;
    margin:-58px auto 0;
    background:#fff;
    border-radius:20px;
    box-shadow:var(--shadow);
    display:grid;
    grid-template-columns:1fr 1fr 1fr 230px;
    overflow:hidden;
}

.quick-search div {
    display:flex;
    gap:16px;
    align-items:center;
    padding:23px 28px;
    border-right:1px solid var(--line);
}

.quick-search .ico {
    width:34px;
    height:34px;
    color:var(--red);
}

.quick-search b,.quick-search small {
    display:block;
}

.quick-search small {
    color:var(--muted);
    margin-top:5px;
}

.quick-search button {
    margin:14px;
    border:0;
    border-radius:14px;
    background:linear-gradient(135deg,var(--red),var(--red2));
    color:#fff;
    font-weight:900;
    font-size:16px;
}

.section {
    max-width:1500px;
    margin:0 auto;
    padding:52px 56px;
}

.section h2 {
    font-size:30px;
    margin:0 0 24px;
}

.section-head {
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.section-head a {
    color:var(--red);
    font-weight:800;
}

.explore-grid {
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:16px;
}

.explore-card,.article-card {
    background:#fff;
    border-radius:18px;
    padding:22px;
    box-shadow:0 12px 35px rgba(15,57,77,.08);
    display:flex;
    flex-direction:column;
    gap:8px;
}

.explore-card .ico,.article-card .ico {
    width:42px;
    height:42px;
    color:var(--red);
}

.explore-card b {
    font-size:18px;
}

.explore-card span,.article-card p {
    color:var(--muted);
    line-height:1.45;
}

.country-grid {
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:16px;
}

.country-card {
    height:210px;
    border-radius:18px;
    overflow:hidden;
    background-image:linear-gradient(0deg,rgba(0,0,0,.72),rgba(0,0,0,.1)),var(--img);
    background-size:cover;
    background-position:center;
    position:relative;
    padding:18px;
    display:flex;
    align-items:flex-end;
    color:white;
    box-shadow:0 15px 35px rgba(15,57,77,.15);
    transition:.25s;
}

.country-card:hover {
    transform:translateY(-4px);
}

.country-card .flag {
    position:absolute;
    top:14px;
    left:14px;
    font-size:28px;
}

.country-card h3 {
    font-size:24px;
    margin:0;
}

.country-card p {
    margin:5px 0 8px;
    line-height:1.25;
}

.country-card b {
    color:#fff;
    font-size:19px;
}

.split {
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:18px;
}

.info-panel,.club-panel,.content-card,.country-facts {
    background:#fff;
    border-radius:22px;
    padding:26px;
    box-shadow:0 12px 40px rgba(15,57,77,.08);
}

.reasons {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.reasons .ico {
    width:42px;
    height:42px;
    color:var(--red);
}

.reasons p {
    color:var(--muted);
}

.club-list {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.club-list img {
    width:100%;
    height:120px;
    object-fit:cover;
    border-radius:16px;
}

.club-list p {
    color:var(--muted);
}

.cta {
    max-width:1500px;
    margin:0 auto 50px;
    background:linear-gradient(135deg,var(--red),var(--red2));
    border-radius:24px;
    color:#fff;
    display:grid;
    grid-template-columns:90px 1fr 220px;
    gap:22px;
    align-items:center;
    padding:24px 32px;
    box-shadow:0 20px 50px rgba(229,43,47,.22);
}

.cta img {
    width:86px;
    height:86px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid rgba(255,255,255,.45);
}

.cta h2 {
    margin:0 0 6px;
}

.cta p {
    margin:0;
}

.footer {
    display:flex;
    justify-content:space-between;
    gap:30px;
    padding:38px 56px;
    background:#102b3b;
    color:#fff;
}

.footer p {
    color:#cfe1ea;
}

.footer-links {
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.page-hero,.country-hero {
    min-height:330px;
    background-image:linear-gradient(90deg,rgba(9,41,60,.72),rgba(9,41,60,.18)),var(--hero);
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
}

.page-hero div,.country-hero div {
    max-width:1500px;
    margin:0 auto;
    padding:50px 56px;
    color:#fff;
    width:100%;
}

.page-hero h1,.country-hero h1 {
    font-size:56px;
    margin:0 0 12px;
}

.page-hero p,.country-hero p {
    font-size:20px;
    max-width:760px;
    line-height:1.5;
}

.bigflag {
    font-size:56px;
}

.continent-title {
    margin-top:26px;
}

.flag-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
    margin-bottom:30px;
}

.flag-card {
    background:#fff;
    border-radius:18px;
    padding:22px;
    box-shadow:0 12px 35px rgba(15,57,77,.08);
    display:grid;
    gap:10px;
}

.flag-card span {
    font-size:38px;
}

.flag-card b {
    font-size:22px;
}

.flag-card small {
    color:var(--muted);
    line-height:1.4;
}

.country-layout {
    display:grid;
    grid-template-columns:330px 1fr;
    gap:22px;
    align-items:start;
}

.country-facts {
    position:sticky;
    top:96px;
}

.country-facts p,.content-card p {
    color:var(--muted);
    line-height:1.65;
}

.country-content {
    display:grid;
    gap:18px;
}

.danger {
    border-left:5px solid var(--red);
}

.two-cols {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.content-card ul {
    columns:2;
    line-height:1.9;
}

.article-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}

.article-card h3 {
    margin:5px 0 0;
}


@media(max-width:1050px) {

    .topbar {
        height:auto;
        padding:18px;
        flex-wrap:wrap;
    }

    .mainnav {
        order:3;
        width:100%;
        overflow:auto;
        justify-content:flex-start;
    }

    .hero-content {
        grid-template-columns:1fr;
        padding:45px 22px 120px;
    }

    .laura-card {
        display:none;
    }

    .quick-search {
        grid-template-columns:1fr;
        margin:-70px 18px 0;
    }

    .quick-search div {
        border-right:0;
        border-bottom:1px solid var(--line);
    }

    .explore-grid,.country-grid,.flag-grid,.article-grid {
        grid-template-columns:repeat(2,1fr);
    }

    .split,.country-layout,.two-cols {
        grid-template-columns:1fr;
    }

    .section {
        padding:38px 18px;
    }

    .hero h1 {
        font-size:44px;
    }

    .country-card {
        height:190px;
    }

    .cta {
        margin:0 18px 38px;
        grid-template-columns:70px 1fr;
    }

    .cta .btn {
        grid-column:1/-1;
    }

    .footer {
        display:block;
        padding:30px 22px;
    }

    .country-facts {
        position:static;
    }
}


@media(max-width:620px) {

    .explore-grid,.country-grid,.flag-grid,.article-grid,.reasons,.club-list {
        grid-template-columns:1fr;
    }

    .brand {
        min-width:auto;
    }

    .top-actions {
        margin-left:auto;
    }

    .mainnav {
        gap:18px;
    }

    .hero h1 {
        font-size:38px;
    }

    .lead {
        font-size:17px;
    }

    .hero-buttons {
        flex-direction:column;
    }

    .page-hero h1,.country-hero h1 {
        font-size:38px;
    }

    .country-card {
        height:220px;
    }

    .quick-search button {
        height:56px;
    }

    .content-card ul {
        columns:1;
    }
}

/* Turisto v2 clean: no dating-style portrait in hero */

.travel-guide-card {
    position:relative;
    align-self:center;
    background:rgba(255,255,255,.92);
    border:1px solid rgba(255,255,255,.7);
    border-radius:28px;
    padding:26px;
    box-shadow:0 24px 70px rgba(6,35,54,.22);
    backdrop-filter:blur(14px);
}

.guide-title {
    display:flex;
    align-items:center;
    gap:14px;
    font-size:22px;
    font-weight:900;
    line-height:1.25;
    margin-bottom:22px;
}

.guide-title .ico {
    width:42px;
    height:42px;
    color:var(--red);
    flex:0 0 auto;
}

.guide-list {
    display:grid;
    gap:14px;
}

.guide-list div {
    display:grid;
    grid-template-columns:42px 1fr;
    column-gap:13px;
    align-items:center;
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    padding:14px;
}

.guide-list .ico {
    grid-row:1/3;
    width:34px;
    height:34px;
    color:var(--red);
}

.guide-list b {
    font-size:16px;
}

.guide-list small {
    color:var(--muted);
    margin-top:3px;
}

.mini-gallery {
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap:10px;
    margin-top:18px;
}

.mini-gallery span {
    height:92px;
    border-radius:18px;
    background-size:cover;
    background-position:center;
    box-shadow:inset 0 -50px 60px rgba(0,0,0,.18);
}

.hero-shade {
    background:linear-gradient(90deg,rgba(8,37,58,.76),rgba(8,37,58,.42) 48%,rgba(8,37,58,.18));
}

.cta-icon {
    width:86px;
    height:86px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:rgba(255,255,255,.16);
    border:1px solid rgba(255,255,255,.35);
}

.cta-icon .ico {
    width:48px;
    height:48px;
    color:#fff;
}

.cta img {
    display:none;
}


@media(max-width:1050px) {

    .travel-guide-card {
        display:none;
    }
}

/* Turisto countries v3 */

.soft-note,.muted {
    color:var(--muted);
    font-weight:700;
}

.countries-hero {
    min-height:380px;
}

.region-tabs {
    display:flex;
    gap:14px;
    overflow:auto;
    padding-bottom:6px;
}

.region-tab {
    min-width:180px;
    border:1px solid var(--line);
    background:#fff;
    border-radius:18px;
    padding:16px 18px;
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:900;
    color:var(--ink);
    box-shadow:0 12px 35px rgba(15,57,77,.07);
    cursor:pointer;
    transition:.22s;
}

.region-tab .ico {
    width:32px;
    height:32px;
    color:var(--red);
}

.region-tab.active {
    background:linear-gradient(135deg,var(--red),var(--red2));
    color:#fff;
    transform:translateY(-2px);
}

.region-tab.active .ico {
    color:#fff;
}

.region-section {
    display:none;
    padding-top:0;
}

.region-section.active {
    display:block;
}

.country-list-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.country-info-card {
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 16px 45px rgba(15,57,77,.10);
    display:grid;
    grid-template-columns:190px 1fr;
    min-height:210px;
    transition:.22s;
}

.country-info-card:hover {
    transform:translateY(-4px);
    box-shadow:0 22px 60px rgba(15,57,77,.16);
}

.country-info-image {
    position:relative;
    background-size:cover;
    background-position:center;
    min-height:210px;
}

.country-info-image:after {
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(0deg,rgba(0,0,0,.25),rgba(0,0,0,.05));
}

.country-info-image span {
    position:absolute;
    z-index:2;
    left:14px;
    top:14px;
    background:#fff;
    border-radius:12px;
    padding:6px 8px;
    font-size:26px;
    box-shadow:0 8px 20px rgba(0,0,0,.18);
}

.country-info-body {
    padding:20px;
}

.country-info-body h3 {
    font-size:25px;
    margin:0 0 8px;
}

.country-info-body p {
    margin:0 0 14px;
    color:var(--muted);
    line-height:1.45;
}

.country-mini-facts {
    display:grid;
    gap:8px;
}

.country-mini-facts span {
    display:grid;
    grid-template-columns:24px 1fr;
    gap:8px;
    align-items:start;
    font-size:13px;
    line-height:1.3;
    color:#415767;
}

.country-mini-facts .ico {
    width:22px;
    height:22px;
    color:var(--red);
}

.country-detail-hero {
    position:relative;
    min-height:610px;
    overflow:hidden;
    color:#fff;
}

.country-slider {
    position:absolute;
    inset:0;
}

.country-slide {
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity .65s ease;
}

.country-slide.active {
    opacity:1;
}

.country-hero-inner {
    position:relative;
    z-index:2;
    max-width:1500px;
    margin:0 auto;
    min-height:610px;
    padding:58px 56px 82px;
    display:grid;
    grid-template-columns:1fr 420px;
    gap:40px;
    align-items:center;
}

.crumbs {
    display:flex;
    gap:9px;
    align-items:center;
    font-weight:800;
    color:rgba(255,255,255,.86);
    margin-bottom:18px;
}

.crumbs a {
    text-decoration:underline;
    text-underline-offset:4px;
}

.country-flag-badge {
    display:inline-grid;
    place-items:center;
    background:rgba(255,255,255,.94);
    width:82px;
    height:82px;
    border-radius:24px;
    box-shadow:0 16px 40px rgba(0,0,0,.18);
    margin-bottom:16px;
}

.country-detail-hero h1 {
    font-size:70px;
    line-height:1;
    margin:0 0 18px;
}

.country-detail-hero p {
    font-size:21px;
    line-height:1.55;
    max-width:720px;
}

.hero-actions {
    display:flex;
    gap:14px;
    margin-top:28px;
}

.country-quick-panel {
    background:rgba(255,255,255,.94);
    color:var(--ink);
    border-radius:28px;
    padding:26px;
    box-shadow:0 24px 70px rgba(6,35,54,.25);
    backdrop-filter:blur(14px);
}

.country-quick-panel h3 {
    font-size:24px;
    margin:0 0 18px;
}

.quick-fact {
    display:grid;
    grid-template-columns:42px 1fr;
    gap:12px;
    padding:15px;
    border-radius:18px;
    background:#fff;
    border:1px solid var(--line);
    margin-bottom:12px;
}

.quick-fact .ico {
    width:34px;
    height:34px;
    color:var(--red);
    grid-row:1/3;
}

.quick-fact b {
    font-size:16px;
}

.quick-fact span {
    font-size:14px;
    color:var(--muted);
    line-height:1.35;
}

.slider-dots {
    position:absolute;
    z-index:3;
    left:50%;
    bottom:28px;
    transform:translateX(-50%);
    display:flex;
    gap:9px;
}

.slider-dots button {
    width:42px;
    height:5px;
    border:0;
    border-radius:99px;
    background:rgba(255,255,255,.45);
    cursor:pointer;
}

.slider-dots button.active {
    background:#fff;
}

.guide-grid {
    display:grid;
    grid-template-columns:270px 1fr;
    gap:24px;
}

.country-side-nav {
    position:sticky;
    top:96px;
    background:#fff;
    border-radius:24px;
    padding:22px;
    box-shadow:0 14px 40px rgba(15,57,77,.08);
}

.country-side-nav h3 {
    margin:0 0 14px;
    font-size:22px;
}

.country-side-nav a {
    display:grid;
    grid-template-columns:28px 1fr;
    gap:10px;
    align-items:center;
    padding:12px;
    border-radius:14px;
    font-weight:800;
    color:#314b5d;
}

.country-side-nav a:hover {
    background:#fff2f2;
    color:var(--red);
}

.country-side-nav .ico {
    width:24px;
    height:24px;
    color:var(--red);
}

.guide-content {
    display:grid;
    gap:20px;
}

.guide-card {
    background:#fff;
    border-radius:24px;
    padding:26px;
    box-shadow:0 14px 40px rgba(15,57,77,.08);
}

.guide-card h2 {
    font-size:28px;
    margin:0 0 14px;
}

.guide-card p {
    color:var(--muted);
    font-size:16px;
    line-height:1.65;
}

.guide-card-title {
    display:grid;
    grid-template-columns:54px 1fr;
    gap:16px;
    align-items:start;
}

.guide-card-title .ico {
    width:48px;
    height:48px;
    color:var(--red);
}

.season-bar {
    display:grid;
    grid-template-columns:repeat(12,1fr);
    gap:8px;
    margin-top:22px;
}

.season-bar span {
    padding:12px 4px;
    border-radius:12px;
    background:#f2f7fa;
    text-align:center;
    font-weight:900;
    color:#557082;
}

.season-bar .hot {
    background:#ffe9e9;
    color:var(--red);
}

.fact-tiles {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.fact-tile {
    background:#fff;
    border-radius:22px;
    padding:22px;
    box-shadow:0 14px 40px rgba(15,57,77,.08);
}

.fact-tile .ico {
    width:42px;
    height:42px;
    color:var(--red);
    margin-bottom:12px;
}

.fact-tile b {
    display:block;
    font-size:19px;
    margin-bottom:8px;
}

.fact-tile p {
    color:var(--muted);
    line-height:1.5;
    margin:0;
}

.pill-grid {
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.pill-grid span {
    background:#f2f7fa;
    border:1px solid var(--line);
    border-radius:999px;
    padding:12px 16px;
    font-weight:900;
    color:#344e60;
}

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

.sight-grid div {
    display:grid;
    grid-template-columns:38px 1fr;
    gap:10px;
    background:#f8fbfd;
    border:1px solid var(--line);
    border-radius:18px;
    padding:16px;
}

.sight-grid .ico {
    width:32px;
    height:32px;
    color:var(--red);
    grid-row:1/3;
}

.sight-grid small {
    color:var(--muted);
    line-height:1.4;
}

.red-soft {
    background:linear-gradient(135deg,#fff,#fff4f4);
    border:1px solid #ffd9d9;
}

.compact {
    margin-bottom:12px;
}

.wide-card {
    overflow:hidden;
}


@media(max-width:1200px) {

    .country-list-grid {
        grid-template-columns:repeat(2,1fr);
    }

    .country-hero-inner {
        grid-template-columns:1fr;
    }

    .country-quick-panel {
        max-width:700px;
    }

    .guide-grid {
        grid-template-columns:1fr;
    }

    .country-side-nav {
        position:static;
        display:grid;
        grid-template-columns:repeat(2,1fr);
    }
}


@media(max-width:760px) {

    .country-list-grid {
        grid-template-columns:1fr;
    }

    .country-info-card {
        grid-template-columns:1fr;
    }

    .country-info-image {
        min-height:190px;
    }

    .country-hero-inner {
        padding:42px 20px 84px;
    }

    .country-detail-hero h1 {
        font-size:46px;
    }

    .country-detail-hero p {
        font-size:17px;
    }

    .hero-actions {
        flex-direction:column;
    }

    .country-side-nav {
        grid-template-columns:1fr;
    }

    .fact-tiles,.sight-grid {
        grid-template-columns:1fr;
    }

    .season-bar {
        grid-template-columns:repeat(4,1fr);
    }
}

/* =========================================================
   TURISTO CLUB HOMEPAGE
   Новые блоки главной: настроение, карта клуба, клубная карта
   ========================================================= */

.eyebrow-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
}

.club-hero .hero-shade {
    background:
        radial-gradient(circle at 78% 25%, rgba(229,43,47,.26), transparent 28%),
        radial-gradient(circle at 35% 80%, rgba(0,176,196,.26), transparent 32%),
        linear-gradient(90deg, rgba(8,37,58,.82), rgba(8,37,58,.48) 52%, rgba(8,37,58,.22));
}

.club-intro-card {
    overflow: hidden;
}

.club-intro-card:before {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(229,43,47,.10);
}

.club-section-head {
    align-items: flex-end;
}

.club-section-head h2 {
    margin-bottom: 10px;
}

.mood-section {
    padding-top: 76px;
}

.mood-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 26px;
}

.mood-card {
    position: relative;
    min-height: 190px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.96), rgba(255,255,255,.82)),
        radial-gradient(circle at 80% 20%, rgba(229,43,47,.16), transparent 28%);
    border: 1px solid rgba(229,43,47,.10);
    border-radius: 26px;
    padding: 24px;
    box-shadow: 0 18px 45px rgba(15,57,77,.08);
    overflow: hidden;
    transition: .25s ease;
}

.mood-card:after {
    content: "";
    position: absolute;
    right: -32px;
    bottom: -32px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(229,43,47,.07);
}

.mood-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 65px rgba(15,57,77,.15);
    border-color: rgba(229,43,47,.22);
}

.mood-card .ico {
    width: 46px;
    height: 46px;
    color: var(--red);
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.mood-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.15;
}

.mood-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
    font-weight: 700;
}

.world-map-section {
    padding-top: 32px;
}

.world-map-wrap {
    display: grid;
    grid-template-columns: 390px 1fr;
    gap: 26px;
    align-items: stretch;
    background:
        linear-gradient(135deg, rgba(7,44,60,.98), rgba(7,86,101,.94)),
        radial-gradient(circle at 75% 30%, rgba(229,43,47,.30), transparent 30%);
    color: #fff;
    border-radius: 34px;
    padding: 34px;
    box-shadow: 0 28px 80px rgba(6,35,54,.22);
    overflow: hidden;
}

.world-map-text {
    align-self: center;
}

.world-map-text h2 {
    color: #fff;
    font-size: 38px;
    line-height: 1.05;
    margin: 0 0 16px;
}

.world-map-text p {
    color: rgba(255,255,255,.78);
    line-height: 1.65;
    font-size: 17px;
    margin: 0;
}

.map-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 26px;
}

.map-stats div {
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 18px;
    padding: 16px;
    backdrop-filter: blur(10px);
}

.map-stats b {
    display: block;
    font-size: 28px;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.map-stats span {
    color: rgba(255,255,255,.72);
    font-size: 13px;
    font-weight: 800;
}

.turisto-map {
    position: relative;
    min-height: 430px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 30% 40%, rgba(255,255,255,.12), transparent 28%),
        linear-gradient(135deg, #073040, #0b6c7c);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.18);
}

.map-ocean {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,.08), transparent 14%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,.08), transparent 18%),
        linear-gradient(135deg, rgba(18,179,201,.18), rgba(4,44,61,.40));
}

.continent {
    position: absolute;
    background: linear-gradient(135deg, #f2d7a2, #91a966 55%, #3f7659);
    opacity: .88;
    box-shadow: inset 0 -18px 45px rgba(0,0,0,.18), 0 0 35px rgba(255,215,140,.14);
}

.continent.c1 {
    left: 7%;
    top: 25%;
    width: 27%;
    height: 34%;
    border-radius: 55% 45% 50% 45%;
    transform: rotate(-13deg);
}

.continent.c2 {
    left: 42%;
    top: 18%;
    width: 38%;
    height: 34%;
    border-radius: 45% 55% 48% 52%;
    transform: rotate(6deg);
}

.continent.c3 {
    left: 48%;
    top: 50%;
    width: 18%;
    height: 30%;
    border-radius: 50% 45% 55% 40%;
    transform: rotate(9deg);
}

.continent.c4 {
    left: 24%;
    top: 56%;
    width: 16%;
    height: 32%;
    border-radius: 42% 55% 45% 58%;
    transform: rotate(12deg);
}

.continent.c5 {
    left: 76%;
    top: 62%;
    width: 14%;
    height: 18%;
    border-radius: 48% 52% 44% 56%;
    transform: rotate(9deg);
}

.map-pin {
    position: absolute;
    z-index: 5;
    width: 18px;
    height: 18px;
    transform: translate(-50%, -50%);
    border-radius: 50% 50% 50% 4px;
    background: var(--red);
    rotate: -45deg;
    box-shadow: 0 0 0 5px rgba(229,43,47,.16), 0 0 24px rgba(229,43,47,.55);
    cursor: pointer;
}

.map-pin:before {
    content: "T";
    position: absolute;
    inset: 3px;
    display: grid;
    place-items: center;
    rotate: 45deg;
    color: #fff;
    font-size: 9px;
    line-height: 1;
    font-weight: 900;
}

.map-pin:after {
    content: attr(data-title);
    position: absolute;
    left: 16px;
    bottom: 22px;
    rotate: 45deg;
    white-space: nowrap;
    background: #fff;
    color: var(--ink);
    border-radius: 12px;
    padding: 9px 12px;
    font-weight: 900;
    font-size: 13px;
    box-shadow: 0 16px 40px rgba(0,0,0,.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: .18s ease;
}

.map-pin:hover {
    z-index: 20;
}

.map-pin:hover:after {
    opacity: 1;
    transform: translateY(0);
}

.club-card-section {
    display: grid;
    grid-template-columns: 430px 1fr;
    gap: 26px;
    align-items: center;
}

.club-card-visual {
    min-height: 360px;
    display: grid;
    place-items: center;
    border-radius: 34px;
    background:
        radial-gradient(circle at 30% 20%, rgba(229,43,47,.22), transparent 30%),
        linear-gradient(135deg, #092d3d, #0a6370);
    box-shadow: 0 24px 70px rgba(6,35,54,.18);
    overflow: hidden;
}

.member-card {
    width: 340px;
    min-height: 210px;
    border-radius: 24px;
    padding: 26px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(229,43,47,.95), rgba(201,31,37,.92)),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,.22), transparent 30%);
    box-shadow: 0 24px 70px rgba(0,0,0,.24);
    transform: rotate(-4deg);
}

.member-card-top,
.member-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 900;
    letter-spacing: .04em;
}

.member-card-top span {
    font-size: 28px;
}

.member-card-top b,
.member-card-bottom span {
    font-size: 12px;
    opacity: .82;
}

.member-card-title {
    font-size: 26px;
    line-height: 1.1;
    font-weight: 900;
    margin: 42px 0 22px;
}

.member-card-line {
    height: 1px;
    background: rgba(255,255,255,.44);
    margin-bottom: 18px;
}

.club-card-content {
    background: #fff;
    border-radius: 34px;
    padding: 34px;
    box-shadow: 0 18px 55px rgba(15,57,77,.09);
}

.club-card-content h2 {
    margin-bottom: 12px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.benefit-card {
    background: #f8fbfd;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
}

.benefit-card .ico {
    width: 34px;
    height: 34px;
    color: var(--red);
    margin-bottom: 12px;
}

.benefit-card b {
    display: block;
    font-size: 17px;
    margin-bottom: 8px;
}

.benefit-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
    font-size: 14px;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.story-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 45px rgba(15,57,77,.09);
    transition: .22s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 65px rgba(15,57,77,.15);
}

.story-image {
    position: relative;
    height: 210px;
    background-size: cover;
    background-position: center;
}

.story-image:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.42), transparent);
}

.story-image span {
    position: absolute;
    z-index: 2;
    left: 18px;
    top: 18px;
    background: #fff;
    border-radius: 12px;
    padding: 7px 9px;
    font-size: 26px;
}

.story-card div:last-child {
    padding: 22px;
}

.story-card h3 {
    font-size: 22px;
    margin: 0 0 8px;
}

.story-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .mood-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .world-map-wrap,
    .club-card-section {
        grid-template-columns: 1fr;
    }

    .turisto-map {
        min-height: 360px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .mood-grid,
    .benefits-grid,
    .story-grid {
        grid-template-columns: 1fr;
    }

    .world-map-wrap {
        padding: 22px;
        border-radius: 26px;
    }

    .world-map-text h2 {
        font-size: 30px;
    }

    .map-stats {
        grid-template-columns: 1fr;
    }

    .turisto-map {
        min-height: 320px;
    }

    .club-card-section {
        padding-top: 28px;
    }

    .club-card-content {
        padding: 24px;
    }

    .member-card {
        width: 290px;
    }
}



/* =========================================================
   TURISTO REAL MAP HOTSPOTS
   Интерактивные точки поверх готовой карты
   ========================================================= */

.turisto-map-image-box {
    position: relative;
}

.map-hotspots {
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
}

.real-map-pin {
    position: absolute;
    z-index: 7;
    width: 24px;
    height: 24px;
    border: 0;
    padding: 0;
    background: transparent;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    cursor: pointer;
}

.real-map-pin .pin-dot {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50% 50% 50% 5px;
    transform: rotate(-45deg);
    background: linear-gradient(135deg, var(--red), var(--red2));
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    box-shadow:
        0 0 0 5px rgba(229,43,47,.22),
        0 0 24px rgba(229,43,47,.65);
}

.real-map-pin .pin-dot:before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(229,43,47,.36);
    animation: turistoPulse 2.2s infinite;
}

.real-map-pin .pin-tooltip {
    position: absolute;
    left: 18px;
    bottom: 30px;
    min-width: 220px;
    max-width: 260px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,.96);
    color: var(--ink);
    box-shadow: 0 18px 45px rgba(0,0,0,.24);
    border: 1px solid rgba(255,255,255,.7);
    text-align: left;
    opacity: 0;
    transform: translateY(10px) scale(.96);
    pointer-events: none;
    transition: .18s ease;
}

.real-map-pin .pin-tooltip b {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.real-map-pin .pin-tooltip small {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
}

.real-map-pin:hover {
    z-index: 30;
}

.real-map-pin:hover .pin-tooltip,
.real-map-pin:focus .pin-tooltip {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes turistoPulse {
    0% {
        opacity: .65;
        transform: scale(.55);
    }

    70% {
        opacity: 0;
        transform: scale(1.6);
    }

    100% {
        opacity: 0;
        transform: scale(1.6);
    }
}

@media (max-width: 760px) {
    .real-map-pin {
        width: 20px;
        height: 20px;
    }

    .real-map-pin .pin-dot {
        width: 18px;
        height: 18px;
        font-size: 8px;
        box-shadow: 0 0 0 4px rgba(229,43,47,.18);
    }

    .real-map-pin .pin-tooltip {
        min-width: 180px;
        max-width: 210px;
        left: -80px;
        bottom: 26px;
    }
}


/* =========================================================
   TURISTO WIDE MAP REWORK — 10.06
   Шире сайт, крупнее меню, логотип в стиле карты, карта во всю ширину
   ========================================================= */

/* Шапка и логотип */
.topbar {
    height: 88px;
    padding: 0 54px;
}

.brand {
    min-width: 290px;
    gap: 12px;
}

.brand b {
    position: relative;
    display: inline-block;
    color: var(--red);
    font-size: 0 !important;
    line-height: .92;
    letter-spacing: .01em;
}

.brand b::before {
    content: "TURISTO";
    font-size: 34px;
    font-weight: 950;
}

.brand b::after {
    content: "";
    position: absolute;
    right: -34px;
    top: -16px;
    width: 42px;
    height: 42px;
    background: var(--red);
    -webkit-mask: radial-gradient(circle at 50% 80%, #000 0 12%, transparent 13%),
                  radial-gradient(ellipse at 22% 35%, #000 0 34%, transparent 35%),
                  radial-gradient(ellipse at 55% 24%, #000 0 34%, transparent 35%),
                  radial-gradient(ellipse at 80% 45%, #000 0 30%, transparent 31%);
            mask: radial-gradient(circle at 50% 80%, #000 0 12%, transparent 13%),
                  radial-gradient(ellipse at 22% 35%, #000 0 34%, transparent 35%),
                  radial-gradient(ellipse at 55% 24%, #000 0 34%, transparent 35%),
                  radial-gradient(ellipse at 80% 45%, #000 0 30%, transparent 31%);
    transform: rotate(8deg);
}

.brand small {
    margin-top: 3px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
}

.mainnav {
    gap: 34px;
}

.mainnav a {
    font-size: 17px;
    font-weight: 900;
}

.langs a {
    font-size: 15px;
}

/* Общая ширина сайта */
.hero-content,
.section,
.page-hero div,
.country-hero div,
.cta {
    max-width: 1800px;
}

.section {
    padding-left: 72px;
    padding-right: 72px;
}

/* Карта теперь не в две колонки, а широким блоком */
.world-map-section {
    max-width: 1900px;
    padding-top: 46px;
}

.world-map-wrap.world-map-wide {
    display: block;
    padding: 34px;
    border-radius: 34px;
    overflow: visible;
}

.world-map-top {
    display: grid;
    grid-template-columns: minmax(520px, 1fr) auto;
    gap: 30px;
    align-items: end;
    margin-bottom: 26px;
}

.world-map-text {
    max-width: 850px;
}

.world-map-text h2 {
    font-size: 44px;
    margin-bottom: 14px;
}

.world-map-text p {
    font-size: 18px;
    max-width: 760px;
}

.map-stats.map-stats-wide {
    margin-top: 0;
    min-width: 430px;
}

.map-stats.map-stats-wide div {
    min-height: 82px;
}

.turisto-map-toolbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
    margin: -4px 0 16px;
}

.map-search {
    min-width: 360px;
    height: 54px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    border-radius: 16px;
    background: rgba(0,0,0,.34);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    box-shadow: 0 14px 35px rgba(0,0,0,.16);
}

.map-search .ico {
    width: 26px;
    height: 26px;
    color: #fff;
    opacity: .92;
}

.map-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font: inherit;
    font-weight: 800;
}

.map-search input::placeholder {
    color: rgba(255,255,255,.72);
}

.map-hint {
    height: 54px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    border-radius: 16px;
    color: rgba(255,255,255,.82);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    font-weight: 900;
}

.turisto-map-image-box {
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: #062b38;
    box-shadow: 0 28px 80px rgba(0,0,0,.26);
}

.turisto-map-image-box > img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 610px;
    object-fit: cover;
    object-position: center;
}

.real-map-pin {
    width: 28px;
    height: 28px;
}

.real-map-pin .pin-dot {
    width: 26px;
    height: 26px;
    font-size: 11px;
}

.real-map-pin .pin-tooltip {
    min-width: 250px;
    max-width: 300px;
    left: 24px;
    bottom: 34px;
    padding: 16px 18px;
    border-radius: 18px;
}

.real-map-pin .pin-tooltip b {
    font-size: 17px;
}

.real-map-pin .pin-tooltip em {
    display: inline-flex;
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--red), var(--red2));
    color: #fff;
    font-style: normal;
    font-size: 12px;
    font-weight: 900;
}

.real-map-pin.is-dimmed {
    opacity: .22;
    filter: grayscale(1);
}

.real-map-pin.is-found {
    z-index: 40;
}

.real-map-pin.is-found .pin-dot {
    box-shadow: 0 0 0 7px rgba(229,43,47,.32), 0 0 34px rgba(229,43,47,.9);
    transform: rotate(-45deg) scale(1.18);
}

.map-caption {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 24px;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 16px 22px;
    border-radius: 18px;
    background: rgba(4,31,42,.72);
    color: #fff;
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(12px);
}

.map-caption span {
    color: rgba(255,255,255,.82);
    font-weight: 800;
}

@media (min-width: 1700px) {
    .section {
        max-width: 1860px;
    }

    .world-map-section {
        max-width: 1920px;
    }
}

@media (max-width: 1200px) {
    .topbar {
        height: auto;
        padding: 18px 24px;
    }

    .world-map-top {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .map-stats.map-stats-wide {
        min-width: 0;
        max-width: 620px;
    }

    .turisto-map-toolbar {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .turisto-map-image-box > img {
        min-height: 480px;
    }
}

@media (max-width: 760px) {
    .section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .brand b::before {
        font-size: 28px;
    }

    .brand b::after {
        right: -28px;
        top: -13px;
        width: 34px;
        height: 34px;
    }

    .mainnav a {
        font-size: 15px;
    }

    .world-map-wrap.world-map-wide {
        padding: 20px;
        border-radius: 26px;
    }

    .world-map-text h2 {
        font-size: 31px;
    }

    .world-map-text p {
        font-size: 16px;
    }

    .map-stats.map-stats-wide {
        grid-template-columns: 1fr;
    }

    .map-search {
        min-width: 100%;
    }

    .map-hint {
        width: 100%;
    }

    .turisto-map-image-box {
        overflow-x: auto;
        border-radius: 22px;
    }

    .turisto-map-image-box > img {
        width: 1100px;
        max-width: none;
        min-height: 0;
    }

    .map-hotspots {
        width: 1100px;
        right: auto;
    }

    .map-caption {
        position: sticky;
        left: 14px;
        right: 14px;
        bottom: 14px;
        display: block;
        margin: -74px 14px 14px;
    }
}



/* =========================================================
   TURISTO FINAL FIX — correct logo, clean map, all pins hover
   ========================================================= */

/* Логотип без emoji/масок: красный текст + SVG-пальма как на карте */
.brand{
    min-width:260px !important;
    gap:12px !important;
}
.brand-mark{
    display:none !important;
}
.brand b{
    position:relative !important;
    display:inline-block !important;
    font-size:34px !important;
    line-height:.9 !important;
    font-weight:950 !important;
    letter-spacing:.01em !important;
    color:var(--red) !important;
    padding-right:46px !important;
}
.brand b::before{
    content:none !important;
}
.brand b::after{
    content:"" !important;
    position:absolute !important;
    right:0 !important;
    top:-13px !important;
    width:44px !important;
    height:44px !important;
    background:transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 90'%3E%3Cg fill='%23e52b2f'%3E%3Cpath d='M42 82c8-18 10-34 5-50l9-2c6 18 3 36-5 54z'/%3E%3Cpath d='M47 29C34 16 18 14 4 22c16 0 26 6 36 16z'/%3E%3Cpath d='M51 27C45 10 31 2 15 4c14 7 21 16 27 31z'/%3E%3Cpath d='M55 28C64 12 78 7 90 11c-13 7-20 15-28 29z'/%3E%3Cpath d='M58 33c15-4 26 0 32 11-13-3-23 0-34 6z'/%3E%3Ccircle cx='48' cy='35' r='7'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat !important;
    -webkit-mask:none !important;
    mask:none !important;
    transform:none !important;
}
.brand small{
    font-size:13px !important;
    font-weight:900 !important;
    color:#1f3544 !important;
    letter-spacing:.01em !important;
}
.topbar{
    height:84px !important;
}
.mainnav a{
    font-size:18px !important;
    font-weight:900 !important;
}

/* Карта: используем чистую картинку без встроенной карточки с ошибкой */
.turisto-map-image-box{
    position:relative !important;
    overflow:hidden !important;
}
.turisto-map-image-box > img{
    width:100% !important;
    height:auto !important;
    display:block !important;
}
.map-hotspots{
    position:absolute !important;
    inset:0 !important;
    z-index:20 !important;
    pointer-events:none !important;
}
.real-map-pin{
    pointer-events:auto !important;
    z-index:25 !important;
}

/* Всплывашка появляется на каждом флажке при наведении, на телефоне также по нажатию */
.real-map-pin .pin-tooltip{
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
    transform:translateY(10px) !important;
    transition:.18s ease !important;
}
.real-map-pin:hover,
.real-map-pin.is-open{
    z-index:90 !important;
}
.real-map-pin:hover .pin-tooltip,
.real-map-pin:focus-visible .pin-tooltip,
.real-map-pin.is-open .pin-tooltip{
    opacity:1 !important;
    visibility:visible !important;
    transform:translateY(0) !important;
}
.real-map-pin .pin-tooltip strong{
    display:block;
    margin-top:8px;
    color:var(--red);
    font-size:13px;
    font-weight:950;
}

@media(max-width:760px){
    .brand{min-width:190px !important;}
    .brand b{font-size:28px !important;padding-right:38px !important;}
    .brand b::after{width:36px !important;height:36px !important;top:-10px !important;}
    .mainnav a{font-size:15px !important;}
}
