/* Body and Background Animation */
body {
    width: 100%;
    min-height: 100vh;
    color: #fff;
    background: linear-gradient(-45deg, #39ff0069, #003dff, #b400ff, #7b00dd, #0049ff69);
    background-size: 400% 400%;
    animation: Gradient 8s ease infinite;
    font-family: 'Rubik', sans-serif;
    padding-bottom: 50px;
}

@keyframes Gradient {
    0% { background-position: 0% 50% }
    50% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}

/* Layout Elements */
.header-box { padding: 40px 0 20px; }
.logo-main { height: 8rem; margin-bottom: 15px; }
.repo-title { font-size: 2rem; font-weight: 800; }
.separator { height: 0.2rem; border: none; background-color: #ffffff40; margin: 30px 0; }

/* Buttons */
.btn-action { width: 85%; padding: 12px; font-weight: 800; border-radius: 12px; }
.btn-outline-primary { border-color: #007aff; color: #fff; background: rgba(0, 122, 255, 0.2); }
.btn-footer { width: 100%; font-weight: 600; }

/* App Preview UI */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    padding: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.preview-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

.preview-card img {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    margin-right: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.preview-card-content h4 { margin: 0; font-size: 1.1rem; }
.preview-card-content p { margin: 0; font-size: 0.8rem; color: #ccc; }

/* Icons and Decorative */
.backdrop {
    width: 120px; height: 120px;
    margin: 0 auto 10px;
    border-radius: 190px;
    box-shadow: 0px 2px 15px #111;
}

.sidestore {
    background: url("https://raw.githubusercontent.com/Bitte-ein-Git/sidestore-repo/refs/heads/main/assets/storelogo.png") center/cover no-repeat;
}