* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: black;
    color: #e7e7e7;
    min-height: 100vh;
    line-height: 1.5;
}

/* GRADIENT AND LAYER BLUR EFFECT */
.image-gradient {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.5;
    z-index: -1;
    max-width: 100%;
    height: auto;
}

.layer-blur {
    height: 0;
    width: 30rem;
    position: absolute;
    top: 20%;
    right: 0;
    box-shadow: 0 0 700px 15px white;
    rotate: -30deg;
    z-index: -1;
}

@media (max-width: 768px) {
    .layer-blur {
        width: 15rem;
        top: 10%;
    }
}

/* CONTAINER — FIXED */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    overflow: hidden; 
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* HEADER */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 5rem 1rem;
    gap: 1.5rem;
}

header h1 {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-left: 0;
}

@media (max-width: 1024px) {
    header {
        padding: 1.5rem 2rem 1rem;
    }
    
    nav {
        gap: 1.5rem;
        margin-left: 0;
    }
    
    nav a {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1.5rem 0.5rem 1rem;
        gap: 1rem;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    nav {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        margin-left: 0;
    }
    
    nav a {
        font-size: 0.85rem;
        letter-spacing: 0.05rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem 0.5rem;
    }
    
    header h1 {
        font-size: 1.5rem;
    }
    
    nav {
        gap: 0.8rem;
        justify-content: center;
    }
    
    nav a {
        font-size: 0.75rem;
        padding: 0.3rem 0.5rem;
    }
}

nav a {
    font-size: 1rem;
    letter-spacing: 0.1rem;
    text-decoration: none;
    color: inherit;
    z-index: 999;
}

nav a:hover {
    color: #a7a7a7;
}

.btn-features {
    background-color: #a7a7a7;
    color: black;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    z-index: 999;
}

.btn-features:hover {
    background-color: white;
}

/* MAIN CONTENT */
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(90vh - 6rem);
    padding: 2rem 0 1rem;
}

.content {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
    z-index: 999;
    position: relative;
    padding: 2rem 0;
}

@media (max-width: 1024px) {
    .content {
        margin: 0 auto;
        max-width: 90%;
    }
}

.tag-box {
    position: relative;
    width: 25rem;
    height: 3.5rem;
    border-radius: 50px;
    margin: 0 auto 2.5rem;
    background: linear-gradient(
        to right,
        #656565,
        #7f42a7,
        #6608c5,
        #5300a0,
        #757575,
        #656565
    );
    background-size: 200%;
    animation: animationGradient 2.5s linear infinite;
    box-shadow: 0 0 30px rgba(127, 66, 167, 0.6), 0 0 60px rgba(102, 8, 197, 0.4);
    transition: all 0.3s ease;
}

.tag-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(127, 66, 167, 0.8), 0 0 80px rgba(102, 8, 197, 0.5);
}

@media (max-width: 1024px) {
    .tag-box {
        width: 22rem;
        height: 3rem;
    }
}

@media (max-width: 768px) {
    .tag-box {
        width: 18rem;
        height: 2.5rem;
    }
}

@media (max-width: 480px) {
    .tag-box {
        width: 14rem;
        height: 2.2rem;
    }
}

@keyframes animationGradient {
    to {
        background-position: 200%;
    }
}

.tag-box .tag {
    position: absolute;
    inset: 3px;
    background-color: black;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #e7e7e7;
    text-shadow: 0 0 10px rgba(127, 66, 167, 0.5);
}

@media (max-width: 1024px) {
    .tag-box .tag {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .tag-box .tag {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .tag-box .tag {
        font-size: 0.75rem;
    }
}

.content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #e7e7e7 0%, #ffffff 50%, #a7a7a7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    letter-spacing: -0.02em;
    position: relative;
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(127, 66, 167, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(127, 66, 167, 0.6));
    }
}

@media (max-width: 1024px) {
    .content h1 {
        font-size: 3rem;
    }
    
    main::before {
        width: 400px;
        height: 400px;
    }
}

.description {
    font-size: 1.25rem;
    letter-spacing: 0.03em;
    max-width: 38rem;
    margin: 0 auto 1rem;
    color: #b7b7b7;
    text-align: center;
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
    .description {
        max-width: 100%;
        font-size: 1.1rem;
    }
}

