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

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

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, main {
    display: block;
}

template {
    display: none;
}

html {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    tap-highlight-color: rgba(0,0,0,0);
    scroll-behavior: smooth;
}

body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    text-size-adjust: none;
    min-width: 320px;
    min-height: 100vh;
    /* Sweet Bonanza Background */
    background: linear-gradient(45deg, #FFD700, #FF69B4, #87CEEB, #98FB98, #FFA500, #DDA0DD);
    background-size: 400% 400%;
    animation: sweetGradient 15s ease-in-out infinite;
    font-family: "Comic Sans MS", "Bahnschrift", cursive, sans-serif;
    font-size: 20px;
    line-height: 1.78;
    color: #2C1810;
    position: relative;
}

@keyframes sweetGradient {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}


@keyframes floatRight {
    0% { transform: translateX(0) rotate(0deg); }
    100% { transform: translateX(-120vw) rotate(360deg); }
}

@keyframes floatLeft {
    0% { transform: translateX(0) rotate(0deg); }
    100% { transform: translateX(120vw) rotate(-360deg); }
}

.cta-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(45deg, #FF1744, #E91E63, #9C27B0, #673AB7);
    background-size: 400% 400%;
    animation: sweetGradient 3s ease-in-out infinite;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255, 23, 68, 0.4);
}

.cta-main-btn {
    display: inline-block;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF6347);
    color: #2C1810;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    animation: pulse 2s infinite, bounce 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 3s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

img, iframe, video, audio, object {
    max-width: 100%;
}

img, iframe {
    border: 0 none;
}

img {
    height: auto;
    display: inline-block;
    vertical-align: middle;
    border-radius: 8px;
}

b, strong {
    font-weight: bold;
    color: #FF6B35; 
}

address {
    font-style: normal;
}

svg:not(:root) {
    overflow: hidden;
}

a, button, input[type=submit], input[type=button], input[type=reset], input[type=file], input[type=image], label[for] {
    cursor: pointer;
}

a[href^=tel], button[disabled], input[disabled], textarea[disabled], select[disabled] {
    cursor: default;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
    transform: translateY(-2px); 
}

h1, h2 {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.075em;
    color: #FF6B35;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
}

@media(max-width: 767px) {
    .hidden-mobile {
        display: none !important;
    }
}

.hidden-tablet {
    display: none !important;
}

@media(max-width: 767px) {
    .hidden-tablet {
        display: block !important;
    }
}

@media(max-width: 1023px) {
    .hidden-tablet-max {
        display: none !important;
    }
}

.hidden-desktop {
    display: none !important;
}

@media(max-width: 1023px) {
    .hidden-desktop {
        display: block !important;
    }
}

.wrapper {
    overflow: hidden;
}

.shell {
    max-width: 940px;
    padding-right: 20px;
    padding-left: 20px;
    margin: auto;
}

.shell--fluid {
    max-width: none;
}

.header {
    position: fixed;
    top: 40px; 
    left: 0;
    bottom: 0;
    z-index: 50;
    width: 100%;
    max-width: 360px;
    pointer-events: none;
}

