html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}


@font-face {
    font-family: 'Roboto';
    src: url('/style/Roboto_Condensed/RobotoCondensed-VariableFont_wght.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('/style/Roboto_Condensed/RobotoCondensed-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'K_TCCCUnity';
    src: url('/style/_Fonts/K_TCCCUnity-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Medium */
@font-face {
    font-family: 'K_TCCCUnity';
    src: url('/style/_Fonts/K_TCCCUnityCond-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Bold */
@font-face {
    font-family: 'K_TCCCUnity';
    src: url('/style/_Fonts/K_TCCCUnityCond-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}





.main {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    position: fixed; /* Меняем на fixed */
    top: 0; /* Прижимаем к верху */
    left: 0; /* Прижимаем к левому краю */
    right: 0; /* Растягиваем на всю ширину */
    height: 66px;
    background: white;
    z-index: 1001;
    box-shadow: 0 2px 10px rgb(0 0 0 / 75%);
}

.logo {
    margin-left: -40px;
}

.hamburger-menu {
    position: relative;
    z-index: 1002;
}

#menu-toggle {
    display: none;
}

.menu-button {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    padding: 5px;
    z-index: 1003;
    position: relative;
}

/* Гамбургер иконка */
.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.hamburger-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}
/* Стрелка назад */
.back-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.back-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menu-back-arrow .hamburger-icon {
    opacity: 0;
}

.menu-back-arrow .back-arrow {
    opacity: 1;
    pointer-events: auto;
}

/* Анимация гамбургера в крестик */
#menu-toggle:checked ~ .menu-button .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

#menu-toggle:checked ~ .menu-button .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

#menu-toggle:checked ~ .menu-button .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}


.menu-content {
    position: fixed;
    top: 66px;
    left: 0;
    width: 100%;
    height: calc(100vh - 66px);
    background: white;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow-y: auto; /* Разрешаем скролл только внутри меню */
}

#menu-toggle:checked ~ .menu-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* Окно авторизации */
.auth-window {
    position: fixed;
    top: 66px;
    left: 0;
    width: 100%;
    height: calc(100vh - 66px);
    background: white;
    z-index: 1005;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.auth-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.auth-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
    background: #FFFFFF;
}


.auth-formText{
    align-items: center;
    text-align: center;
    font-family: "K_TCCCUnity",sans-serif;
    font-size: 25px;
    font-weight: 600;
}

.auth-header h2 {
    font-family: "K_TCCCUnity",sans-serif;
    font-size: 50px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

.close-auth {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-auth:hover {
    color: #910101;
}

/* Контент авторизации */
.auth-content {
    padding: 30px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.auth-form input {
    padding: 15px 20px;
  border: none;
    background: #6666662e;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    transition: border-color 0.3s ease;
    text-align: center;

}

.auth-form input:focus {
    outline: none;
    border-color: #910101;
}

.auth-links-text{
    font-family: "Roboto",sans-serif;
    font-size: 25px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.75);

    text-align: center;
}

.auth-submit {
    padding: 15px 20px;
    background: #A30102;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'K_TCCCUnity', sans-serif;
    font-size: 25px;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.auth-submit:hover {
    background: #b10202;
}

.auth-links {
    display: flex;
    justify-content: center;
    padding-top: 30px;
}

.auth-links a {
    color: #910101;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    transition: color 0.3s ease;
}

.auth-links a:hover {
    color: #b10202;
    text-decoration: underline;
}


.menu-content a {
    display: block;
    padding: 10px 30px;
    text-decoration: none;
    color: #000000;
    font-size: 50px;
    font-family: "K_TCCCUnity",sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-align: center;
}

.hamburgerUser{
    font-family: "K_TCCCUnity",sans-serif;
    font-size: 50px;
    font-weight: 700;
    color: rgba(30, 29, 29, 0.4);
    text-transform: uppercase;

}
.lineHumberger{
    position: absolute;
    bottom: 0;
    width: 100%;
}

.hamburgerUserText{
    text-align: center;
    display: flex;
    justify-content: center;
    padding-top: 70%;
}

.menu-content a:hover {
    background: #f8f8f8;
    color: #910101;
}


.menu-content a {
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.3s ease;
}

#menu-toggle:checked ~ .menu-content a {
    transform: translateX(0);
    opacity: 1;
}


#menu-toggle:checked ~ .menu-content a:nth-child(1) { transition-delay: 0.1s; }
#menu-toggle:checked ~ .menu-content a:nth-child(2) { transition-delay: 0.15s; }
#menu-toggle:checked ~ .menu-content a:nth-child(3) { transition-delay: 0.2s; }
#menu-toggle:checked ~ .menu-content a:nth-child(4) { transition-delay: 0.25s; }


.menu-content::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 66px);
    background: #FFFFFF;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: -1;
}

#menu-toggle:checked ~ .menu-content::before {
    opacity: 1;
    visibility: visible;
}



.auth-verification {
    position: fixed;
    top: 66px;
    left: 0;
    width: 100%;
    height: calc(100vh - 66px);
    background: white;
    z-index: 1006;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.no-code{
    font-family: "Roboto",sans-serif;
    font-size: 25px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.61);

    text-align: center;
}
.auth-verification.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.verification-content {
    padding: 30px;
}

.verification-text {
    font-family: 'Roboto', sans-serif;
    font-size: 25px;
    color: #000000;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
}
.verification-links{
    display: flex;
    justify-content: center;
    padding-top: 30px;
    flex-direction: column;
}
.code-inputs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.code-input {
    width: 60px;
    height: 60px;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 500;
    background: #f8f9fa;
    transition: all 0.3s ease;
}
.code-input:after{
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 10px;
    height: 10%;
    background: #000000;
}


.code-input:focus {
    outline: none;
    border-color: #910101;
    background: white;
    box-shadow: 0 0 0 3px rgba(145, 1, 1, 0.1);
}

.code-input.filled {
    border-color: #910101;
    background: white;
}

.verification-submit {
    width: 100%;
    padding: 15px 20px;
    background: #A30102 ;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'K_TCCCUnity', sans-serif;
    font-size: 25px;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s ease;
    margin-bottom: 20px;
}

.verification-submit:hover {
    background: #b10202;
}

.verification-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}


.verification-timer {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 10px;
}

.resend-code {
    display: block;
    text-align: center;
    color: rgba(0, 0, 0, 0.84);
    text-decoration: underline;
    font-family: 'Roboto', sans-serif;
    font-size: 25px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.resend-code:hover {
    color: #b10202;
    text-decoration: underline;
}





/* Стили для окна Мои чеки */
.auth-checks {
    position: fixed;
    top: 66px;
    left: 0;
    width: 100%;
    height: calc(100vh - 66px);
    background: white;
    z-index: 1006;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    overflow-y: auto;
}

.auth-checks.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.checks-content {
    padding: 20px;
}


.chances-count {
    text-align: center;
    padding: 20px;
    width: 250px;
    background: linear-gradient(135deg, #5B0000 0%, #910101 50%);
    border-radius: 10px;
    color: white;
    margin: 0 auto;
}
.chances-text {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.chances-number {
    font-family: 'Roboto', sans-serif;
    font-size: 88px;
    font-weight: 800;
    margin: 0;
}


.checks-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.check-item {
    position: relative;
    aspect-ratio: 1;
    border: 2px dashed #ddd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f8f9fa;
}

.check-item.empty-check {
    border-style: solid;
    border-color: #910101;
    background: transparent;
}

.check-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Кнопка удаления */
.delete-check {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease;
}

.delete-check:hover {
    background: rgba(255, 255, 255, 1);
}

.delete-check img {
    width: 45px;
    height: 45px;
}

/* Кнопка загрузки */
.upload-check-btn {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 8px;
}

.upload-check-btn:hover {
    background: rgba(145, 1, 1, 0.1);
}

.upload-plus {
    font-size: 32px;
    color: #910101;
    margin-bottom: 8px;
    font-weight: 300;
}

.upload-text {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    color: #910101;
    text-align: center;
    text-transform: uppercase;
}

/* Информация о чеках */
.checks-info {
    text-align: center;
    padding: 15px;
    border-radius: 8px;
}

.checks-count {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.checks-count span {
    font-weight: 700;
    color: #910101;
}

.checks-note {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    color: #666;
    margin: 0;
}


/* Стили для окна Загрузить чек */
.auth-checks-add {
    position: fixed;
    top: 66px;
    left: 0;
    width: 100%;
    height: calc(100vh - 66px);
    background: white;
    z-index: 1007;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    overflow-y: auto;
}

.auth-checks-add.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.checks-add-content {
    padding: 20px;
}

/* Область загрузки */
.upload-area {
    border: 2px dashed #ddd;
    border-radius: 12px;
    padding: 20px 20px;
    text-align: center;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.upload-area:hover {
    border-color: #910101;
    background: #fff5f5;
}

.upload-area.dragover {
    border-color: #910101;
    background: #fff5f5;
    transform: scale(1.02);
}

.upload-icon {
    max-width: 350px;
    height: 350px;
    margin: 0 auto;
    background: rgb(128 128 128 / 10%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.upload-icon img {
    width: 100px;
    height: 100px;
    filter: brightness(0) invert(1);
}

.upload-title {
    font-family: 'Roboto', sans-serif;
    font-size: 25px;
    font-weight: 500;
    color: rgba(51, 51, 51, 0.65);
    margin-bottom: 8px;
}

.upload-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.upload-formats {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    color: #999;
    margin: 0;
}

/* Превью загруженных фото */
.uploaded-previews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.upload-preview {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.preview-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease;
}

.preview-remove:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.preview-remove img {
    width: 33px;
    height: 33px;
}

/* Кнопка отправки */
.upload-submit {
    width: 100%;
    padding: 16px 20px;
    background: #ccc;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'K_TCCCUnity', sans-serif;
    font-size: 25px;
    font-weight: 500;
    cursor: not-allowed;
    text-transform: uppercase;
    transition: background 0.3s ease;
    margin-bottom: 20px;
}

.upload-submit.active {
    background: #910101;
    cursor: pointer;
}

.upload-submit.active:hover {
    background: #b10202;
}

/* Информация о загрузке */
.upload-info {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.upload-info-text {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.auth-upload-success {
    position: fixed;
    top: 66px;
    left: 0;
    width: 100%;
    height: calc(100vh - 66px);
    background: white;
    z-index: 1008;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    overflow-y: auto;
}

.auth-upload-success.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.upload-success-content {
    padding: 20px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 30vh;
}

.success-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    background: #910101 ;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 0.6s ease;
}

.success-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

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

.success-title {
    font-family: 'K_TCCCUnity', sans-serif;
    font-size: 35px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 15px;
    text-align: center;
}

.success-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.4;
}

.success-button {
    padding: 16px 40px;
    background: #A30102 ;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'K_TCCCUnity', sans-serif;
    font-size: 25px;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    min-width: 350px;
}

.success-button:hover {
    background: linear-gradient(135deg, #910101 0%, #B10202 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(145, 1, 1, 0.3);
}



.mainBlock {
    background:
            radial-gradient(circle at 50% 45%, rgba(255, 0, 0, 0.8) 0%, transparent 30%),
            radial-gradient(circle at 70% 60%, rgba(255, 0, 0, 0.6) 0%, transparent 50%),
            radial-gradient(circle at center, #910101 0%, #910101 100%);
}

.mainBlockText{
    font-family: 'K_TCCCUnity', sans-serif;
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    letter-spacing: 1px;
    color: #FFFFFF;
    text-transform: uppercase;
}
.mainBlockTitel{
    font-family: 'K_TCCCUnity', sans-serif;
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    color: #FFFFFF;
    padding-top: 20px;
}
.mainBlockDescription{
    font-family: 'K_TCCCUnity', sans-serif;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    color: #FFFFFF;
    padding-top: 10px;

}


.coloText{
    position: absolute;
    top: 30%;
    width: 100%;
}

.mainBlockTextImg{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-top: 5px;
}
.mainContainer{
    padding-top: 130px;
}

.mainBlockImgTwo{
 padding-top: 20px;
    mask-image: linear-gradient(to bottom, transparent 0%, black 60%);
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 10%);
    position: relative;
    padding-left: 10px;

}
.mainBlockImgWolna{
    position: absolute;
    bottom:10%;
    left: 0;
    width: 100%;
}
a{
    text-decoration: none;
}
.downChecks{
    width: 352px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    background: #A30102;
    font-family: "K_TCCCUnity", sans-serif;
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
}
.downChecks img {
    width: 28px;
    display: flex;
    justify-content: center;
    padding-top: 3px;
}
.downCheck {
    width: 352px;
    height: 60px;
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    justify-content: center;
    color: #A30102;
    background: #FFFFFF;
    font-family: "K_TCCCUnity", sans-serif;
    font-size: 25px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 20px;
    transition: gap 0.3s ease;
    gap: 0;
}

.downCheck:hover {
    gap: 5px;
    transition: gap 0.3s ease;
}

.downCheck img{
    width: 24px;
    display: flex;
    justify-content: center;
    padding-top: 3px;
}
.blockDown{
    display: flex;
    padding-top: 50px;
    justify-content: center;
}

.prize{
    background: #910101  ;
    margin-top: -1px;
}
.prizeMainText{
    font-family: 'K_TCCCUnity', sans-serif;
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    color: #FFFFFF;
    padding-top: 50px;
}



.slider-container {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
    overflow: hidden;
    cursor: grab;
}

.slider-container:active {
    cursor: grabbing;
}

.slider {
    display: flex;
    transition: transform 0.3s ease;
    touch-action: pan-y;
}

.slide {
    flex: 0 0 100%;
    min-width: 100%;
    user-select: none;
    display: flex;
    justify-content: center;
}

.cards{
    display: flex;
    justify-content: center;
    width: 100%;
}

.card{
    width: 360px;
    height: 580px;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    margin-top: 60px;
    position: relative;
    margin: 60px 15px 0;
}
.trhee{
    position: absolute;
    left: -10px;
    top: -10px;
    width: 225px;
}
.ykrashenia{
    position: absolute;
    right: -20px;
    top: 27%;
    width: 250px;
}
.sharCola{
    position: absolute;
    right: -20px;
    top: -60px;
}
.greenShar{
    position: absolute;
    top: 19%;
    right: 27%;
}
.greenSharCola{
    position: absolute;
    top: 57%;
    left: -20px;
}
.cardText{
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    text-align: center;
}
.cardTextTitle{
    font-family: 'Oswald', sans-serif;
    font-size: 25px;
    font-weight: 400;
    text-align: center;
    color: #FFFFFF;
}

/* Индикаторы */
.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    padding-bottom: 20px;
}

.indicator {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: #FFFFFF;
    transform: scale(1.5);
}

.indicator:hover {
    background: #FFFFFF;
}
/* ЭТО ДОЛЖНО ИСПРАВИТЬ ПРОБЛЕМУ */
.slider-container .slider {
    transform: translateX(0) ;
}

.slider-container .slide {
    opacity: 1 !important;
    visibility: visible !important;
}
.cardTextTitle{
    padding:  20px ;
    margin-top: 50px;
}
.prizeUnderText{
    font-family: 'K_TCCCUnity', sans-serif;
    font-size: 12px;
    font-weight: 200;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}
.linePrize{
    width: 100%;
    padding-top: 20px;
}
.totalPrize{
    background: #910101;
    margin-top: -1px;
    display: flex;
    flex-direction: column;
}
.totalPrizeTextt, .elka p, .tarelka p{
    font-family: 'K_TCCCUnity', sans-serif;
    font-size: 50px;
    font-weight: 700;

    text-align: center;
    color: #FFFFFF;
    padding-top: 50px;
    padding-bottom: 20px;
}

.blockPrize{
    width: 350px;
    height: 510px;
    background: rgba(74, 4, 4, 0.47);
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    display: flex;
}
.blockPrizeImg{
    position: absolute;
    top: 27%;
    right: 10%;
}
.mainBlockImgTotal{
    position: absolute;
}
.blockPrizeImgColaRed{
    position: absolute;
    top: 28%;
    right: 0%;
}
.redShar{
    position: absolute;
    top: 55%;
    left: 4%;
}
.greenSharColaPrize{
    position: absolute;
    top: 60%;
    left: -20px;
    width: 100px;
}
.blocktotalPrize{
    display: flex;
    justify-content: end;
    padding-top: 410px;
}
.blocktotalPrizeText{
    font-family: 'K_TCCCUnity', sans-serif;
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    color: #FFFFFF;
}
.linePrizeTotal{
    padding-top: 50px;
}

.participate{
    background: #910101 ;
    margin-top: -1px;
}

.participateText{
    font-family: 'K_TCCCUnity', sans-serif;
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    color: #FFFFFF;
    padding-top: 50px;
    text-transform: uppercase;
}

.blockParticipate{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}
.blockParticipateImg{
    width: 200px;
    height: 106px;
    background: rgba(74, 4, 4, 0.47);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.blockParticipateInfo{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 30px;
}

.blockParticipateText{
    padding-top: 20px;
}

.blockParticipateTextTitel{
    font-family: 'K_TCCCUnity', sans-serif;
    font-size: 35px;
    font-weight:700;
    text-transform: uppercase;
    text-align: center;
    color: #FFFFFF;

}
.blockParticipateTextDescription{
    font-family: 'K_TCCCUnity', sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    color: #FFFFFF;
    text-transform: uppercase;
}

.lineParticipate{
    padding-top: 50px;
    width: 100%;
}
.yslovia{
    background: #910101 ;
    margin-top: -1px;
}
.ysloviaText{
    font-family: 'K_TCCCUnity', sans-serif;
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    color: #FFFFFF;
    padding-top: 30px;
}

.ysloviaTextTitle{
    font-family: 'K_TCCCUnity', sans-serif;
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    color: #FFFFFF;
    text-transform: uppercase;
    padding-top: 20px;
}
.ysloviaTextDescription{
    font-family: 'K_TCCCUnity', sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    color: #FFFFFF;
    text-transform: uppercase;
}
.checkPrav{
    width: 352px;
    height: 60px;
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    color: #A30102;
    background: #FFFFFF;
    font-family: "K_TCCCUnity", sans-serif;
    font-size: 25px;
    font-weight: 700;
    border-radius: 20px;
    transition: 0.3s ease;
}
.checkPrav:hover{
    gap: 20px;
    transition: 0.3s ease;
}

.winer{
    background: #910101;
    margin-top: -1px;
    padding-bottom: 10px;
}
.winerText{
    font-family: 'K_TCCCUnity', sans-serif;
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    color: #FFFFFF;
    padding-top: 50px;
    text-transform: uppercase;
}

.header-accordion {
    border-radius: 8px;
    margin: 10px 0;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    background: #910101 ;
    transition: background 0.3s ease;
    border: none;
}

.tarelka{
   position: absolute;
    top: 10%;
    width: 90%;
    right: 2%;
}
.greenSharTarelka{
    position: absolute;
    top: 3%;
    right: 10%;
}
.redSharTwo{
    position: absolute;
    top: 33%;
    left: 28%;
}

.sharColaTarelka{
    position: absolute;
    top: 4%;
    right: -9%;
}
.redSharTarelka{
    position: absolute;
    left: -5px;
    top: 45%;
}
.greenSharColaTarelka{
    position: absolute;
    left: -30px;
    top: 50%;
}
.accordion-title {
    font-family: 'K_TCCCUnity', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
}

.accordion-arrow {
    font-size: 14px;
    color: #FFFFFF;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #910101;
}

.accordion-content.open {
    display: flex;
    max-height: 300px;
    max-width: 100%;
    justify-content: center;
}

.winners-table th:first-child {
    border-radius: 10px 0 0 10px;
}
.winners-table th:last-child {
    border-radius: 0px 10px 10px 0px;
}
tr{
    border-bottom: none;
}

/* Стили для таблицы */
.winners-table {
    padding: 0;
}

.winners-table table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Oswald', sans-serif;
}

.winners-table th {
    background: rgba(74, 4, 4, 0.47);
    color: white;
    padding: 7px 15px;
    text-align: center;
    font-weight: 500;
    font-size: 20px;
}

.winners-table td {
    padding: 12px 15px;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: "K_TCCCUnity", sans-serif;
}

.winners-table tr:nth-child(even) {
    background: #910101 ;
}

.winners-table tr:hover {
    background: #910101 ;
}

footer{
    background: #000;
}
.footer-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 20px;
    gap: 50px;
}
.footerLogo{
    width: 90px;
}
.footerContentText{
    color: white;
    font-family: 'K_TCCCUnity', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    padding: 1px;
    border-bottom: 1px solid white;
    cursor: pointer;
    transition: 0.3s ease;
}
.footerContentText:hover{
    scale: 1.1;
    transition: 0.3s ease;
}

.footerContentUnder{
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    color: #FFFFFF;
    padding-bottom: 20px;
}