/* Additional Visual Enhancements */
.content::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(127, 66, 167, 0.5));
    animation: lineGrow 2s ease-out;
}

@keyframes lineGrow {
    from {
        height: 0;
        opacity: 0;
    }
    to {
        height: 50px;
        opacity: 1;
    }
}

/* STATISTICS SECTION */
.stats-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 4rem auto 3rem;
    padding: 2rem;
    max-width: 800px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 140px;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(127, 66, 167, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(127, 66, 167, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e7e7e7 0%, #ffffff 50%, #a7a7a7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.9rem;
    color: #a7a7a7;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* FEATURES SECTION */
.features-section {
    margin: 4rem auto 3rem;
    max-width: 1000px;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #e7e7e7 0%, #ffffff 50%, #a7a7a7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(127, 66, 167, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(127, 66, 167, 0.25);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e7e7e7;
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #a7a7a7;
    margin: 0;
}

/* HOW IT WORKS SECTION */
.how-it-works-section {
    margin: 4rem auto 3rem;
    max-width: 900px;
    padding: 0 2rem;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(127, 66, 167, 0.5);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(127, 66, 167, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(127, 66, 167, 0.3), rgba(102, 8, 197, 0.3));
    border: 2px solid rgba(127, 66, 167, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #e7e7e7;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(127, 66, 167, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #e7e7e7;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.step-content p {
    font-size: 1rem;
    color: #a7a7a7;
    line-height: 1.6;
    margin: 0;
}

/* DOWNLOAD BUTTONS */
.buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
}

.buttons .btn-download {
    position: relative;
    z-index: 10;
}

@media (max-width: 1024px) {
    .stats-section {
        gap: 2rem;
        padding: 1.5rem;
    }

    .stat-item {
        min-width: 120px;
        padding: 1.2rem 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .step-item {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.2rem;
    }

    .buttons {
        margin-top: 5rem;
    }
}

@media (max-width: 768px) {
    .stats-section {
        gap: 1.5rem;
        padding: 1rem;
        margin: 3rem auto 2rem;
    }

    .stat-item {
        min-width: 100px;
        padding: 1rem 1.2rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .features-section,
    .how-it-works-section {
        margin: 3rem auto 2rem;
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 3rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .steps-container {
        gap: 1.2rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .buttons {
        margin-top: 2.5rem;
    }
    
    main::before {
        width: 300px;
        height: 300px;
    }
    
    .content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .stats-section {
        gap: 1rem;
        padding: 0.5rem;
        margin: 2rem auto 1.5rem;
    }

    .stat-item {
        min-width: 80px;
        padding: 0.8rem 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .features-section,
    .how-it-works-section {
        margin: 2rem auto 1.5rem;
        padding: 0 0.5rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .feature-card {
        padding: 1.2rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .step-item {
        padding: 1.2rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .step-content h3 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.85rem;
    }

    .buttons {
        margin-top: 3rem;
    }
}

.btn-download{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.8rem 2.8rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    width: 100%;
    max-width: 320px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-download::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-download:hover::after {
    width: 300px;
    height: 300px;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(127, 66, 167, 0.4);
}

@media (max-width: 768px) {
    .btn-download {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
        max-width: 100%;
    }
}

.btn-download::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50px;
    background: linear-gradient(135deg, #7f42a7, #6608c5, #5300a0, #7f42a7);
    background-size: 200% 200%;
    filter: blur(12px);
    opacity: 0.7;
    z-index: -1;
    animation: buttonGlow 3s ease infinite;
}

@keyframes buttonGlow {
    0%, 100% {
        opacity: 0.7;
        background-position: 0% 50%;
    }
    50% {
        opacity: 0.9;
        background-position: 100% 50%;
    }
}

.btn-download.apple {
    color: #e7e7e7;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.btn-download.apple:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.btn-download.apple .apple-icon {
    color: #e7e7e7;
}

.btn-download.apple:hover .apple-icon {
    color: #ffffff;
}

.btn-download.android {
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5) !important;
    color: #1a1a1a !important;
    border: 1.5px solid rgba(0, 0, 0, 0.2) !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
    max-width: 320px !important;
}

.btn-download.android::before {
    display: none !important;
}

.btn-download.android::after {
    background: rgba(0, 0, 0, 0.1) !important;
}

.btn-download.android:hover {
    background: linear-gradient(135deg, #f0f0f0, #ffffff) !important;
    color: #000000 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    transform: translateY(-2px) !important;
}

.btn-download.android .play-icon-colored {
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0 !important;
    display: block !important;
}

.btn-download.android .play-badge-container {
    color: #1a1a1a !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.2rem !important;
}

.btn-download.android .play-badge-text-small {
    font-size: 0.65rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    color: #1a1a1a !important;
}

.btn-download.android .play-badge-text-large {
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    line-height: 1 !important;
    color: #1a1a1a !important;
}

.btn-download.android:hover .play-badge-container {
    color: #000000 !important;
}

.btn-download.android:hover .play-badge-text-small,
.btn-download.android:hover .play-badge-text-large {
    color: #000000 !important;
}

/* Force Google Play button to be visible */
#googlePlayBtn {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5) !important;
    color: #1a1a1a !important;
    border: 1.5px solid rgba(0, 0, 0, 0.2) !important;
    min-height: 60px !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.7rem !important;
    animation: none !important;
    transform: none !important;
}

#googlePlayBtn::before {
    display: none !important;
}

/* Override AOS styles for Google Play button */
#googlePlayBtn[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

.icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* GAMES MODAL */
.games-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.games-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.games-modal-content {
    background: rgba(20, 20, 20, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    position: relative;
}

.games-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.games-modal-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #e7e7e7;
    margin: 0;
}

.close-games {
    background: transparent;
    border: none;
    color: #e7e7e7;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-games:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: rotate(90deg);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.game-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

.game-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(127, 66, 167, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(127, 66, 167, 0.2);
}

.game-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.game-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e7e7e7;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.game-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #a7a7a7;
    margin: 0;
}

.games-footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.games-footer p {
    color: #a7a7a7;
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .games-modal.active {
        padding: 1rem;
    }

    .games-modal-content {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .games-modal-header h2 {
        font-size: 2rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .game-card {
        padding: 1.5rem;
    }

    .game-icon {
        font-size: 3rem;
    }

    .game-card h3 {
        font-size: 1.3rem;
    }

    .game-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .games-modal-content {
        padding: 1rem;
    }

    .games-modal-header h2 {
        font-size: 1.5rem;
    }

    .game-card {
        padding: 1.2rem;
    }

    .game-icon {
        font-size: 2.5rem;
    }
}

/* FAIR PLAY MODAL */
.fairplay-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.fairplay-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.fairplay-section:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(127, 66, 167, 0.5);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(127, 66, 167, 0.15);
}

.fairplay-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.fairplay-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e7e7e7;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.fairplay-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #a7a7a7;
    margin: 0;
}

.fairplay-guarantee {
    background: linear-gradient(135deg, rgba(127, 66, 167, 0.1), rgba(102, 8, 197, 0.1));
    border: 2px solid rgba(127, 66, 167, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 1rem;
}

.fairplay-guarantee h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #e7e7e7;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.fairplay-guarantee p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #a7a7a7;
    margin-bottom: 1rem;
}

.guarantee-signature {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e7e7e7;
    margin-top: 1.5rem;
    font-style: italic;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .fairplay-section {
        padding: 1.5rem;
    }

    .fairplay-icon {
        font-size: 2.5rem;
    }

    .fairplay-section h3 {
        font-size: 1.3rem;
    }

    .fairplay-section p {
        font-size: 0.95rem;
    }

    .fairplay-guarantee {
        padding: 1.5rem;
    }

    .fairplay-guarantee h3 {
        font-size: 1.5rem;
    }

    .fairplay-guarantee p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .fairplay-section {
        padding: 1.2rem;
    }

    .fairplay-icon {
        font-size: 2rem;
    }

    .fairplay-section h3 {
        font-size: 1.2rem;
    }

    .fairplay-section p {
        font-size: 0.9rem;
    }

    .fairplay-guarantee {
        padding: 1.2rem;
    }

    .fairplay-guarantee h3 {
        font-size: 1.3rem;
    }
}

/* SUPPORT MODAL */
.support-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.support-hero {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(127, 66, 167, 0.1), rgba(102, 8, 197, 0.1));
    border: 1px solid rgba(127, 66, 167, 0.3);
    border-radius: 16px;
}

.support-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.support-hero h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #e7e7e7;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.support-hero p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #a7a7a7;
    margin: 0;
}

.support-contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(127, 66, 167, 0.4);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.support-contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(127, 66, 167, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(127, 66, 167, 0.2);
}

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.support-contact-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #e7e7e7;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.support-contact-card > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #a7a7a7;
    margin-bottom: 1.5rem;
}

.support-email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(127, 66, 167, 0.2), rgba(102, 8, 197, 0.2));
    border: 1px solid rgba(127, 66, 167, 0.5);
    border-radius: 50px;
    color: #e7e7e7;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.support-email-link:hover {
    background: linear-gradient(135deg, rgba(127, 66, 167, 0.3), rgba(102, 8, 197, 0.3));
    border-color: rgba(127, 66, 167, 0.7);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(127, 66, 167, 0.3);
}

.support-email-link span {
    color: #e7e7e7;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.support-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.support-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(127, 66, 167, 0.4);
    transform: translateY(-3px);
}

.support-item-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

.support-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e7e7e7;
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
}

.support-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #a7a7a7;
    margin: 0;
}

.support-faq {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.support-faq h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #e7e7e7;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-align: center;
}

.faq-item {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.03);
    padding-left: 2rem;
}

