.mobile-hero {
    position: relative;
    padding: 80px 0;
    color: #fff;
    background-color: #121928;
    overflow: hidden;
}

.mobile-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/rabona-banner2.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 0;
}

.mobile-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.mobile-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

.mobile-hero h1 {
    font-size: 2.8rem;
    color: #E3E20B;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.mobile-hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.mobile-button {
    display: inline-block;
    background-color: #E3E20B;
    color: #000;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 0;
    text-transform: uppercase;
    margin: 20px 0;
    animation: pulse 2s infinite;
    text-align: center;
    font-size: 1rem;
}

.mobile-section {
    padding: 60px 0;
    background-color: #121928;
    background-image: radial-gradient(circle at 30% 50%, rgba(25, 35, 60, 0.8) 0%, rgba(18, 25, 40, 0.4) 100%);
}

.mobile-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.platform-section {
    margin-bottom: 30px;
}

.platform-section h2 {
    font-size: 2.2rem;
    color: #E3E20B;
    margin-bottom: 20px;
}

.platform-section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.app-showcase {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
}

.app-text {
    flex: 1;
}

.app-image {
    flex: 1;
    text-align: center;
}

.app-image img {
    max-width: 60%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.advantages-list {
    margin-top: 25px;
}

.advantage-item {
    margin-bottom: 20px;
}

.advantage-title {
    font-weight: bold;
    color: #E3E20B;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.button-center {
    text-align: center;
    margin: 30px 0;
}

.casino-link {
    color: #E3E20B;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.casino-link:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .app-showcase {
        flex-direction: column;
    }
    
    .mobile-hero h1 {
        font-size: 2.4rem;
    }
    
    .app-image img {
        max-width: 60%;
    }
}

@media (max-width: 768px) {
    .mobile-hero {
        padding: 60px 0;
    }
    
    .mobile-hero h1 {
        font-size: 2rem;
    }
    
    .mobile-hero p {
        font-size: 1rem;
    }
    
    .platform-section h2 {
        font-size: 1.8rem;
    }
    
    .app-image img {
        max-width: 50%;
    }
}

@media (max-width: 480px) {
    .mobile-hero h1 {
        font-size: 1.6rem;
    }
    
    .mobile-hero p {
        font-size: 0.9rem;
    }
    
    .mobile-button {
        width: 80%;
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .platform-section h2 {
        font-size: 1.5rem;
    }
    
    .app-image img {
        max-width: 60%;
    }
} 