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

body {
    font-family: 'Oswald', 'Arial', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(0deg,
            #B22234 0%,
            #B22234 7.69%,
            #FFFFFF 7.69%,
            #FFFFFF 15.38%,
            #B22234 15.38%,
            #B22234 23.07%,
            #FFFFFF 23.07%,
            #FFFFFF 30.76%,
            #B22234 30.76%,
            #B22234 38.45%,
            #FFFFFF 38.45%,
            #FFFFFF 46.14%,
            #B22234 46.14%,
            #B22234 53.83%,
            #FFFFFF 53.83%,
            #FFFFFF 61.52%,
            #B22234 61.52%,
            #B22234 69.21%,
            #FFFFFF 69.21%,
            #FFFFFF 76.9%,
            #B22234 76.9%,
            #B22234 84.59%,
            #FFFFFF 84.59%,
            #FFFFFF 92.28%,
            #B22234 92.28%,
            #B22234 100%);
    background-size: 100% 100%;
    position: relative;
    overflow: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 38.46%;
    height: 53.85%;
    background: #3C3B6E;
    z-index: 0;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 38.46%;
    height: 53.85%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 L35 18 L53 18 L38 29 L43 47 L30 36 L17 47 L22 29 L7 18 L25 18 Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
    background-size: 60px 52px;
    background-repeat: repeat;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    width: 100%;
    max-width: 1200px;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title {
    font-family: 'Bebas Neue', 'Russo One', sans-serif;
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(135deg, #2563EB, #3B82F6, #60A5FA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    letter-spacing: 10px;
    animation: titlePulse 2s ease-in-out infinite;
    text-align: center;
}

@keyframes titlePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.image-wrapper {
    margin: 40px 0;
    animation: imageFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

@keyframes imageFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.main-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    border: 5px solid #FFFFFF;
    box-shadow:
        0 0 0 3px #000000,
        0 15px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.main-image:hover {
    transform: scale(1.05) rotate(1deg);
}

.buttons {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 20px 50px;
    font-family: 'Russo One', 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 2px 5px rgba(255, 255, 255, 0.3);
    animation: buttonBounce 2s ease-in-out infinite;
    text-decoration: none;
    display: inline-block;
    color: inherit;
}

.btn:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes buttonBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.4),
        inset 0 2px 5px rgba(255, 255, 255, 0.4);
}

.btn:active {
    transform: translateY(-2px) scale(0.98);
}

.btn span {
    position: relative;
    z-index: 1;
    text-shadow:
        2px 2px 0px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(0, 0, 0, 0.3);
}

.btn-pump {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: #FFFFFF;
}

.btn-pump:hover {
    background: linear-gradient(135deg, #16A34A, #15803D);
}

.btn-x {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: #FFFFFF;
}

.btn-x:hover {
    background: linear-gradient(135deg, #26A69A, #00897B);
}

.btn-x span {
    text-shadow:
        2px 2px 0px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .main-image {
        max-width: 300px;
    }

    .btn {
        padding: 15px 35px;
        font-size: 1.2rem;
    }

    .buttons {
        gap: 20px;
    }
}