.faq-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e7e7e7;
    margin-bottom: 0.8rem;
    letter-spacing: 0.03em;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #a7a7a7;
    margin: 0;
}

.support-footer {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.support-footer p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #a7a7a7;
    margin-bottom: 0.8rem;
}

.support-footer p strong {
    color: #e7e7e7;
    font-weight: 600;
}

.support-hours {
    font-size: 0.95rem;
    color: #a7a7a7;
    font-style: italic;
    margin-top: 1rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .support-hero {
        padding: 1.5rem;
    }

    .support-icon {
        font-size: 3rem;
    }

    .support-hero h3 {
        font-size: 1.5rem;
    }

    .support-hero p {
        font-size: 1rem;
    }

    .support-contact-card {
        padding: 2rem;
    }

    .contact-icon {
        font-size: 3rem;
    }

    .support-contact-card h3 {
        font-size: 1.5rem;
    }

    .support-email-link {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .support-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .support-faq {
        padding: 1.5rem;
    }

    .support-faq h3 {
        font-size: 1.5rem;
    }

    .faq-item {
        padding: 1.2rem;
    }

    .faq-item:hover {
        padding-left: 1.5rem;
    }

    .support-footer {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .support-hero {
        padding: 1.2rem;
    }

    .support-icon {
        font-size: 2.5rem;
    }

    .support-hero h3 {
        font-size: 1.3rem;
    }

    .support-contact-card {
        padding: 1.5rem;
    }

    .contact-icon {
        font-size: 2.5rem;
    }

    .support-contact-card h3 {
        font-size: 1.3rem;
    }

    .support-email-link {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }

    .support-item {
        padding: 1.2rem;
    }

    .support-item-icon {
        font-size: 2rem;
    }

    .support-faq {
        padding: 1.2rem;
    }

    .support-faq h3 {
        font-size: 1.3rem;
    }

    .faq-item h4 {
        font-size: 1.1rem;
    }

    .faq-item p {
        font-size: 0.9rem;
    }

    .support-footer {
        padding: 1.2rem;
    }

    .support-footer p {
        font-size: 0.95rem;
    }
}

/* ABOUT MODAL */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-hero {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(127, 66, 167, 0.15), rgba(102, 8, 197, 0.15));
    border: 2px solid rgba(127, 66, 167, 0.4);
    border-radius: 16px;
    margin-bottom: 1rem;
}

.about-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.about-hero h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #e7e7e7;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.about-hero p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #b7b7b7;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(127, 66, 167, 0.1), transparent);
    transition: left 0.5s ease;
}

