@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: 
        linear-gradient(-45deg, rgba(26, 26, 26, 0.85), rgba(44, 44, 44, 0.85), rgba(26, 26, 26, 0.9), rgba(255, 215, 0, 0.6)),
        url('bg-image.png');
    background-size: 400% 400%, cover;
    background-position: center;
    background-attachment: fixed;
    animation: gradientAnimation 15s ease infinite;
    color: white;
    text-align: center;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    box-sizing: border-box;
}

.container {
    max-width: 800px;
    width: 100%;
    margin: 0;
    padding: clamp(1rem, 3vh, 2rem);
    background: rgba(26, 26, 26, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeIn 1s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(0.5rem, 2vh, 1rem);
    max-height: 95vh;
}

.logo img {
    max-width: 520px;
    width: 100%;
    height: auto;
    margin-bottom: 0;
}

.rules-grid {
    display: grid;
    gap: 10px;
    margin: 0;
    width: 100%;
}

.rule-item {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 8px;
    border-left: 3px solid #ffd700;
    transition: background 0.3s ease, transform 0.3s ease;
}

.rule-item:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: translateX(5px);
}

.rule-item .icon {
    color: #ffd700;
    font-size: 1.2rem;
    margin-right: 15px;
    width: 25px;
    text-align: center;
}

.rule-item .description {
    flex-grow: 1;
    text-align: left;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
}

.rule-item b {
    color: #ffd700;
    font-weight: 700;
}

.shop-link {
    position: relative;
    display: block;
    margin: 0;
    width: 100%;
    max-width: 100%;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-link:hover {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.shop-link img {
    width: 100%;
    display: block;
    border-radius: 10px;
    transition: filter 0.4s ease;
}

.shop-link:hover img {
    filter: brightness(0.4);
}

.shop-text {
    position: absolute;
    top: 50%;
    left: 50%;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    color: #ffd700;
    text-shadow: 0 0 10px rgba(0, 0, 0, 1);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    user-select: none;
    width: 100%;
    text-align: center;
    letter-spacing: 2px;
    transform: translate(-50%, -40%);
}

.shop-link:hover .shop-text {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.social-container {
    position: absolute;
    top: 25px;
    left: 75px;
    display: flex;
    gap: 15px;
    z-index: 10;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
    transform: scale(1.1);
}

.social-icon img {
    width: 28px;
    height: 28px;
}

.promo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    gap: 10px;
    padding: 0 15px;
    box-sizing: border-box;
    white-space: nowrap;
}

.promo-link:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
    transform: scale(1.05);
}

.promo-link img {
    height: 28px;
    width: auto;
}
