/* Mobile Preview Styles for GameVerse Electric */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-x: hidden;
}

/* Preview Container */
.preview-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-header h2 {
    color: #00d4ff;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.device-selector {
    display: flex;
    gap: 10px;
}

.device-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
}

.device-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.device-btn.active {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    border-color: #00d4ff;
}

/* Device Mockup */
.device-mockup {
    display: none;
    margin: 0 auto;
    position: relative;
}

.device-mockup.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Samsung Device */
.samsung-device .device-frame {
    width: 380px;
    height: 780px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 0 0 2px #2a2a2a,
        0 0 0 6px #1a1a1a,
        0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.samsung-device .device-header {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.samsung-device .camera {
    width: 12px;
    height: 12px;
    background: #0a0a0a;
    border-radius: 50%;
    border: 2px solid #333;
}

.samsung-device .speaker {
    width: 60px;
    height: 6px;
    background: #0a0a0a;
    border-radius: 3px;
}

.samsung-device .device-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    isolation: isolate;
}

.samsung-device .device-footer {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.samsung-device .home-button {
    width: 50px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

/* iPhone Device */
.iphone-device .device-frame {
    width: 380px;
    height: 780px;
    background: #000;
    border-radius: 50px;
    padding: 12px;
    box-shadow: 
        0 0 0 8px #1a1a1a,
        0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.iphone-device .device-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 30px;
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.iphone-device .device-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    isolation: isolate;
}

/* Mobile App Container */
.mobile-app {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Splash Screen */
.splash-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.splash-screen.active {
    display: flex;
}

.splash-content {
    text-align: center;
    animation: fadeInUp 1s ease;
}

.splash-logo {
    font-size: 80px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.splash-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    color: #00d4ff;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.splash-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 40px;
}

.splash-loader {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.loader-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #0099ff);
    animation: loadProgress 2s ease forwards;
}

@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Mobile Pages */
.mobile-page {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
}

/* Mobile Header */
.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    position: relative;
    z-index: 50;
}

.drawer-toggle,
.notification-btn,
.search-btn,
.filter-btn,
.settings-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.drawer-toggle:hover,
.notification-btn:hover,
.search-btn:hover,
.filter-btn:hover,
.settings-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.05);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 24px;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #00d4ff;
}

.notification-btn {
    position: relative;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff3366;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 700;
}

/* Mobile Content */
.mobile-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    padding-bottom: 90px;
    -webkit-overflow-scrolling: touch;
}

.mobile-content::-webkit-scrollbar {
    width: 4px;
}

.mobile-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-content::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.5);
    border-radius: 2px;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    flex-wrap: wrap;
    gap: 15px;
}

.banner-content {
    flex: 1;
    min-width: 150px;
}

.banner-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(18px, 5vw, 24px);
    color: white;
    margin-bottom: 5px;
}

.banner-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(12px, 3vw, 14px);
    margin-bottom: 15px;
}

.banner-btn {
    padding: 10px 20px;
    background: white;
    color: #0099ff;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    transform: scale(1.05);
}

.banner-image i {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.3);
}

/* Stats Container */
.stats-container {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(16px, 4vw, 18px);
    color: white;
}

.see-all {
    color: #00d4ff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.2);
}

.game-image {
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.game-image i {
    font-size: 36px;
    color: white;
}

.game-info h4 {
    font-size: 14px;
    color: white;
    margin-bottom: 3px;
}

.game-info p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.play-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: #00d4ff;
    transform: scale(1.1);
}

/* Tournaments List */
.tournaments-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.tournament-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    position: relative;
}

.tournament-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    background: #ff3366;
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: 15px;
    text-transform: uppercase;
}

.tournament-badge.upcoming {
    background: #ffa500;
}

.tournament-card h4 {
    font-size: 16px;
    color: white;
    margin-bottom: 5px;
}

.tournament-card p {
    font-size: 14px;
    color: #00d4ff;
    margin-bottom: 10px;
    font-weight: 600;
}

.tournament-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.tournament-meta i {
    margin-right: 5px;
}

.join-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

/* Bottom Navigation */
.bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 100;
    flex-shrink: 0;
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
}

.nav-item i {
    font-size: 20px;
}

.nav-item span {
    font-size: 11px;
    font-weight: 600;
}

.nav-item.active {
    color: #00d4ff;
}

.nav-item:hover {
    color: #00d4ff;
}

/* Games Page */
.categories-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.categories-scroll::-webkit-scrollbar {
    height: 4px;
}

.categories-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.categories-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.5);
    border-radius: 2px;
}

.category-chip {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: white;
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-chip:hover {
    background: rgba(0, 212, 255, 0.2);
}

.category-chip.active {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    border-color: #00d4ff;
}

.games-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.game-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
    transition: all 0.3s ease;
}