.about-section:hover::before {
    left: 100%;
}

.about-section:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(127, 66, 167, 0.5);
    transform: translateX(5px);
    box-shadow: 0 5px 25px rgba(127, 66, 167, 0.2);
}

.about-section-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.about-section h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #e7e7e7;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.about-section p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #a7a7a7;
    margin: 0;
}

.about-commitment {
    background: linear-gradient(135deg, rgba(127, 66, 167, 0.15), rgba(102, 8, 197, 0.15));
    border: 2px solid rgba(127, 66, 167, 0.4);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 1rem;
}

.about-commitment h3 {
    font-size: 1.9rem;
    font-weight: 600;
    color: #e7e7e7;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.about-commitment p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #b7b7b7;
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.commitment-signature {
    font-size: 1.15rem;
    font-weight: 600;
    color: #e7e7e7;
    margin-top: 1.5rem;
    font-style: italic;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 2rem;
    }

    .about-icon {
        font-size: 3.5rem;
    }

    .about-hero h3 {
        font-size: 1.8rem;
    }

    .about-hero p {
        font-size: 1.05rem;
    }

    .about-section {
        padding: 1.5rem;
    }

    .about-section-icon {
        font-size: 2rem;
    }

    .about-section h3 {
        font-size: 1.4rem;
    }

    .about-section p {
        font-size: 1rem;
    }

    .about-commitment {
        padding: 2rem;
    }

    .about-commitment h3 {
        font-size: 1.6rem;
    }

    .about-commitment p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 1.5rem;
    }

    .about-icon {
        font-size: 3rem;
    }

    .about-hero h3 {
        font-size: 1.5rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .about-section {
        padding: 1.2rem;
    }

    .about-section-icon {
        font-size: 1.8rem;
    }

    .about-section h3 {
        font-size: 1.3rem;
    }

    .about-section p {
        font-size: 0.95rem;
    }

    .about-commitment {
        padding: 1.5rem;
    }

    .about-commitment h3 {
        font-size: 1.4rem;
    }

    .about-commitment p {
        font-size: 0.95rem;
    }
}

