/* Add at the end of style.css */

/* Mobile Layout Styles */
.mobile-layout {
    display: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #fff;
    min-height: 100vh;
    padding-bottom: 20px;
    position: relative;
    overflow-x: hidden;
}

.mobile-header {
    text-align: center;
    padding: 15px 0;
}

.mobile-logo {
    height: 40px;
    width: auto;
}

.mobile-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    position: relative;
}

.mobile-main-img {
    width: 80%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.dot {
    width: 16px;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
}

.dot.active {
    background-color: #a0a0a0;
}

.mobile-sponsors {
    padding: 0 15px;
    margin-bottom: 30px;
}

.sponsors-title {
    text-align: center;
    font-size: 20px;
    color: #4a5c82;
    margin-bottom: 20px;
    font-weight: 700;
}

.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sponsor-item {
    width: 30%;
    text-align: center;
    margin-bottom: 15px;
}

.sponsor-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 5px;
}

.sponsor-name {
    font-size: 12px;
    color: #333;
    font-weight: 600;
    margin-bottom: 2px;
}

.sponsor-desc {
    font-size: 9px;
    color: #999;
    white-space: nowrap;
    transform: scale(0.9);
}

.mobile-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0 20px;
    margin-bottom: 20px;
}

.mobile-buttons .btn {
    flex: 1;
    padding: 12px 0;
    border-radius: 25px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-app {
    background-color: #5691ff;
    color: white;
}

.btn-web {
    background-color: #5691ff;
    color: white;
}

.mobile-footer-text {
    text-align: center;
    font-size: 11px;
    color: #888;
    padding: 0 20px;
    margin-bottom: 30px;
}

.floating-cs {
    position: fixed;
    right: 0;
    top: 60%;
    background-color: #5691ff;
    color: white;
    padding: 8px 12px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    display: flex;
    align-items: center;
    box-shadow: -2px 2px 10px rgba(86, 145, 255, 0.3);
    z-index: 100;
}

/* Media Queries */
@media (max-width: 768px) {
    .pc-layout {
        display: none !important;
    }
    
    .mobile-layout {
        display: block;
    }
    
    /* Reset body background for mobile to look like app */
    body {
        background-color: #fff;
    }
}

@media (min-width: 769px) {
    .pc-layout {
        display: block;
    }
    
    .mobile-layout {
        display: none !important;
    }
}