.game-item:hover {
    border-color: #00d4ff;
    transform: translateX(5px);
}

.game-thumb {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.game-details {
    flex: 1;
}

.game-details h4 {
    font-size: 16px;
    color: white;
    margin-bottom: 3px;
}

.game-details p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.play-btn-small {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn-small:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

/* Tournaments Page */
.tabs-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: rgba(0, 212, 255, 0.2);
}

.tab-btn.active {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    border-color: #00d4ff;
}

.tournaments-full-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tournament-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
}

.tournament-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.live-badge {
    padding: 5px 12px;
    background: rgba(255, 51, 102, 0.2);
    color: #ff3366;
    font-size: 12px;
    font-weight: 700;
    border-radius: 15px;
    border: 1px solid #ff3366;
}

.upcoming-badge {
    padding: 5px 12px;
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    font-size: 12px;
    font-weight: 700;
    border-radius: 15px;
    border: 1px solid #ffa500;
}

.prize {
    font-size: 16px;
    font-weight: 700;
    color: #00d4ff;
}

.tournament-item h4 {
    font-size: 16px;
    color: white;
    margin-bottom: 5px;
}

.tournament-item > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.tournament-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.tournament-stats i {
    margin-right: 5px;
}

.action-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn.primary {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    color: white;
}

.action-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

/* Profile Page */
.profile-header {
    text-align: center;
    padding: 30px 0;
    margin-bottom: 20px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 36px;
    color: white;
}

.profile-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: white;
    margin-bottom: 5px;
}

.profile-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 15px;
}

.edit-profile-btn {
    padding: 10px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.edit-profile-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: #00d4ff;
}

.profile-stats {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 20px;
}

.profile-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-stat .stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #00d4ff;
}

.profile-stat .stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.profile-menu {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    transform: translateX(5px);
}

.menu-item i:first-child {
    font-size: 20px;
    color: #00d4ff;
    width: 24px;
}

.menu-item span {
    flex: 1;
    font-weight: 600;
}

.menu-item i:last-child {
    color: rgba(255, 255, 255, 0.3);
}

.menu-item.logout {
    border-color: rgba(255, 51, 102, 0.3);
}

.menu-item.logout i:first-child {
    color: #ff3366;
}

/* Side Drawer */
.side-drawer {
    position: absolute;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: 200;
    overflow-y: auto;
}

.side-drawer.active {
    left: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.drawer-close {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.drawer-close:hover {
    background: rgba(255, 51, 102, 0.3);
}

.drawer-menu {
    padding: 10px;
}

.drawer-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.drawer-item:hover {
    background: rgba(0, 212, 255, 0.1);
}

.drawer-item i {
    font-size: 18px;
    color: #00d4ff;
    width: 24px;
}

.drawer-item span {
    font-weight: 600;
}

.drawer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 15px 0;
}

/* Drawer Overlay */
.drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 150;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
    .preview-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .device-selector {
        width: 100%;
        justify-content: center;
    }

    .samsung-device .device-frame,
    .iphone-device .device-frame {
        width: 340px;
        height: 700px;
    }

    .mobile-content {
        padding: 15px;
        padding-bottom: 85px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .preview-header {
        padding: 15px;
    }

    .samsung-device .device-frame,
    .iphone-device .device-frame {
        width: 300px;
        height: 620px;
        border-radius: 35px;
        padding: 10px;
    }

    .samsung-device .device-screen,
    .iphone-device .device-screen {
        border-radius: 28px;
    }

    .mobile-content {
        padding: 12px;
        padding-bottom: 80px;
    }

    .hero-banner {
        padding: 20px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .banner-image {
        display: none;
    }

    .stats-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1 1 calc(50% - 5px);
        min-width: 0;
    }

    .bottom-nav {
        padding: 8px 0;
    }

    .nav-item i {
        font-size: 18px;
    }

    .nav-item span {
        font-size: 10px;
    }
}

/* Extra small devices (phones, 360px and down) */
@media (max-width: 360px) {
    .samsung-device .device-frame,
    .iphone-device .device-frame {
        width: 280px;
        height: 580px;
    }

    .mobile-content {
        padding: 10px;
        padding-bottom: 75px;
    }

    .stats-container {
        flex-direction: column;
        gap: 8px;
    }

    .stat-card {
        flex: 1 1 100%;
        padding: 12px;
    }

    .hero-banner {
        padding: 15px;
    }

    .banner-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .banner-content h2 {
        font-size: 16px;
    }

    .section-header h3 {
        font-size: 15px;
    }

    .banner-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .games-grid {
        gap: 10px;
    }

    .section-header h3 {
        font-size: 16px;
    }

    .game-card {
        padding: 12px;
    }

    .tournament-card {
        padding: 15px;
    }
}