/* COMING SOON MODAL */
.coming-soon-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    padding: 2rem 1rem;
}

.coming-soon-modal.active {
    display: flex;
}

.coming-soon-content {
    background: rgba(20, 20, 20, 0.98);
    border: 2px solid rgba(127, 66, 167, 0.5);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(127, 66, 167, 0.3);
    position: relative;
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.coming-soon-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.coming-soon-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e7e7e7;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, #e7e7e7 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-content > p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #b7b7b7;
    margin-bottom: 1rem;
}

.coming-soon-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: #a7a7a7;
    margin-bottom: 2rem;
    font-style: italic;
}

.coming-soon-close {
    background: linear-gradient(135deg, rgba(127, 66, 167, 0.3), rgba(102, 8, 197, 0.3));
    border: 1.5px solid rgba(127, 66, 167, 0.6);
    border-radius: 50px;
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #e7e7e7;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.coming-soon-close:hover {
    background: linear-gradient(135deg, rgba(127, 66, 167, 0.5), rgba(102, 8, 197, 0.5));
    border-color: rgba(127, 66, 167, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(127, 66, 167, 0.4);
    color: #ffffff;
}

.coming-soon-close:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .coming-soon-content {
        padding: 2rem;
        border-radius: 20px;
    }

    .coming-soon-icon {
        font-size: 4rem;
    }

    .coming-soon-content h2 {
        font-size: 2rem;
    }

    .coming-soon-content > p {
        font-size: 1.1rem;
    }

    .coming-soon-subtitle {
        font-size: 0.95rem;
    }

    .coming-soon-close {
        padding: 0.7rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-content {
        padding: 1.5rem;
    }

    .coming-soon-icon {
        font-size: 3.5rem;
    }

    .coming-soon-content h2 {
        font-size: 1.75rem;
    }

    .coming-soon-content > p {
        font-size: 1rem;
    }

    .coming-soon-close {
        padding: 0.6rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* DOWNLOAD MODAL */
.download-modal-content {
    background: rgba(20, 20, 20, 0.98);
    border: 2px solid rgba(127, 66, 167, 0.5);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(127, 66, 167, 0.3);
    position: relative;
    animation: modalSlideIn 0.4s ease;
}

.download-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: #e7e7e7;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.download-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: rotate(90deg);
}

.download-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
    animation: iconBounce 2s ease-in-out infinite;
}

.download-modal-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e7e7e7;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, #e7e7e7 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #a7a7a7;
    margin-bottom: 2.5rem;
}

