
html {
    box-sizing: border-box
}

*, *:before, *:after {
    box-sizing: inherit
}
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

html, body {
    font-family: Verdana,sans-serif;
    font-size: 15px;
    line-height: 1.5
}

html {
    overflow-x: hidden
}

h1 {
    font-size: 36px
}

h1 {
    font-family: "Segoe UI",Arial,sans-serif;
    font-weight: 400;
    margin: 10px 0
}

:disabled * {
    pointer-events: none
}

.rb-display-container {
    position: relative
}

.rb-display-topleft {
    position: absolute;
    left: 0;
    top: 0
}

.rb-display-middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%)
}

.rb-animate-opacity {
    animation: opac 0.8s
}

@keyframes opac {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.rb-animate-top {
    position: relative;
    animation: animatetop 0.4s
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

.rb-large {
    font-size: 18px !important
}

.rb-xlarge {
    font-size: 24px !important
}

.rb-jumbo {
    font-size: 64px !important
}

.rb-center {
    text-align: center !important
}

.rb-padding-large {
    padding: 12px 24px !important
}
/* Colors */
.rb-text-white {
    color: #fff !important
}

body, h1 {
    font-family: "Raleway", sans-serif
}

body, html {
    height: 100%;
    background-image: url("./images/background.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.mainFrame {
 
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
  
    border-radius: 10px;
    background-color: #7e7e7e22;
}

.top-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 20px;
}

.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.youfi-icon {
    max-width: 120px;
    height: auto;
    width: auto;
}

.store-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.store-button {
    display: inline-block;
    transition: transform 0.2s ease;
}

.store-button:hover {
    transform: scale(1.05);
}

.store-button:active {
    transform: scale(0.98);
}

.store-button img {
    height: auto;
    max-width: 200px;
    width: 100%;
}


.aspectwrapper {
    display: inline-block; /* shrink to fit */
    width: 100%; /* whatever width you like */
    height: 100%;
    position: relative; /* so .content can use position: absolute */
}

    .aspectwrapper::after {
        padding-top: 100%; /* percentage of containing block _width_ */
        display: block;
        content: '';
    }

.content {
    position: absolute;
    top: 50px;
    bottom: 50px;
    right: 50px;
    left: 50px; /* follow the parent's edges */
  
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-bottom: 0;
    width: 100%;
}

.support-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.support-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.support-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.4);
}

.support-icon {
    font-size: 20px;
    line-height: 1;
}

.support-text {
    letter-spacing: 0.5px;
}

@media (max-width: 600px) {
    .support-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .support-icon {
        font-size: 18px;
    }
    
    .content {
        top: 20px;
        bottom: 20px;
        right: 20px;
        left: 20px;
    }
    
    .mainFrame {
        padding: 15px;
    }
    
    .store-button img {
        max-width: 180px;
    }
    
    .youfi-icon {
        max-width: 100px;
    }
}

@media (min-width: 768px) {
    .store-buttons {
        flex-direction: row;
        gap: 20px;
        max-width: 500px;
    }
    
    .store-button img {
        max-width: 220px;
    }
    
    .youfi-icon {
        max-width: 150px;
    }
}

@media (min-width: 1024px) {
    .store-buttons {
        max-width: 600px;
        gap: 30px;
    }
    
    .store-button img {
        max-width: 250px;
    }
    
    .youfi-icon {
        max-width: 180px;
    }
}