.header .header__inner {
    display: flex;
    width: 100%;
    height: calc(100% + 40px);
    margin-top: -20px;
    padding: 82px 0 82px 60px;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(135deg, #FFB6C1, #DDA0DD, #98FB98);
    background-size: 8px 8px;
    text-align: center;
    color: #2C1810;
    transform-origin: 100% 0;
    transform: translate3d(0, 0, 0) translateX(-100%);
    visibility: hidden;
    overflow: hidden;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transition: transform 0.5s 0s cubic-bezier(0.69, 0.02, 0.42, 1.62), visibility 0.5s;
    pointer-events: auto;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 0 30px rgba(255, 182, 193, 0.5);
}

.header .header__top {
    position: absolute;
    top: 0;
    left: 0;
    width: 170px;
    padding-right: 60px;
    z-index: 10;
    text-align: center;
    transform: translate3d(0, 0, 0) translateY(40px);
    transition: transform 0.5s 0s cubic-bezier(0.69, 0.02, 0.42, 1.62), width 0.5s 0s cubic-bezier(0.69, 0.02, 0.42, 1.62);
}

@media(max-width: 1023px) {
    .header .header__top {
        transform: translate3d(0, 0, 0) translate(-18px, 21px);
    }
}

.header .header__middle {
    position: absolute;
    top: 50%;
    left: 60px;
    right: 0;
    opacity: 0;
    transform: translate3d(0, 0, 0) translate(50%, -50%);
    transition: transform 0.5s 0s cubic-bezier(0.69, 0.02, 0.42, 1.62), opacity 0.5s;
}

.header .header__bottom {
    opacity: 0;
    transform: translate3d(0, 0, 0) translateX(50%);
    transition: transform 0.5s 0s cubic-bezier(0.69, 0.02, 0.42, 1.62), opacity 0.5s;
}

.header.active .header__top {
    transform: translate3d(0, 0, 0) translateY(82px);
    width: 100%;
}

.header.active .header__inner {
    transform: translate3d(0, 0, 0) translateX(-60px);
    visibility: visible;
}

.header.active .header__middle {
    transform: translate3d(0, 0, 0) translate(0, -50%);
    opacity: 1;
}

.header.active .header__bottom {
    transform: translate3d(0, 0, 0) translateX(0);
    opacity: 1;
}

/* Main Content */
.main {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px 20px 0 0; 
    margin-top: 20px;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.footer {
    position: relative;
    padding: 50px 0 0;
    background: linear-gradient(135deg, #8B4513, #A0522D, #D2691E);
    color: #fff;
    font-family: "Comic Sans MS", "Bahnschrift", sans-serif;
    font-size: 16px;
    border-radius: 20px 20px 0 0;
    margin-top: 40px;
}

.footer__columns {
    display: flex;
    justify-content: space-between;
}

@media(max-width: 767px) {
    .footer__columns {
        display: block;
    }
}

.footer__col {
    width: 33.33%;
    text-align: center;
}

@media(max-width: 767px) {
    .footer__col {
        width: 100%;
    }
}

@media(max-width: 767px) {
    .footer__col + .footer__col {
        margin-top: 30px;
    }
}

.footer__col:first-child {
    text-align: left;
}

@media(max-width: 767px) {
    .footer__col:first-child {
        text-align: center;
    }
}

.footer__col:last-child {
    text-align: right;
}

@media(max-width: 767px) {
    .footer__col:last-child {
        text-align: center;
    }
}

.footer__title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFD700; 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.footer__nav {
    font-weight: 300;
}

.footer__nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.footer__nav ul + ul {
    margin-top: 30px;
}

.footer__nav li + li {
    margin-top: 15px;
}

.footer__nav a {
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s;
    color: #F0E68C;
}

.footer__nav a:hover {
    letter-spacing: 0.3em;
    color: #FFD700;
    text-shadow: 0 0 10px #FFD700;
}

.footer__nav a.active {
    text-decoration: underline;
    color: #FFD700;
}

.footer__bar {
    margin-top: 50px;
    height: 43px;
    line-height: 43px;
    background: linear-gradient(45deg, #654321, #8B4513);
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 20px 20px 0 0;
}

@media(max-width: 767px) {
    .footer__bar {
        margin-top: 20px;
    }
}

.btn {
    text-align: center;
    min-height: 45px;
    border: 0;
    max-width: 240px;
    padding: 20px 32px;
    border-radius: 45px;
    font-size: 18px;
    background: linear-gradient(45deg, #FF6B35, #F7931E, #FFD23F);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    color: #fff;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

.btn:hover {
    background: linear-gradient(45deg, #FF8C00, #FFA500, #FFD700);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.btn--right {
    margin-left: auto;
}

.btn--hidden-desktop {
    display: none;
    margin-top: 20px;
}

@media(max-width: 767px) {
    .btn--hidden-desktop {
        display: inline-block;
    }
}

@media(max-width: 767px) {
    .btn--hidden-mobile {
        display: none;
    }
}

.btn img {
    display: inline-block;
    margin-right: 10px;
}

@media(max-width: 1023px) {
    .btn img {
        margin-right: 5px;
    }
}

.btn span {
    display: inline-block;
    padding-top: 2px;
}

.btn--small {
    font-size: 16px;
    padding: 16px 24px;
}

@media(max-width: 1023px) {
    .btn--small {
        padding: 20px;
    }
}

.btn--small img {
    margin-right: 6px;
}

@media(max-width: 1023px) {
    .btn--small img {
        margin-right: 0;
    }
}

@media(max-width: 1023px) {
    .btn--small span {
        display: none;
    }
}

.btn-small {
    text-align: center;
    min-height: 45px;
    border: 0;
    padding: 20px 32px;
    border-radius: 40px;
    font-size: 18px;
    letter-spacing: 0.05em;
    background: linear-gradient(45deg, #32CD32, #98FB98, #90EE90);
    box-shadow: 0 5px 15px rgba(50, 205, 50, 0.3);
    color: #2C1810;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.btn-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

@media(max-width: 767px) {
    .btn-small {
        padding: 16px 28px;
        font-size: 16px;
    }
}

.btn-small:hover {
    background: linear-gradient(45deg, #228B22, #32CD32, #7CFC00);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.4);
}

.btn-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    border: 2px solid rgba(0,0,0,0);
    border-radius: 50%; 
    background: linear-gradient(45deg, #FFB6C1, #DDA0DD);
    transform: scale(2);
    transition: all 0.5s cubic-bezier(0.69, 0.02, 0.42, 1.62);
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.4);
}

.btn-menu span {
    display: block;
    background-color: #2C1810;
    width: 16px;
    height: 3px;
    border-radius: 2px;
    transition: all 0.5s cubic-bezier(0.69, 0.02, 0.42, 1.62);
}

.btn-menu span + span {
    margin-top: 2px;
}

.btn-menu:hover {
    background: linear-gradient(45deg, #FFB6C1, #FF69B4);
    transform: scale(2.2);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.5);
}

.nav {
    width: 100%;
    text-transform: uppercase;
    font-size: 22px;
}

.nav a {
    display: block;
    padding: 15px 0;
    color: #2C1810;
    transition: all 0.3s;
    font-weight: bold;
}

.nav a span {
    position: relative;
    display: inline-block;
    transform: scaleX(0.9);
    letter-spacing: 0.1em;
    margin-right: -0.15em;
    transition: all 0.5s;
}

.nav a span:after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 50%;
    display: inline-block;
    width: 14px;
    height: 3px;
    transform: translateX(-50%);
    margin-left: -0.15em;
    background: linear-gradient(45deg, #FF6B35, #FFD23F);
    transition: all 0.4s cubic-bezier(0.69, 0.02, 0.42, 1.62);
    border-radius: 2px;
}

.nav a.active, .nav a:hover {
    color: #FF6B35;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.nav a.active span, .nav a:hover span {
    transform: scaleX(1);
    letter-spacing: 0.3em;
}

.nav a.active span:after, .nav a:hover span:after {
    width: calc(100% - 32px);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.section {
    padding: 100px 0;
    position: relative;
}

@media(max-width: 767px) {
    .section {
        padding: 50px 0;
    }
}

.section--colour {
    background: linear-gradient(135deg, #F4DA84, #F2E8D0, #FFE4B5);
    border-radius: 20px;
    margin: 20px;
    box-shadow: 0 10px 30px rgba(244, 218, 132, 0.3);
}

.section--slider {
    position: relative;
    padding-top: 50px;
    background: linear-gradient(180deg, rgba(238, 238, 238, 0) 0%, #eeeeee 100%);
    border-radius: 20px;
    margin: 20px;
}

.section--grey {
    position: relative;
    padding-top: 50px;
    background: #f3f3f3;
    border-radius: 20px;
    margin: 20px;
}

.section--white {
    position: relative;
    padding-top: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    margin: 20px;
    backdrop-filter: blur(10px);
}

.section--medium {
    padding: 80px 0;
}

@media(max-width: 767px) {
    .section--medium {
        padding: 50px 0;
    }
}

.section--thin {
    padding: 30px 0;
}

.intro {
    position: relative !important;
    width: 100% !important;
    height: 100vh !important;
    text-align: center;
    color: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.intro__forground {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    border-radius: 20px;
}

.intro__forground:not(.intro__forground--no-fade)::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.4), rgba(247, 147, 30, 0.4));
    border-radius: 20px;
}

.intro__forground img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro--small {
    height: 480px !important;
    margin-bottom: 0;
}

.intro--small .intro__forground::before {
    opacity: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}

@media(max-width: 1023px) {
    .intro--small {
        height: 360px !important;
    }
}

@media(max-width: 767px) {
    .intro--small {
        height: 180px !important;
    }
}

.intro__title-primary {
    max-width: 550px;
    margin: 0 auto;
    padding: 30px 0 40px;
    color: #fff;
    letter-spacing: 0.075em;
    line-height: 1.3;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    text-transform: none;
    font-size: 24px;
    font-weight: bold;
}

@media(max-width: 1023px) {
    .intro__title-primary {
        padding: 60px 0 0;
        font-size: 24px;
    }
}

.intro__image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

@media(max-width: 1023px) {
    .intro__image {
        min-height: 0;
    }
}

.intro__background img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

.intro__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

@media(max-width: 1023px) {
    .intro__content {
        flex-direction: column;
        left: 0;
        width: 100%;
        padding: 0 30px;
        transform: translate(0, -50%);
    }
}

.intro__foot {
    padding-top: 30px;
}

@media(max-width: 767px) {
    .intro__foot {
        padding-top: 20px;
    }
}

.btn-link {
    display: inline-block;
    padding: 15px 30px;
    font-size: 22px;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.3s;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
    text-decoration: none;
    font-weight: bold;
}

.btn-link span {
    position: relative;
    display: inline-block;
    transform: scaleX(0.9);
    letter-spacing: 0.1em;
    margin-right: -0.15em;
    transition: all 0.5s;
}

.btn-link span:after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 50%;
    display: inline-block;
    width: 14px;
    height: 3px;
    transform: translateX(-50%);
    margin-left: -0.15em;
    background-color: #FFD700;
    transition: all 0.4s cubic-bezier(0.69, 0.02, 0.42, 1.62);
    border-radius: 2px;
}

.btn-link:hover {
    background: linear-gradient(45deg, #A0522D, #DEB887);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.btn-link:hover span {
    transform: scaleX(1);
    letter-spacing: 0.3em;
}

.btn-link:hover span:after {
    width: calc(100% - 32px);
    box-shadow: 0 0 10px #FFD700;
}

.article--gutter-top {
    padding-top: 50px;
}

.article__head {
    display: flex;
    align-items: center;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

@media(max-width: 767px) {
    .article__head {
        align-items: flex-start;
    }
}

.article__head.article__head--alt {
    margin-top: -172px;
    padding-bottom: 50px;
}

@media(max-width: 767px) {
    .article__head.article__head--alt {
        margin-top: -120px;
        padding-bottom: 30px;
    }
}

.article__title {
    margin-bottom: 8px;
    font-size: 24px;
    letter-spacing: 0.075em;
    line-height: 1.3;
    color: #FF6B35;
}

.article__title-large {
    margin-bottom: 16px;
    font-size: 40px;
    letter-spacing: 0.075em;
    line-height: 1.3;
    color: #FF6B35;
    text-shadow: 2px 2px 4px rgba(255, 107, 53, 0.3);
}

@media(max-width: 767px) {
    .article__title-large {
        margin-bottom: 10px;
        font-size: 28px;
    }
}

.article__subtitle-small {
    padding-top: 10px;
    margin-bottom: 30px;
    color: #F7931E;
    font-size: 20px;
}

.article__subtitle-large {
    font-size: 22px;
    line-height: 1.3;
    color: #F7931E;
}

@media(max-width: 767px) {
    .article__subtitle-large {
        font-size: 18px;
    }
}

.article__image {
    min-width: 96px;
    margin-right: 25px;
}

.article__image img {
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.article__image-large {
    min-width: 96px;
    margin-right: 32px;
}

@media(max-width: 767px) {
    .article__image-large {
        margin-right: 25px;
    }
}

.article__image-large img {
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    border-radius: 40px;
    border: 4px solid #FFD700; 
}

@media(max-width: 767px) {
    .article__image-large img {
        border-radius: 20px;
    }
}

.article__entry {
    text-align: justify;
}

.article__entry p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.article__entry p:last-child {
    margin-bottom: 0;
}

.article__entry ul {
    margin: 0 0 20px 17px;
}

.article__entry li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.article__entry li::marker {
    content: '🐔 ';
}

.article__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

@media(max-width: 1023px) {
    .article__actions {
        flex-direction: column;
    }
}

@media(max-width: 767px) {
    .article__actions {
        padding-top: 32px;
    }
}

.article__actions-small {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

@media(max-width: 1023px) {
    .article__actions-small {
        margin-bottom: -15px;
    }
}

.article--center {
    text-align: center;
    padding-top: 60px;
}

.article-news {
    display: flex;
    padding: 30px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s;
}

.article-news:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: rgba(255, 215, 0, 0.6);
}

.article-news + .article-news {
    border-top: none;
    margin-top: 0;
    padding-top: 30px;
}

.article-news__body {
    margin-bottom: 20px;
}

.article-news__title {
    margin-bottom: 20px;
    font-size: 20px;
    letter-spacing: 0.075em;
    line-height: 1.3;
    color: #FF6B35;
}

.article-news__title a {
    color: #FF6B35;
    transition: all 0.3s;
}

.article-news__title a:hover {
    color: #F7931E;
    text-shadow: 0 0 5px rgba(247, 147, 30, 0.5);
}

.article-news__date {
    color: #8B4513;
    font-weight: bold;
    font-size: 14px;
}

.article-news__image {
    min-width: 256px;
    margin-right: 25px;
}

@media(max-width: 767px) {
    .article-news__image {
        min-width: 96px;
    }
    
    .article-news {
        flex-direction: column;
    }
    
    .article-news__image {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

.article-news__image img {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contacts {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contacts__title {
    margin-bottom: 15px;
    font-size: 30px;
    color: #FF6B35;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.contacts__entry {
    margin-bottom: 40px;
    font-size: 22px;
    color: #2C1810;
}

.js-swiper-hor, .js-swiper, .js-swiper-main {
    position: relative;
    overflow: visible;
    border-radius: 20px;
}

@media(max-width: 1023px) {
    .js-swiper-hor, .js-swiper, .js-swiper-main {
        margin: 40px 0 60px;
    }
}

@media(max-width: 767px) {
    .js-swiper-hor, .js-swiper, .js-swiper-main {
        margin: 30px 0 35px;
    }
}

.js-swiper-hor .swiper-slide, .js-swiper .swiper-slide, .js-swiper-main .swiper-slide {
    border-radius: 20px;
    user-select: none;
    transition: all 0.5s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media(max-width: 1023px) {
    .js-swiper-hor .swiper-slide, .js-swiper .swiper-slide, .js-swiper-main .swiper-slide {
        border-radius: 10px;
    }
}

.js-swiper-hor .swiper-slide.swiper-slide-active, .js-swiper .swiper-slide.swiper-slide-active {
    transform: scale(1.5);
    z-index: 5;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    border: 3px solid #FFD700;
}

@media(max-width: 1023px) {
    .js-swiper-hor .swiper-slide.swiper-slide-active, .js-swiper .swiper-slide.swiper-slide-active {
        transform: scale(1);
    }
}

.js-swiper-hor .swiper-slide.swiper-slide-next, .js-swiper-hor .swiper-slide.swiper-slide-prev, .js-swiper .swiper-slide.swiper-slide-next, .js-swiper .swiper-slide.swiper-slide-prev {
    transform: scale(1.25);
    z-index: 4;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

@media(max-width: 1023px) {
    .js-swiper-hor .swiper-slide.swiper-slide-next, .js-swiper-hor .swiper-slide.swiper-slide-prev, .js-swiper .swiper-slide.swiper-slide-next, .js-swiper .swiper-slide.swiper-slide-prev {
        transform: scale(1);
    }
}

.js-swiper-main .swiper-pagination {
    display: inline-flex;
    position: absolute;
    bottom: 40px !important;
    left: 50% !important;
    width: auto !important;
    transform: translateX(-50%);
    padding: 8px 15px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

@media(max-width: 767px) {
    .js-swiper-main .swiper-pagination {
        bottom: 30px !important;
        padding: 6px 10px;
    }
}

.js-swiper-main .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    margin: 0 10px !important;
    background: linear-gradient(45deg, #FF6B35, #FFD23F);
    opacity: 0.5;
    transition: all 0.3s;
    border-radius: 50%;
}

@media(max-width: 767px) {
    .js-swiper-main .swiper-pagination-bullet {
        width: 15px;
        height: 15px;
        margin: 0 5px !important;
    }
}

.js-swiper-main .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.5);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

@media(max-width: 767px) {
    .js-swiper-main .swiper-pagination-bullet-active {
        transform: scale(1.3);
    }
}

.socials > ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style-type: none;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
}

@media(max-width: 1023px) {
    .socials > ul {
        justify-content: center;
    }
}

.socials--small ul {
    justify-content: center;
}

.socials a {
    display: inline-block;
    transition: all 0.3s;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.socials a:hover {
    transform: scale(1.3) rotate(15deg);
    background: rgba(255, 215, 0, 0.3);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.form-contacts {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.form-contacts label {
    color: #FF6B35;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-contacts__row {
    position: relative;
    margin-bottom: 25px;
}

.form-contacts__actions {
    text-align: center;
    padding-top: 30px;
}

.field {
    display: block;
    width: 100%;
    resize: none;
    min-height: 60px;
    max-height: 200px;
    padding: 18px;
    background: rgba(236, 239, 247, 0.9);
    border: 2px solid transparent;
    outline: 0;
    color: #2C1810;
    border-radius: 15px;
    transition: all 0.3s;
    font-family: inherit;
    font-size: 16px;
}

.field::placeholder {
    color: #95a5a6;
    font-style: italic;
}

.field--textarea {
    min-height: 120px;
    resize: vertical;
}

.field:focus {
    background: rgba(255, 255, 255, 0.95);
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.team-member {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: rgba(255, 215, 0, 0.6);
}

.team-member h4 {
    color: #FF6B35;
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
}

.team-member p {
    line-height: 1.6;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.value-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 3px solid transparent;
    transition: all 0.3s;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: rgba(255, 107, 53, 0.4);
}

.value-card h3 {
    color: #FF6B35;
    font-size: 20px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.value-card p {
    line-height: 1.7;
    color: #2C1810;
}

.cta-section {
    background: linear-gradient(45deg, #FF6B35, #F7931E, #FFD23F);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.cta-section h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-section p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.game-details-argentina {
    background: linear-gradient(135deg, #74ACDF, #FFF, #74ACDF);
    padding: 30px;
    border-radius: 20px;
    margin: 30px 0;
    border: 3px solid #FFD700;
    box-shadow: 0 10px 25px rgba(116, 172, 223, 0.3);
}

.game-details-argentina h3, .game-details-argentina h4 {
    color: #2C1810;
    margin-bottom: 15px;
}

.services-argentina {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.services-argentina h3, .services-argentina h4 {
    color: #FF6B35;
    margin-bottom: 15px;
}

.services-argentina ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.services-argentina li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.services-argentina li::marker {
    content: '🇦🇷 ';
}

@media (max-width: 768px) {
    body {
        font-size: 18px;
    }
    
    .cta-main-btn {
        font-size: 16px;
        padding: 10px 20px;
    }
    
    .intro__title-primary {
        font-size: 20px;
        padding: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .article-news {
        flex-direction: column;
        padding: 20px;
    }
    
    .article-news__image {
        margin-right: 0;
        margin-bottom: 15px;
        min-width: auto;
    }
    
    .contacts__title {
        font-size: 24px;
    }
    
    .contacts__entry {
        font-size: 18px;
    }
}

@media print {
    .cta-banner, .header, .socials {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .main {
        background: white;
    }
}