.download-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.download-option {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-option::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(127, 66, 167, 0.2), transparent);
    transition: left 0.5s ease;
}

.download-option:hover::before {
    left: 100%;
}

.download-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(127, 66, 167, 0.6);
    transform: translateX(5px);
    box-shadow: 0 5px 25px rgba(127, 66, 167, 0.3);
}

.download-option-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.download-option-icon svg {
    width: 100%;
    height: 100%;
}

.apk-icon {
    color: #e7e7e7;
    background: rgba(127, 66, 167, 0.2);
    border-radius: 12px;
    padding: 0.5rem;
    border: 1px solid rgba(127, 66, 167, 0.4);
}

.apk-icon svg {
    stroke: #e7e7e7;
}

.download-option:hover .apk-icon {
    background: rgba(127, 66, 167, 0.3);
    border-color: rgba(127, 66, 167, 0.6);
    transform: scale(1.1);
}

.playstore-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    padding: 0.3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.download-option:hover .playstore-icon {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.download-option-content {
    flex: 1;
    text-align: left;
}

.download-option-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e7e7e7;
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.download-option-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #a7a7a7;
    margin: 0;
}

.download-arrow {
    flex-shrink: 0;
    color: #a7a7a7;
    transition: all 0.3s ease;
}

.download-option:hover .download-arrow {
    color: #e7e7e7;
    transform: translateX(5px);
}

.download-note {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #a7a7a7;
    font-style: italic;
    margin: 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .download-modal-content {
        padding: 2rem;
        border-radius: 20px;
    }

    .download-modal-close {
        top: 1rem;
        right: 1rem;
        font-size: 1.8rem;
    }

    .download-icon {
        font-size: 3.5rem;
    }

    .download-modal-content h2 {
        font-size: 2rem;
    }

    .download-subtitle {
        font-size: 1rem;
    }

    .download-option {
        padding: 1.2rem 1.5rem;
        gap: 1.2rem;
    }

    .download-option-icon {
        width: 40px;
        height: 40px;
    }

    .download-option-content h3 {
        font-size: 1.2rem;
    }

    .download-option-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .download-modal-content {
        padding: 1.5rem;
    }

    .download-icon {
        font-size: 3rem;
    }

    .download-modal-content h2 {
        font-size: 1.75rem;
    }

    .download-option {
        padding: 1rem;
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .download-option-content {
        text-align: center;
    }

    .download-option-icon {
        width: 36px;
        height: 36px;
    }

    .download-option-content h3 {
        font-size: 1.1rem;
    }

    .download-option-content p {
        font-size: 0.85rem;
    }
}

/* TABLET */
@media (max-width: 1300px) {
    header {
        padding: 1rem 1rem;
    }

    .content {
        margin-top: 2rem;
        margin-bottom: 2rem;
        max-width: 100%;
        padding: 0 1rem;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    header {
        padding: 1rem 0.5rem;
    }

    header h1 {
        font-size: 2rem;
    }

    main {
        min-height: calc(100vh - 4rem);
        padding: 1rem 0;
    }

    .content {
        margin-top: 1rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
        padding: 0;
    }

    .tag-box {
        width: 12rem;
        height: 2rem;
    }

    .content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .buttons {
        margin-top: 8rem;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    header h1 {
        font-size: 1.5rem;
    }

    .content h1 {
        font-size: 1.75rem;
    }

    .description {
        font-size: 0.9rem;
    }

    .tag-box {
        width: 10rem;
        height: 1.8rem;
    }

    .btn-download {
        font-size: 0.9rem;
        padding: 0.5rem 1.2rem;
    }
}
