        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* Android-specific fixes */
        @media screen and (-webkit-min-device-pixel-ratio: 0) {
            select,
            textarea,
            input {
                font-size: 16px !important;
                -webkit-appearance: none;
                -webkit-border-radius: 0;
            }
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            background: #0B0B0D;
            color: #FFFFFF;
            overflow-x: hidden;
            overflow-y: auto;
            line-height: 1.6;
            min-height: 100vh;
            margin: 0;
            padding: 0;
            width: 100%;
            max-width: 100vw;
            /* Android scrolling fixes */
            -webkit-overflow-scrolling: touch;
            touch-action: manipulation;
        }
        
        html {
            width: 100%;
            max-width: 100vw;
            overflow-x: hidden;
        }
        
        /* App States - CRITICAL: Only show one screen at a time */
        .app-state {
            display: none !important;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            max-width: 100vw;
            min-height: 100vh;
            z-index: 1;
            /* Android scrolling fixes */
            overflow-y: auto;
            overflow-x: hidden;
            -webkit-overflow-scrolling: touch;
        }
        
        .app-state.active {
            display: flex !important;
        }
        
        /* Splash Screen */
        .splash-screen {
            background: linear-gradient(135deg, #0B0B0D 0%, #1F2024 50%, #0B0B0D 100%);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .splash-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(45deg, transparent 30%, rgba(225, 6, 0, 0.1) 50%, transparent 70%),
                linear-gradient(-45deg, transparent 30%, rgba(225, 6, 0, 0.05) 50%, transparent 70%);
            animation: bgShift 4s ease-in-out infinite;
        }
        
        @keyframes bgShift {
            0%, 100% { transform: translateX(-20px); }
            50% { transform: translateX(20px); }
        }
        
        .loading-video {
            width: 300px;
            height: 300px;
            border-radius: 20px;
            z-index: 2;
            object-fit: cover;
            box-shadow: 0 0 40px rgba(225, 6, 0, 0.3);
        }
        
        @media (max-width: 640px) {
            .loading-video {
                width: 250px;
                height: 250px;
            }
        }
        
        .splash-logo {
            margin-bottom: 24px;
            z-index: 2;
            /* Remove pulsing/glow boxy feel */
            animation: none;
            background: transparent;
            border: none;
            padding: 0;
        }
        
        .splash-logo-img {
            width: 180px;
            height: 180px;
            /* Remove square red glow */
            filter: none;
            background: transparent !important;
            border: none !important;
            border-radius: 12px !important;
            box-shadow: none !important;
            outline: none !important;
            padding: 0 !important;
            margin: 0 !important;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }
        
        .splash-title {
            font-size: 48px;
            font-weight: 800;
            color: #FFFFFF;
            letter-spacing: -2px;
            margin-bottom: 16px;
            z-index: 2;
            text-shadow: 0 0 30px rgba(225, 6, 0, 0.3);
        }
        
        .splash-subtitle {
            font-size: 16px;
            color: #B5B7BD;
            letter-spacing: 2px;
            text-transform: uppercase;
            z-index: 2;
        }
        
        /* Onboarding */
        .onboarding {
            background: #0B0B0D;
            flex-direction: column;
        }
        
        .onboarding-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px;
            text-align: center;
        }
        
        .onboarding-emoji {
            font-size: 100px;
            margin-bottom: 32px;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }
        
        .onboarding-title {
            font-size: 36px;
            font-weight: 800;
            color: #FFFFFF;
            margin-bottom: 16px;
            letter-spacing: -1px;
        }
        
        .onboarding-description {
            font-size: 18px;
            color: #B5B7BD;
            margin-bottom: 40px;
            max-width: 500px;
            line-height: 1.6;
        }
        
        .progress-dots {
            display: flex;
            gap: 12px;
            margin-bottom: 40px;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 6px;
            background: #1F2024;
            transition: all 0.3s;
        }
        
        .dot.active {
            background: #E10600;
            width: 32px;
            box-shadow: 0 0 12px rgba(225, 6, 0, 0.5);
        }
        
        .onboarding-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 40px 40px;
        }
        
        .btn {
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            font-size: 16px;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #E10600, #FF2D2D);
            color: #FFFFFF;
            box-shadow: 0 4px 16px rgba(225, 6, 0, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(225, 6, 0, 0.4);
        }
        
        .btn-secondary {
            background: transparent;
            color: #B5B7BD;
            border: 2px solid #1F2024;
        }
        
        .btn-secondary:hover {
            background: #131316;
            color: #FFFFFF;
            border-color: #E10600;
        }
        
        /* Main App */
        .main-app {
            background: #0B0B0D;
            flex-direction: column;
            overflow-y: auto;
        }
        
        /* Responsive Layout */
        .app-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            width: 100%;
            max-width: 100vw;
            overflow-x: hidden;
        }
        
        /* Desktop Header */
        .desktop-header {
            display: none;
            justify-content: space-between;
            align-items: center;
            padding: 24px 40px;
            border-bottom: 1px solid #1F2024;
            background: rgba(11, 11, 13, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .desktop-header.visible {
            display: flex;
        }
        
        @media (min-width: 768px) {
            .desktop-header.visible {
                display: flex;
            }
            
            .mobile-tab-bar {
                display: none !important;
            }
        }
        
        @media (max-width: 767px) {
            .desktop-header {
                display: none !important;
            }
        }
        
        @media (min-width: 768px) {
            .main-content {
                padding: 40px;
            }
        }
        
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        
        .brand-icon {
            display: flex;
            align-items: center;
        }
        
        .brand-logo-img {
            width: 64px;
            height: 64px;
            filter: drop-shadow(0 0 8px rgba(225, 6, 0, 0.3));
            background: transparent !important;
            border: none !important;
            border-radius: 0 !important;
            box-shadow: none !important;
            outline: none !important;
            padding: 0 !important;
            margin: 0 !important;
        }
        
        .brand-text {
            font-size: 24px;
            font-weight: 800;
            color: #FFFFFF;
        }
        
        .version-number {
            font-size: 12px;
            font-weight: 600;
            color: #E10600;
            margin-top: 2px;
            padding: 2px 6px;
            border: 2px solid #E10600;
            border-radius: 6px;
            background-color: rgba(225, 6, 0, 0.15);
            letter-spacing: 1px;
            text-shadow: 0 0 8px rgba(225, 6, 0, 0.5);
        }
        
        .desktop-nav {
            display: flex;
            gap: 32px;
        }
        
        .desktop-nav-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s;
            background: transparent;
            border: none;
            color: #B5B7BD;
            font-size: 16px;
            font-weight: 600;
        }
        
        .desktop-nav-item:hover {
            background: #131316;
            color: #FFFFFF;
        }
        
        .desktop-nav-item.active {
            background: #E10600;
            color: #FFFFFF;
            box-shadow: 0 4px 16px rgba(225, 6, 0, 0.3);
        }
        
        .desktop-nav-icon {
            font-size: 20px;
        }
        
        .logout-button {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s;
            background: transparent;
            border: 2px solid #1F2024;
            color: #B5B7BD;
            font-size: 14px;
            font-weight: 600;
        }
        
        .logout-button:hover {
            background: #1F2024;
            color: #FFFFFF;
            border-color: #E10600;
        }
        
        /* Tab Content */
        .tab-content {
            display: none;
            min-height: calc(100vh - 160px);
            width: 100%;
            max-width: 100vw;
            overflow-x: hidden;
            box-sizing: border-box;
        }
        
        .tab-content.active {
            display: block;
        }
        
        @media (max-width: 767px) {
            .tab-content {
                padding: 20px;
                padding-bottom: 100px;
                width: 100%;
                max-width: 100vw;
                box-sizing: border-box;
            }
        }
        
        /* Instagram-style Social Media (dark, simplified) */
        .instagram-header {
            background: transparent;
            border-bottom: none;
            padding: 0;
            position: static;
            top: auto;
            z-index: auto;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .instagram-header h1 { color: #FFFFFF; }
        
        .header-actions {
            display: flex;
            gap: 16px;
        }
        
        .header-btn {
            background: none;
            border: none;
            font-size: 24px;
            color: #262626;
            cursor: pointer;
            padding: 8px;
        }
        
        .stories-container { display: none !important; }
        
        .stories-scroll {
            display: flex;
            gap: 16px;
            padding: 0 16px;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        
        .stories-scroll::-webkit-scrollbar {
            display: none;
        }
        
        .story-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            min-width: 70px;
            cursor: pointer;
        }
        
        .story-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 2px solid #E10600;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #F8F9FA;
            position: relative;
        }
        
        .story-avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .story-item.add-story .story-avatar {
            border: 2px dashed #DBDBDB;
            background: #F8F9FA;
        }
        
        .story-item.add-story .story-avatar i {
            color: #8E8E8E;
            font-size: 20px;
        }
        
        .story-item span {
            font-size: 12px;
            color: #262626;
            text-align: center;
            max-width: 70px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .instagram-feed { background: transparent; min-height: 400px; }
        
        .instagram-post {
            border-bottom: 1px solid #DBDBDB;
            margin-bottom: 0;
        }
        
        .post-header {
            display: flex;
            align-items: center;
            padding: 14px 16px;
            gap: 12px;
        }
        
        .post-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .post-user-info {
            flex: 1;
        }
        
        .post-username {
            font-weight: 600;
            color: #262626;
            font-size: 14px;
        }
        
        .post-location {
            font-size: 12px;
            color: #8E8E8E;
        }
        
        .post-options {
            background: none;
            border: none;
            font-size: 18px;
            color: #262626;
            cursor: pointer;
        }
        
        .post-image {
            width: 100%;
            aspect-ratio: 1;
            object-fit: cover;
        }
        
        .post-actions {
            display: flex;
            align-items: center;
            padding: 8px 16px;
            gap: 16px;
        }
        
        .post-action-btn {
            background: none;
            border: none;
            font-size: 24px;
            color: #262626;
            cursor: pointer;
            padding: 4px;
        }
        
        .post-action-btn.liked {
            color: #E10600;
        }
        
        .post-action-btn.saved {
            color: #262626;
        }
        
        .post-likes {
            padding: 0 16px 8px;
            font-weight: 600;
            color: #262626;
            font-size: 14px;
        }
        
        .post-caption {
            padding: 0 16px 8px;
            font-size: 14px;
            color: #262626;
            line-height: 1.4;
        }
        
        .post-caption .username {
            font-weight: 600;
        }
        
        .post-comments {
            padding: 0 16px 8px;
        }
        
        .view-comments {
            color: #8E8E8E;
            font-size: 14px;
            cursor: pointer;
        }
        
        .post-time {
            padding: 0 16px 16px;
            color: #8E8E8E;
            font-size: 12px;
        }
        
        .add-comment {
            display: flex;
            align-items: center;
            padding: 16px;
            border-top: 1px solid #DBDBDB;
            gap: 12px;
        }
        
        .comment-input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 14px;
            color: #262626;
            background: none;
        }
        
        .comment-input::placeholder {
            color: #8E8E8E;
        }
        
        .post-btn {
            background: none;
            border: none;
            color: #0095F6;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
        }
        
        .post-btn:disabled {
            color: #8E8E8E;
            cursor: not-allowed;
        }
        
        /* Profile (dark) */
        .instagram-profile-header {
            background: transparent;
            padding: 20px 16px;
            border-bottom: 1px solid #1F2024;
        }
        
        .profile-info-section {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-bottom: 20px;
        }
        
        .profile-avatar-large {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid #E10600;
        }
        
        .profile-avatar-large img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .profile-stats-grid {
            display: flex;
            gap: 30px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            display: block;
            font-weight: 600;
            font-size: 18px;
            color: #262626;
        }
        
        .stat-label {
            font-size: 14px;
            color: #8E8E8E;
        }
        
        .profile-details h2 {
            font-size: 16px;
            font-weight: 600;
            color: #262626;
            margin: 0 0 8px 0;
        }
        
        .profile-details p {
            font-size: 14px;
            color: #262626;
            margin: 0 0 16px 0;
            line-height: 1.4;
        }
        
        .profile-actions {
            display: flex;
            gap: 8px;
        }
        
        .profile-action-btn {
            flex: 1;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: 1px solid #2A2B2F;
            background: #1F2024;
            color: #FFFFFF;
        }
        
        .profile-action-btn.primary {
            background: #0095F6;
            color: #FFFFFF;
            border-color: #0095F6;
        }
        
        .profile-tabs {
            display: flex;
            background: transparent;
            border-bottom: 1px solid #1F2024;
        }
        .profile-tab {
            flex: 1;
            padding: 16px;
            background: none;
            border: none;
            color: #8E8E8E;
            font-size: 20px;
            cursor: pointer;
            border-bottom: 2px solid transparent;
        }
        
        .profile-tab.active {
            color: #262626;
            border-bottom-color: #262626;
        }
        
        .profile-tab-content {
            display: none;
            background: transparent;
        }
        
        .profile-tab-content.active {
            display: block;
        }
        
        .posts-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
        }
        
        .post-grid-item {
            aspect-ratio: 1;
            background: #F8F9FA;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            position: relative;
        }
        
        .post-grid-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .post-grid-item.video::after {
            content: '▶';
            position: absolute;
            color: #FFFFFF;
            font-size: 24px;
            text-shadow: 0 0 4px rgba(0,0,0,0.5);
        }
        
        .empty-posts {
            grid-column: 1 / -1;
            text-align: center;
            padding: 60px 20px;
        }
        
        .empty-posts .empty-icon {
            font-size: 48px;
            margin-bottom: 16px;
        }
        
        .empty-posts .empty-title {
            font-size: 18px;
            font-weight: 600;
            color: #262626;
            margin-bottom: 8px;
        }
        
        .empty-posts .empty-subtitle {
            font-size: 14px;
            color: #8E8E8E;
            margin-bottom: 20px;
        }
        
        .manage-profile-content {
            background: #0B0B0D;
            min-height: 100vh;
        }

        /* Home Tab */
        .hero-section {
            text-align: center;
            padding: 80px 40px;
            background: linear-gradient(135deg, #0B0B0D, #131316);
            border-radius: 24px;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(45deg, transparent 30%, rgba(225, 6, 0, 0.1) 50%, transparent 70%);
            animation: heroShine 3s ease-in-out infinite;
        }
        
        @keyframes heroShine {
            0%, 100% { transform: translateX(-100%); }
            50% { transform: translateX(100%); }
        }
        
        .hero-title {
            font-size: 56px;
            font-weight: 800;
            color: #E10600;
            letter-spacing: -2px;
            margin-bottom: 16px;
            text-shadow: 0 0 30px rgba(225, 6, 0, 0.3);
            position: relative;
            z-index: 2;
        }
        
        @media (min-width: 1024px) {
            .hero-title {
                font-size: 72px;
            }
        }
        
        .hero-subtitle {
            font-size: 20px;
            color: #B5B7BD;
            margin-bottom: 32px;
            position: relative;
            z-index: 2;
        }
        
        .cta-button {
            background: linear-gradient(135deg, #E10600, #FF2D2D);
            color: #FFFFFF;
            padding: 20px 40px;
            border-radius: 16px;
            font-size: 18px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 8px 24px rgba(225, 6, 0, 0.3);
            position: relative;
            z-index: 2;
        }
        
        .cta-button:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(225, 6, 0, 0.4);
        }
        
        /* Cards */
        .card {
            background: #131316;
            border-radius: 24px;
            padding: 32px;
            margin-bottom: 32px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            border: 1px solid #1F2024;
            transition: all 0.3s;
        }
        
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
        }
        
        .card-title {
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 24px;
            color: #FFFFFF;
        }
        
        .content-grid {
            display: grid;
            gap: 32px;
            grid-template-columns: 1fr;
        }
        
        @media (min-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        /* Club Styles */
        .club-header {
            text-align: center;
            padding: 60px 40px;
            background: linear-gradient(135deg, #0B0B0D, #131316);
            border-radius: 24px;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .club-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle, rgba(225, 6, 0, 0.1) 0%, transparent 50%);
            animation: rotate 10s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .logo {
            width: 140px;
            height: 140px;
            margin: 0 auto 24px;
            background: linear-gradient(135deg, #131316, #1F2024);
            border-radius: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 12px 32px rgba(225, 6, 0, 0.3);
            position: relative;
            z-index: 2;
        }
        
        .shield {
            font-size: 70px;
            color: #E10600;
        }
        
        .club-name {
            font-size: 42px;
            font-weight: 800;
            letter-spacing: -2px;
            margin-bottom: 12px;
            position: relative;
            z-index: 2;
        }
        
        .club-subtitle {
            font-size: 14px;
            color: #B5B7BD;
            letter-spacing: 1px;
            margin-bottom: 32px;
            position: relative;
            z-index: 2;
        }
        
        .quick-stats {
            display: flex;
            gap: 24px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }
        
        .stat-pill {
            text-align: center;
            background: rgba(19, 19, 22, 0.8);
            padding: 16px 24px;
            border-radius: 12px;
            min-width: 90px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(225, 6, 0, 0.2);
        }
        
        .stat-value {
            font-size: 24px;
            font-weight: 700;
            color: #E10600;
            letter-spacing: -1px;
        }
        
        .stat-label {
            font-size: 11px;
            color: #B5B7BD;
            letter-spacing: 1px;
            margin-top: 4px;
        }
        
        /* Formation Section */
        .formation-section {
            margin-bottom: 40px;
        }
        
        .section-title {
            font-size: 24px;
            font-weight: 700;
            letter-spacing: -1px;
            margin-bottom: 24px;
            color: #FFFFFF;
        }
        
        .formation-buttons {
            display: flex;
            gap: 16px;
            margin-bottom: 32px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .formation-btn {
            background: #131316;
            color: #B5B7BD;
            border: 2px solid transparent;
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 16px;
            min-width: 100px;
        }
        
        .formation-btn:hover {
            background: #1F2024;
            color: #FFFFFF;
            transform: translateY(-2px);
        }
        
        .formation-btn.active {
            background: #E10600;
            color: #FFFFFF;
            border-color: #E10600;
            box-shadow: 0 4px 16px rgba(225, 6, 0, 0.3);
        }
        
        /* Street Pitch */
        .pitch-container {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
        }
        
        .street-pitch {
            width: 100%;
            max-width: 500px;
            height: 600px;
            background: linear-gradient(135deg, #737373, #525252, #404040);
            border-radius: 24px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
        }
        
        @media (min-width: 1024px) {
            .street-pitch {
                max-width: 600px;
                height: 700px;
            }
        }
        
        .pitch-markings {
            position: absolute;
            width: 100%;
            height: 100%;
        }
        
        .center-line {
            position: absolute;
            width: 100%;
            height: 3px;
            background: rgba(255, 255, 255, 0.9);
            top: 50%;
            transform: translateY(-50%);
        }
        
        .center-circle {
            position: absolute;
            width: 120px;
            height: 120px;
            border: 3px solid rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }
        
        .goal-area {
            position: absolute;
            width: 30%;
            height: 18%;
            border: 3px solid rgba(255, 255, 255, 0.9);
            border-radius: 6px;
            left: 35%;
        }
        
        .goal-top {
            top: 4%;
        }
        
        .goal-bottom {
            bottom: 4%;
        }
        
        .corner-dot {
            position: absolute;
            width: 8px;
            height: 8px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
        }
        
        .corner-dot.top-left { top: 6%; left: 6%; }
        .corner-dot.top-right { top: 6%; right: 6%; }
        .corner-dot.bottom-left { bottom: 6%; left: 6%; }
        .corner-dot.bottom-right { bottom: 6%; right: 6%; }
        
        /* Players */
        .player {
            position: absolute;
            text-align: center;
            width: 70px;
            transition: all 0.5s ease;
            cursor: pointer;
        }
        
        .player:hover {
            transform: scale(1.1);
            z-index: 10;
        }
        
        .player-circle {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #3B82F6, #1E40AF);
            border-radius: 35px;
            border: 3px solid #FFFFFF;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 8px;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
            position: relative;
        }
        
        .player-number {
            font-size: 20px;
            font-weight: 700;
            color: #FFFFFF;
        }
        
        .player-flag {
            position: absolute;
            top: -8px;
            right: -8px;
            width: 28px;
            height: 28px;
            background: #FFFFFF;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }
        
        .player-name {
            font-size: 13px;
            font-weight: 600;
            color: #FFFFFF;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
        }
        
        /* Statistics Grid */
        .stats-grid {
            display: grid;
            gap: 24px;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            margin-bottom: 40px;
        }
        
        .stat-card {
            background: #131316;
            padding: 32px 24px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid #1F2024;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(225, 6, 0, 0.1), transparent);
            transition: left 0.5s;
        }
        
        .stat-card:hover::before {
            left: 100%;
        }
        
        .stat-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(225, 6, 0, 0.2);
            border-color: rgba(225, 6, 0, 0.3);
        }
        
        .stat-icon {
            font-size: 32px;
            color: #E10600;
            margin-bottom: 16px;
        }
        
        .stat-card-value {
            font-size: 36px;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 8px;
            color: #FFFFFF;
        }
        
        .stat-card-title {
            font-size: 12px;
            color: #B5B7BD;
            letter-spacing: 1px;
            font-weight: 600;
        }
        
        /* Mobile Tab Bar */
        .mobile-tab-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            max-width: 100vw;
            background: rgba(11, 11, 13, 0.95);
            backdrop-filter: blur(10px);
            border-top: 1px solid #1F2024;
            display: none; /* Hidden by default - only show when logged in */
            padding: 12px 0 24px;
            z-index: 100;
        }
        
        .mobile-tab-bar.visible {
            display: flex;
        }
        
        .tab {
            flex: 1;
            text-align: center;
            padding: 8px;
            cursor: pointer;
            transition: all 0.3s;
            min-width: 0;
            box-sizing: border-box;
            color: #B5B7BD;
        }
        
        .tab.active {
            color: #E10600;
        }
        
        .tab-icon {
            font-size: 24px;
            margin-bottom: 4px;
            transition: all 0.3s;
            display: block;
        }
        
        .tab.active .tab-icon {
            transform: scale(1.1);
        }
        
        .tab-text {
            font-size: 11px;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        /* App Footer */
        .app-footer {
            background: rgba(11, 11, 13, 0.95);
            backdrop-filter: blur(10px);
            border-top: 1px solid #1F2024;
            padding: 12px 0;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 99;
        }
        
        .footer-content {
            text-align: center;
            padding: 0 20px;
        }
        
        .footer-text {
            font-size: 11px;
            color: #B5B7BD;
            font-weight: 500;
            letter-spacing: 0.5px;
        }
        
        @media (min-width: 768px) {
            .app-footer {
                display: none;
            }
        }
        
        /* Empty State Styles */
        .empty-state {
            text-align: center;
            padding: 40px 20px;
            color: #B5B7BD;
        }
        
        .empty-icon {
            font-size: 48px;
            margin-bottom: 16px;
            opacity: 0.6;
        }
        
        .empty-title {
            font-size: 18px;
            font-weight: 600;
            color: #FFFFFF;
            margin-bottom: 8px;
        }
        
        .empty-subtitle {
            font-size: 14px;
            color: #B5B7BD;
            line-height: 1.4;
        }

        /* Social Media Feed Styles */
        .social-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid #2A2C31;
        }
        
        .social-header h2 {
            color: #FFFFFF;
            font-size: 24px;
            font-weight: 700;
            margin: 0;
        }
        
        .social-feed {
            padding: 20px;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .post {
            background: #1A1B23;
            border-radius: 12px;
            margin-bottom: 20px;
            padding: 20px;
            border: 1px solid #2A2C31;
        }
        
        .post-header {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
        }
        
        .post-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #E10600;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            font-weight: 600;
            margin-right: 12px;
        }
        
        .post-user-info {
            flex: 1;
        }
        
        .post-username {
            color: #FFFFFF;
            font-weight: 600;
            font-size: 14px;
        }
        
        .post-time {
            color: #B5B7BD;
            font-size: 12px;
        }
        
        .post-status {
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        .post-status.pending {
            background: #FEF3C7;
            color: #92400E;
        }
        
        .post-status.approved {
            background: #D1FAE5;
            color: #065F46;
        }
        
        .post-content {
            color: #FFFFFF;
            line-height: 1.5;
            margin-bottom: 16px;
        }
        
        .post-image {
            width: 100%;
            border-radius: 8px;
            margin-bottom: 16px;
        }
        
        .post-actions {
            display: flex;
            align-items: center;
            gap: 20px;
            padding-top: 16px;
            border-top: 1px solid #2A2C31;
        }
        
        .post-action {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #B5B7BD;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .post-action:hover {
            color: #E10600;
        }
        
        .post-action.liked {
            color: #E10600;
        }
        
        .post-action.shared {
            color: #00FF88;
        }
        
        .post-action-icon {
            font-size: 18px;
        }
        
        .post-action-text {
            font-size: 14px;
            font-weight: 500;
        }
        
        /* Reactions Section */
        .reactions-section {
            margin-top: 12px;
            padding: 0 16px;
        }
        
        .reactions-bar {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 8px 0;
        }
        
        .reaction-btn {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 6px 12px;
            background: rgba(47, 48, 55, 0.5);
            border: 1px solid #2F3037;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
        }
        
        .reaction-btn:hover {
            background: rgba(225, 6, 0, 0.1);
            border-color: #E10600;
            transform: translateY(-1px);
        }
        .reaction-btn.active {
            background: rgba(225, 6, 0, 0.2);
            border-color: #E10600;
            color: #E10600;
        }
        
        .reaction-icon {
            font-size: 16px;
        }
        
        .reaction-count {
            font-size: 12px;
            font-weight: 600;
            color: #B5B7BD;
        }
        
        .reaction-btn.active .reaction-count {
            color: #E10600;
        }
        
        /* Follow System Styles */
        .follower-item, .following-item {
            transition: all 0.3s ease;
        }
        
        .follower-item:hover, .following-item:hover {
            background: rgba(225, 6, 0, 0.05);
            border-color: #E10600;
        }
        
        .btn.following {
            background: #E10600;
            color: white;
        }
        
        .btn.following:hover {
            background: #c10500;
        }
        
        .empty-state, .error-state {
            text-align: center;
            padding: 40px 20px;
            color: #B5B7BD;
        }
        
        .empty-state {
            font-style: italic;
        }
        
        .error-state {
            color: #E10600;
        }
        
        /* Post Owner Actions */
        .post-header-actions {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }
        
        .post-actions-right {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .post-owner-actions {
            display: flex;
            gap: 8px;
        }
        
        .report-btn {
            color: #FF6B6B;
        }
        
        .report-btn:hover {
            background: rgba(255, 107, 107, 0.1);
            color: #FF4444;
        }
        
        .post-action-btn {
            background: none;
            border: none;
            color: #B5B7BD;
            cursor: pointer;
            padding: 4px;
            border-radius: 4px;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        
        .post-action-btn:hover {
            background: rgba(225, 6, 0, 0.1);
            color: #E10600;
        }
        
        /* Comment Actions */
        .comment-actions {
            display: flex;
            gap: 4px;
            margin-left: auto;
        }
        
        .comment-action-btn {
            background: none;
            border: none;
            color: #B5B7BD;
            cursor: pointer;
            padding: 2px 4px;
            border-radius: 3px;
            transition: all 0.3s ease;
            font-size: 12px;
            opacity: 0;
        }
        
        .comment:hover .comment-action-btn {
            opacity: 1;
        }
        
        .comment-action-btn:hover {
            background: rgba(225, 6, 0, 0.1);
            color: #E10600;
        }
        
        /* Reply System */
        .comment-footer {
            margin-top: 8px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .reply-btn {
            background: none;
            border: none;
            color: #B5B7BD;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 4px;
            transition: all 0.3s ease;
            font-size: 12px;
        }
        
        .reply-btn:hover {
            background: rgba(225, 6, 0, 0.1);
            color: #E10600;
        }
        
        .reply-form {
            margin-top: 8px;
            padding-left: 20px;
            border-left: 2px solid #2A2C31;
        }
        
        .reply-input {
            display: flex;
            gap: 8px;
            align-items: center;
        }
        
        .reply-input input {
            flex: 1;
            background: #1F2024;
            border: 1px solid #2A2C31;
            border-radius: 20px;
            padding: 8px 12px;
            color: #FFFFFF;
            font-size: 14px;
        }
        
        .reply-input input:focus {
            outline: none;
            border-color: #E10600;
        }
        
        .reply-send-btn {
            background: #E10600;
            border: none;
            color: white;
            padding: 8px 12px;
            border-radius: 20px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .reply-send-btn:hover {
            background: #c10500;
        }
        
        .replies {
            margin-top: 8px;
            padding-left: 20px;
            border-left: 2px solid #2A2C31;
        }
        
        .reply {
            display: flex;
            margin-bottom: 8px;
            padding: 8px;
            background: rgba(47, 48, 55, 0.3);
            border-radius: 8px;
        }
        
        .reply-avatar {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #E10600;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 12px;
            margin-right: 8px;
            flex-shrink: 0;
        }
        
        .reply-content {
            flex: 1;
        }
        
        .reply-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 4px;
        }
        
        .reply-username {
            font-weight: 600;
            font-size: 12px;
            color: #FFFFFF;
        }
        
        .reply-time {
            font-size: 10px;
            color: #8E8E8E;
        }
        
        .reply-text {
            font-size: 12px;
            color: #B5B7BD;
            line-height: 1.4;
        }
        
        /* Analytics Modal */
        .analytics-modal {
            max-width: 600px;
        }
        
        .analytics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 16px;
            margin-bottom: 24px;
        }
        
        .analytics-card {
            background: rgba(47, 48, 55, 0.5);
            border: 1px solid #2F3037;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .analytics-card:hover {
            background: rgba(225, 6, 0, 0.1);
            border-color: #E10600;
            transform: translateY(-2px);
        }
        
        .analytics-icon {
            font-size: 24px;
            margin-bottom: 8px;
        }
        
        .analytics-value {
            font-size: 24px;
            font-weight: bold;
            color: #FFFFFF;
            margin-bottom: 4px;
        }
        
        .analytics-label {
            font-size: 12px;
            color: #B5B7BD;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .analytics-summary {
            background: rgba(47, 48, 55, 0.3);
            border-radius: 8px;
            padding: 16px;
            margin-top: 16px;
        }
        
        .analytics-summary h4 {
            color: #FFFFFF;
            margin-bottom: 12px;
            font-size: 16px;
        }
        
        .analytics-summary p {
            color: #B5B7BD;
            margin-bottom: 8px;
            font-size: 14px;
        }
        
        .analytics-summary strong {
            color: #E10600;
        }
        
        .comments-section {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid #2A2C31;
        }
        
        .comment {
            display: flex;
            margin-bottom: 12px;
        }
        
        .comment-avatar {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #374151;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            font-size: 10px;
            font-weight: 600;
            margin-right: 8px;
            flex-shrink: 0;
        }
        
        .comment-content {
            flex: 1;
        }
        
        .comment-username {
            color: #FFFFFF;
            font-weight: 600;
            font-size: 12px;
            margin-right: 8px;
        }
        
        .comment-text {
            color: #D1D5DB;
            font-size: 14px;
            line-height: 1.4;
        }
        
        .comment-input {
            display: flex;
            margin-top: 12px;
        }
        
        .comment-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 4px;
        }
        
        .comment-time {
            color: #6B7280;
            font-size: 11px;
        }
        
        .comments-list {
            max-height: 400px;
            overflow-y: auto;
        }
        
        .comment-input input {
            flex: 1;
            background: #2A2C31;
            border: 1px solid #374151;
            border-radius: 20px;
            padding: 8px 16px;
            color: #FFFFFF;
            font-size: 14px;
        }
        
        .comment-input input:focus {
            outline: none;
            border-color: #E10600;
        }
        
        .comment-send-btn {
            background: #E10600;
            border: none;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            cursor: pointer;
            margin-left: 8px;
        }
        
        /* Updates Tab Styles */
        .updates-header {
            padding: 20px;
            border-bottom: 1px solid #2A2C31;
        }
        
        .updates-header h2 {
            color: #FFFFFF;
            font-size: 24px;
            font-weight: 700;
            margin: 0;
        }
        
        .updates-container {
            padding: 20px;
        }
        
        .update-item {
            background: #1A1B23;
            border-radius: 8px;
            padding: 16px;
            margin-bottom: 12px;
            border-left: 4px solid #E10600;
        }
        
        .update-title {
            color: #FFFFFF;
            font-weight: 600;
            margin-bottom: 4px;
        }
        
        .update-text {
            color: #B5B7BD;
            font-size: 14px;
            line-height: 1.4;
        }
        
        .update-time {
            color: #6B7280;
            font-size: 12px;
            margin-top: 8px;
        }
        
        /* Pinnacle Events Credit */
        .pinnacle-credit {
            text-align: center;
            padding: 20px 0;
            margin-top: 20px;
            border-top: 1px solid rgba(31, 32, 36, 0.5);
        }
        
        .pinnacle-text {
            font-size: 12px;
            color: #FF1493;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
            animation: neonGlow 2s ease-in-out infinite alternate;
        }
        
        @keyframes neonGlow {
            from {
                text-shadow: 0 0 5px rgba(255, 20, 147, 0.5), 0 0 10px rgba(255, 20, 147, 0.3);
            }
            to {
                text-shadow: 0 0 10px rgba(255, 20, 147, 0.8), 0 0 20px rgba(255, 20, 147, 0.5), 0 0 30px rgba(255, 20, 147, 0.3);
            }
        }
        
        /* Formation Positions */
        .formation-2-2-1 .player:nth-child(1) { left: calc(50% - 35px); top: 82%; } /* GK */
        .formation-2-2-1 .player:nth-child(2) { left: calc(28% - 35px); top: 62%; } /* DEF */
        .formation-2-2-1 .player:nth-child(3) { left: calc(72% - 35px); top: 62%; } /* DEF */
        .formation-2-2-1 .player:nth-child(4) { left: calc(28% - 35px); top: 38%; } /* MID */
        .formation-2-2-1 .player:nth-child(5) { left: calc(72% - 35px); top: 38%; } /* MID */
        .formation-2-2-1 .player:nth-child(6) { left: calc(50% - 35px); top: 18%; } /* ST */
        
        .formation-1-3-1 .player:nth-child(1) { left: calc(50% - 35px); top: 82%; } /* GK */
        .formation-1-3-1 .player:nth-child(2) { left: calc(50% - 35px); top: 62%; } /* DEF */
        .formation-1-3-1 .player:nth-child(3) { left: calc(22% - 35px); top: 38%; } /* MID */
        .formation-1-3-1 .player:nth-child(4) { left: calc(50% - 35px); top: 38%; } /* MID */
        .formation-1-3-1 .player:nth-child(5) { left: calc(78% - 35px); top: 38%; } /* MID */
        .formation-1-3-1 .player:nth-child(6) { left: calc(50% - 35px); top: 18%; } /* ST */
        
        .formation-3-1-1 .player:nth-child(1) { left: calc(50% - 35px); top: 82%; } /* GK */
        .formation-3-1-1 .player:nth-child(2) { left: calc(22% - 35px); top: 62%; } /* DEF */
        .formation-3-1-1 .player:nth-child(3) { left: calc(50% - 35px); top: 62%; } /* DEF */
        .formation-3-1-1 .player:nth-child(4) { left: calc(78% - 35px); top: 62%; } /* DEF */
        .formation-3-1-1 .player:nth-child(5) { left: calc(50% - 35px); top: 38%; } /* MID */
        .formation-3-1-1 .player:nth-child(6) { left: calc(50% - 35px); top: 18%; } /* ST */
        
        /* Matches Styles */
        .matches-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 32px;
            padding: 0 40px;
        }
        
        @media (max-width: 767px) {
            .matches-header {
                padding: 0 20px;
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
        }
        
        .create-match-form {
            margin-bottom: 40px;
        }
        
        .form-grid {
            display: grid;
            gap: 24px;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            margin-bottom: 32px;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .form-group label {
            font-size: 14px;
            font-weight: 600;
            color: #B5B7BD;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }
        
        .form-group input,
        .form-group select {
            background: #1F2024;
            border: 2px solid #1F2024;
            border-radius: 12px;
            padding: 16px;
            color: #FFFFFF;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #E10600;
            box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.1);
        }
        
        .form-group input::placeholder {
            color: #B5B7BD;
        }
        
        .form-actions {
            display: flex;
            gap: 16px;
            justify-content: flex-end;
        }
        
        @media (max-width: 767px) {
            .form-actions {
                flex-direction: column;
            }
        }
        
        .matches-section {
            margin-bottom: 48px;
        }
        
        .section-subtitle {
            font-size: 20px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 24px;
            letter-spacing: 1px;
            padding: 0 40px;
        }
        
        @media (max-width: 767px) {
            .section-subtitle {
                padding: 0 20px;
            }
        }
        
        .matches-grid {
            display: grid;
            gap: 24px;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            padding: 0 40px;
        }
        
        @media (max-width: 767px) {
            .matches-grid {
                grid-template-columns: 1fr;
                padding: 0 20px;
            }
        }
        
        .match-card {
            background: #131316;
            border-radius: 20px;
            padding: 24px;
            border: 2px solid transparent;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .match-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(225, 6, 0, 0.05), transparent);
            transition: left 0.5s;
        }
        
        .match-card:hover::before {
            left: 100%;
        }
        
        .match-card:hover {
            transform: translateY(-4px);
            border-color: rgba(225, 6, 0, 0.3);
            box-shadow: 0 12px 32px rgba(225, 6, 0, 0.15);
        }
        
        .match-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .match-status {
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .match-status.upcoming {
            background: rgba(52, 152, 219, 0.2);
            color: #3498db;
        }
        
        .match-status.won {
            background: rgba(39, 174, 96, 0.2);
            color: #27ae60;
        }
        
        .match-status.lost {
            background: rgba(231, 76, 60, 0.2);
            color: #e74c3c;
        }
        
        .match-date {
            font-size: 14px;
            color: #B5B7BD;
            font-weight: 600;
        }
        
        .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        
        .team {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            position: relative;
        }
        
        .team-logo {
            font-size: 32px;
            margin-bottom: 8px;
        }
        
        .team-name {
            font-size: 14px;
            font-weight: 700;
            color: #FFFFFF;
            text-align: center;
            letter-spacing: 0.5px;
        }
        
        .team-score {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #E10600;
            color: #FFFFFF;
            width: 28px;
            height: 28px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            box-shadow: 0 2px 8px rgba(225, 6, 0, 0.3);
        }
        
        .match-vs {
            font-size: 18px;
            font-weight: 700;
            color: #B5B7BD;
            margin: 0 20px;
        }
        
        .match-details {
            margin-bottom: 20px;
            text-align: center;
        }
        
        .match-location,
        .match-type {
            font-size: 14px;
            color: #B5B7BD;
            margin-bottom: 4px;
        }
        
        .match-actions {
            display: flex;
            gap: 12px;
            justify-content: center;
        }
        
        .btn-small {
            padding: 10px 20px;
            border-radius: 10px;
            font-size: 12px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            letter-spacing: 0.5px;
        }
        
        .btn-small.btn-primary {
            background: linear-gradient(135deg, #E10600, #FF2D2D);
            color: #FFFFFF;
        }
        
        .btn-small.btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(225, 6, 0, 0.3);
        }
        
        .btn-small.btn-secondary {
            background: transparent;
            color: #B5B7BD;
            border: 2px solid #1F2024;
        }
        
        .btn-small.btn-secondary:hover {
            background: #1F2024;
            color: #FFFFFF;
            border-color: #E10600;
        }

        /* Signup Questions */
        .signup-questions {
            background: linear-gradient(135deg, #0B0B0D 0%, #1F2024 50%, #0B0B0D 100%);
            align-items: center;
            justify-content: flex-start;
            padding: 20px;
            position: relative;
            overflow-y: auto;
            overflow-x: hidden;
            min-height: 100vh;
            /* Android scrolling fixes */
            -webkit-overflow-scrolling: touch;
        }
        .signup-questions::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(45deg, transparent 30%, rgba(225, 6, 0, 0.1) 50%, transparent 70%);
            animation: bgShift 6s ease-in-out infinite;
        }
        
        .signup-container {
            background: rgba(19, 19, 22, 0.95);
            border-radius: 24px;
            padding: 40px;
            width: 100%;
            max-width: 600px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(225, 6, 0, 0.2);
            position: relative;
            z-index: 2;
            margin: 20px auto;
            /* Android scrolling fixes */
            overflow: visible;
            touch-action: auto;
        }
        
        @media (max-width: 640px) {
            .signup-container {
                padding: 24px;
                margin: 10px;
            }
        }
        
        .signup-progress {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .progress-bar {
            width: 100%;
            height: 6px;
            background: #1F2024;
            border-radius: 3px;
            margin-bottom: 12px;
            overflow: hidden;
        }
        
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #E10600, #FF2D2D);
            border-radius: 3px;
            transition: width 0.5s ease;
            box-shadow: 0 0 12px rgba(225, 6, 0, 0.5);
        }
        
        .progress-text {
            font-size: 14px;
            color: #B5B7BD;
            font-weight: 600;
        }
        
        .question-slide {
            display: none !important;
            text-align: center;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
        }
        
        .question-slide.active {
            display: flex !important;
        }
        
        .question-content {
            width: 100%;
        }
        
        .question-emoji {
            font-size: 60px;
            margin-bottom: 24px;
        }
        
        .question-title {
            font-size: 28px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }
        
        .question-subtitle {
            font-size: 16px;
            color: #B5B7BD;
            margin-bottom: 32px;
        }
        
        .question-hint {
            font-size: 14px;
            color: #B5B7BD;
            margin-top: 12px;
            font-style: italic;
        }
        
        .question-form {
            margin-bottom: 32px;
        }
        
        .question-input {
            width: 100%;
            background: #1F2024;
            border: 2px solid #1F2024;
            border-radius: 16px;
            padding: 18px 20px;
            color: #FFFFFF;
            font-size: 16px;
            margin-bottom: 16px;
            transition: all 0.3s;
        }
        
        .question-input:focus {
            outline: none;
            border-color: #E10600;
            box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.1);
        }
        
        .question-input::placeholder {
            color: #B5B7BD;
        }
        
        .question-select {
            width: 100%;
            background: #1F2024;
            border: 2px solid #1F2024;
            border-radius: 16px;
            padding: 18px 20px;
            color: #FFFFFF;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            /* Android scrolling fixes */
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
        }
        
        .question-select:focus {
            outline: none;
            border-color: #E10600;
            box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.1);
        }
        
        .options-grid {
            display: grid;
            gap: 16px;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }
        
        @media (max-width: 640px) {
            .options-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .option-btn {
            background: #1F2024;
            color: #FFFFFF;
            border: 2px solid #1F2024;
            border-radius: 16px;
            padding: 18px 24px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            /* Android scrolling and touch fixes */
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
            -webkit-user-select: none;
            user-select: none;
        }
        
        .option-btn:hover {
            background: #131316;
            border-color: #E10600;
            transform: translateY(-2px);
        }
        
        .option-btn.selected {
            background: linear-gradient(135deg, #E10600, #FF2D2D);
            border-color: #E10600;
            box-shadow: 0 4px 16px rgba(225, 6, 0, 0.3);
        }
        
        .option-btn.multi.selected {
            background: linear-gradient(135deg, #E10600, #FF2D2D);
            border-color: #E10600;
        }
        
        .signup-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            margin-top: 40px;
        }
        
        .nav-btn {
            flex: 1;
            padding: 18px 32px;
            border-radius: 16px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
        }
        
        .nav-btn.primary {
            background: linear-gradient(135deg, #E10600, #FF2D2D);
            color: #FFFFFF;
            box-shadow: 0 8px 24px rgba(225, 6, 0, 0.3);
        }
        
        .nav-btn.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(225, 6, 0, 0.4);
        }
        
        .nav-btn.secondary {
            background: transparent;
            color: #B5B7BD;
            border: 2px solid #1F2024;
        }
        
        .nav-btn.secondary:hover {
            background: #1F2024;
            color: #FFFFFF;
            border-color: #E10600;
        }

        /* Login Screen */
        .login-screen {
            background: linear-gradient(135deg, #0B0B0D 0%, #1F2024 50%, #0B0B0D 100%);
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
            overflow: hidden;
        }
        
        .login-screen::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(45deg, transparent 30%, rgba(225, 6, 0, 0.1) 50%, transparent 70%),
                linear-gradient(-45deg, transparent 30%, rgba(225, 6, 0, 0.05) 50%, transparent 70%);
            animation: bgShift 6s ease-in-out infinite;
        }
        
        .login-container {
            background: rgba(19, 19, 22, 0.95);
            border-radius: 24px;
            padding: 48px;
            width: 100%;
            max-width: 480px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(225, 6, 0, 0.2);
            position: relative;
            z-index: 2;
        }
        
        @media (max-width: 640px) {
            .login-container {
                padding: 32px 24px;
            }
        }
        
        .login-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .login-logo {
            margin-bottom: 16px;
            animation: pulse 3s infinite;
            background: transparent;
            border: none;
            padding: 0;
        }
        
        .login-logo-img {
            width: 80px;
            height: 80px;
            filter: drop-shadow(0 0 15px rgba(225, 6, 0, 0.4));
            background: transparent !important;
            border: none !important;
            border-radius: 0 !important;
            box-shadow: none !important;
            outline: none !important;
            padding: 0 !important;
            margin: 0 !important;
        }
        
        .login-title {
            font-size: 36px;
            font-weight: 800;
            color: #FFFFFF;
            letter-spacing: -2px;
            margin-bottom: 8px;
            text-shadow: 0 0 20px rgba(225, 6, 0, 0.3);
        }
        
        .login-subtitle {
            font-size: 16px;
            color: #B5B7BD;
            font-weight: 500;
        }
        
        .auth-tabs {
            display: flex;
            margin-bottom: 32px;
            background: #1F2024;
            border-radius: 12px;
            padding: 4px;
        }
        
        .auth-tab {
            flex: 1;
            background: transparent;
            color: #B5B7BD;
            border: none;
            padding: 16px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 14px;
            letter-spacing: 1px;
        }
        
        .auth-tab.active {
            background: #E10600;
            color: #FFFFFF;
            box-shadow: 0 2px 8px rgba(225, 6, 0, 0.3);
        }
        
        .auth-form {
            text-align: center;
        }
        
        .auth-inputs {
            margin-bottom: 24px;
        }
        
        .auth-input {
            width: 100%;
            background: #1F2024;
            border: 2px solid #1F2024;
            border-radius: 16px;
            padding: 18px 20px;
            color: #FFFFFF;
            font-size: 16px;
            margin-bottom: 16px;
            transition: all 0.3s;
            box-sizing: border-box;
        }
        
        .auth-input:focus {
            outline: none;
            border-color: #E10600;
            box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.1);
        }
        
        .auth-input::placeholder {
            color: #B5B7BD;
        }
        
        
        
        .form-step {
            text-align: center;
        }
        
        .step-title {
            font-size: 24px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }
        
        .step-description {
            font-size: 16px;
            color: #B5B7BD;
            margin-bottom: 32px;
        }
        
        .phone-input-container {
            display: flex;
            gap: 12px;
            margin-bottom: 24px;
        }
        
        .country-select {
            background: #1F2024;
            border: 2px solid #1F2024;
            border-radius: 16px;
            padding: 18px 16px;
            color: #FFFFFF;
            font-size: 16px;
            font-weight: 600;
            min-width: 140px;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .country-select:focus {
            outline: none;
            border-color: #E10600;
            box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.1);
        }
        
        .phone-input {
            flex: 1;
            background: #1F2024;
            border: 2px solid #1F2024;
            border-radius: 16px;
            padding: 18px 20px;
            color: #FFFFFF;
            font-size: 18px;
            font-weight: 600;
            text-align: center;
            letter-spacing: 1px;
            transition: all 0.3s;
        }
        
        .phone-input:focus {
            outline: none;
            border-color: #E10600;
            box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.1);
        }
        
        .phone-input::placeholder {
            color: #B5B7BD;
            font-weight: 500;
        }
        
        .code-input-container {
            margin-bottom: 32px;
        }
        
        .code-input {
            width: 100%;
            background: #1F2024;
            border: 2px solid #1F2024;
            border-radius: 16px;
            padding: 20px;
            color: #FFFFFF;
            font-size: 24px;
            font-weight: 700;
            text-align: center;
            letter-spacing: 4px;
            transition: all 0.3s;
        }
        
        .code-input:focus {
            outline: none;
            border-color: #E10600;
            box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.1);
        }
        
        .code-input::placeholder {
            color: #B5B7BD;
            font-weight: 500;
        }
        
        .auth-button {
            width: 100%;
            background: linear-gradient(135deg, #E10600, #FF2D2D);
            color: #FFFFFF;
            border: none;
            border-radius: 16px;
            padding: 20px;
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 8px 24px rgba(225, 6, 0, 0.3);
            margin-bottom: 16px;
        }
        
        .auth-button:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(225, 6, 0, 0.4);
        }
        
        .auth-button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }
        
        .auth-button-secondary {
            width: 100%;
            background: transparent;
            color: #B5B7BD;
            border: 2px solid #1F2024;
            border-radius: 16px;
            padding: 18px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .auth-button-secondary:hover {
            background: #1F2024;
            color: #FFFFFF;
            border-color: #E10600;
        }
        
        #recaptcha-container {
            margin: 20px 0;
            display: flex;
            justify-content: center;
        }
        
        /* Loading state */
        .loading-button {
            position: relative;
            color: transparent !important;
        }
        
        .loading-button::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            top: 50%;
            left: 50%;
            margin-left: -10px;
            margin-top: -10px;
            border: 2px solid transparent;
            border-top: 2px solid #FFFFFF;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        /* Chat Styles */
        .chat-container {
            display: flex;
            flex-direction: column;
            height: calc(100vh - 160px);
            max-height: 800px;
            background: #131316;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            margin: 20px;
        }
        /* Locked/Gated state */
        .locked-state {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            min-height: 320px;
            text-align: center;
            background: #0F1115;
            border: 1px dashed #2A2C31;
            border-radius: 16px;
            padding: 24px;
            color: #B5B7BD;
        }
        .locked-title { font-weight: 800; color: #E5E7EB; font-size: 18px; }
        .locked-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
        .locked-btn {
            background: #1F2024;
            color: #E5E7EB;
            border: 1px solid #2A2C31;
            padding: 10px 14px;
            border-radius: 10px;
            cursor: pointer;
        }
        .locked-btn.primary { background: linear-gradient(135deg, #E10600, #FF2D2D); border: none; color: #fff; }

        /* Club Form Styles */
        .club-form {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            border-radius: 15px;
            padding: 30px;
            margin: 20px 0;
        }
        
        .club-form-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .form-icon {
            font-size: 48px;
            margin-bottom: 15px;
        }
        
        .club-form h3 {
            color: #fff;
            margin-bottom: 10px;
            font-size: 24px;
        }
        
        .club-form p {
            color: #B5B7BD;
            margin-bottom: 0;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            color: #fff;
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #333;
            border-radius: 8px;
            background: #2a2a2a;
            color: #fff;
            font-size: 16px;
            transition: border-color 0.3s;
            box-sizing: border-box;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #e10600;
        }
        
        .help-text {
            color: #B5B7BD;
            font-size: 14px;
            margin-bottom: 15px;
        }
        
        .member-input-row {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .member-id-input {
            flex: 1;
            margin-right: 10px;
        }
        
        .remove-member-btn {
            background: #e10600;
            color: white;
            border: none;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            cursor: pointer;
            font-size: 14px;
        }
        
        .add-member-btn {
            background: #28a745;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 10px;
        }
        
        .form-actions {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 30px;
        }
        
        .auth-button.secondary {
            background: #6c757d;
        }
        
        .auth-button.secondary:hover {
            background: #5a6268;
        }
        
        /* Club Status Styles */
        .club-status {
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            border-radius: 15px;
            margin: 20px 0;
        }
        .status-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .club-status h3 {
            color: #fff;
            margin-bottom: 15px;
        }
        
        .club-status p {
            color: #B5B7BD;
            margin-bottom: 20px;
        }
        
        .status-details {
            background: #333;
            padding: 15px;
            border-radius: 8px;
            color: #fff;
            font-family: monospace;
            font-size: 14px;
        }
        
        /* Club Display Styles */
        .club-display {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            border-radius: 15px;
            padding: 30px;
            margin: 20px 0;
        }
        
        .club-header {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .club-logo {
            position: relative;
            margin-right: 20px;
        }
        
        .club-logo img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .change-logo-btn {
            position: absolute;
            bottom: -5px;
            right: -5px;
            background: #e10600;
            color: white;
            border: none;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            cursor: pointer;
            font-size: 14px;
        }
        
        .club-info h3 {
            color: #fff;
            margin-bottom: 10px;
            font-size: 24px;
        }
        
        .club-info p {
            color: #B5B7BD;
            margin-bottom: 15px;
        }
        
        .club-stats {
            display: flex;
            gap: 20px;
        }
        
        .club-stats span {
            color: #fff;
            font-weight: 600;
        }
        
        .club-members h4 {
            color: #fff;
            margin-bottom: 15px;
        }
        
        .member-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }
        
        .member-item {
            background: #333;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
        }
        
        .member-item .member-id {
            color: #e10600;
            font-weight: 600;
            font-family: monospace;
        }
        
        .member-item .member-name {
            color: #fff;
            margin-top: 5px;
        }

        /* Tournament Styles */
        .tournament-header {
            text-align: center;
            margin-bottom: 32px;
        }
        .tournament-title {
            font-size: 32px;
            font-weight: 800;
            color: #E5E7EB;
            margin-bottom: 8px;
        }
        .tournament-subtitle {
            font-size: 16px;
            color: #B5B7BD;
        }
        .tournament-tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 24px;
            background: #1F2024;
            padding: 4px;
            border-radius: 12px;
        }
        .tournament-tab {
            flex: 1;
            padding: 12px 16px;
            background: transparent;
            border: none;
            border-radius: 8px;
            color: #B5B7BD;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .tournament-tab.active {
            background: #E10600;
            color: #FFFFFF;
        }
        .tournament-section {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .tournament-card {
            background: #131316;
            border: 1px solid #1F2024;
            border-radius: 16px;
            padding: 24px;
            transition: all 0.2s ease;
        }
        .tournament-card:hover {
            border-color: #2A2C31;
            transform: translateY(-2px);
        }
        .tournament-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        .tournament-name {
            font-size: 20px;
            font-weight: 700;
            color: #E5E7EB;
        }
        .tournament-status {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
        }
        .tournament-status.upcoming {
            background: rgba(59, 130, 246, 0.2);
            color: #3B82F6;
        }
        .tournament-status.completed {
            background: rgba(0, 255, 136, 0.2);
            color: #00FF88;
        }
        .tournament-details {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .tournament-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 12px;
        }
        .info-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
        }
        .info-label {
            color: #B5B7BD;
            font-size: 14px;
        }
        .info-value {
            color: #E5E7EB;
            font-weight: 600;
            font-size: 14px;
        }
        .tournament-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .tournament-btn {
            padding: 12px 20px;
            border-radius: 10px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .tournament-btn.primary {
            background: linear-gradient(135deg, #E10600, #FF2D2D);
            color: #FFFFFF;
        }
        .tournament-btn.secondary {
            background: #1F2024;
            color: #E5E7EB;
            border: 1px solid #2A2C31;
        }
        .tournament-btn:hover {
            transform: translateY(-2px);
        }
        .tournament-results {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 20px;
        }
        .result-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 12px;
            background: #1F2024;
            border-radius: 10px;
        }
        .result-item.winner {
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.3);
        }
        .result-item.runner-up {
            background: rgba(192, 192, 192, 0.1);
            border: 1px solid rgba(192, 192, 192, 0.3);
        }
        .result-item.third {
            background: rgba(205, 127, 50, 0.1);
            border: 1px solid rgba(205, 127, 50, 0.3);
        }
        .position {
            font-size: 20px;
        }
        .team-name {
            flex: 1;
            font-weight: 600;
            color: #E5E7EB;
        }
        .team-score {
            color: #B5B7BD;
            font-weight: 600;
        }

        /* Pro Plan Styles */
        .pro-plan-card {
            background: #131316;
            border: 1px solid #1F2024;
            border-radius: 16px;
            padding: 24px;
        }
        .plan-header {
            text-align: center;
            margin-bottom: 24px;
            position: relative;
        }
        .plan-header .plan-name {
            font-size: 28px;
            font-weight: 800;
            color: #E5E7EB;
            margin-bottom: 8px;
        }
        .plan-header .plan-price {
            font-size: 36px;
            font-weight: 800;
            color: #E10600;
            margin-bottom: 8px;
        }
        .plan-header .plan-price span {
            font-size: 16px;
            color: #B5B7BD;
        }
        .plan-header .plan-badge {
            position: absolute;
            top: -12px;
            right: 0;
            background: linear-gradient(135deg, #E10600, #FF2D2D);
            color: #FFFFFF;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
        }
        .plan-actions {
            margin-top: 24px;
        }
        .plan-btn.primary {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #E10600, #FF2D2D);
            color: #FFFFFF;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .plan-btn.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(225, 6, 0, 0.4);
        }
        .payment-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 8px;
            margin-top: 16px;
        }
        .payment-method {
            text-align: center;
            padding: 8px;
            background: #1F2024;
            border-radius: 8px;
            font-size: 12px;
            color: #B5B7BD;
        }
        
        @media (max-width: 767px) {
            .chat-container {
                height: calc(100vh - 120px);
                margin: 10px;
                border-radius: 16px;
            }
        }
        
        .chat-header {
            background: linear-gradient(135deg, #1F2024, #131316);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #1F2024;
        }
        
        .chat-room-info {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        
        .chat-room-icon {
            font-size: 32px;
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #E10600, #FF2D2D);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .chat-room-name {
            font-size: 20px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 2px;
        }
        
        .chat-room-members {
            font-size: 14px;
            color: #B5B7BD;
        }
        
        .chat-actions {
            display: flex;
            gap: 8px;
        }
        
        .chat-action-btn {
            width: 40px;
            height: 40px;
            background: transparent;
            border: 2px solid #1F2024;
            border-radius: 50%;
            color: #B5B7BD;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .chat-action-btn:hover {
            background: #1F2024;
            border-color: #E10600;
            color: #FFFFFF;
        }
        
        .messages-container {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .message {
            display: flex;
            gap: 12px;
            max-width: 80%;
            animation: messageSlideIn 0.3s ease-out;
        }
        
        @keyframes messageSlideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .message.my-message {
            align-self: flex-end;
            flex-direction: row-reverse;
        }
        
        .message.other-message {
            align-self: flex-start;
        }
        
        .message-avatar {
            width: 40px;
            height: 40px;
            background: #1F2024;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
        
        .message-content {
            background: #1F2024;
            padding: 12px 16px;
            border-radius: 16px;
            position: relative;
        }
        
        .my-message .message-content {
            background: linear-gradient(135deg, #E10600, #FF2D2D);
            border-bottom-right-radius: 4px;
        }
        
        .other-message .message-content {
            border-bottom-left-radius: 4px;
        }
        
        .message-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 4px;
            gap: 12px;
        }
        
        .message-sender {
            font-size: 12px;
            font-weight: 600;
            color: #B5B7BD;
        }
        
        .my-message .message-sender {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .message-time {
            font-size: 11px;
            color: #B5B7BD;
            opacity: 0.7;
        }
        
        .my-message .message-time {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .message-text {
            color: #FFFFFF;
            font-size: 15px;
            line-height: 1.4;
            word-wrap: break-word;
        }
        
        .system-message {
            align-self: center;
            max-width: none;
        }
        
        .system-message-text {
            background: rgba(225, 6, 0, 0.1);
            color: #E10600;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .system-icon {
            font-size: 16px;
        }
        
        .message-input-container {
            background: #1F2024;
            padding: 16px 20px;
            border-top: 1px solid #131316;
        }
        
        .message-input-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #0B0B0D;
            border-radius: 24px;
            padding: 8px;
        }
        
        .attachment-btn,
        .send-btn {
            width: 40px;
            height: 40px;
            background: transparent;
            border: none;
            border-radius: 50%;
            color: #B5B7BD;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }
        
        .attachment-btn:hover {
            background: #1F2024;
            color: #FFFFFF;
        }
        
        .send-btn {
            background: linear-gradient(135deg, #E10600, #FF2D2D);
            color: #FFFFFF;
        }
        
        .send-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(225, 6, 0, 0.3);
        }
        
        .send-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }
        
        .message-input {
            flex: 1;
            background: transparent;
            border: none;
            color: #FFFFFF;
            font-size: 15px;
            padding: 12px 16px;
            outline: none;
        }
        
        .message-input::placeholder {
            color: #B5B7BD;
        }
        
        /* Scrollbar for messages */
        .messages-container::-webkit-scrollbar {
            width: 6px;
        }
        
        .messages-container::-webkit-scrollbar-track {
            background: #1F2024;
            border-radius: 3px;
        }
        
        .messages-container::-webkit-scrollbar-thumb {
            background: #E10600;
            border-radius: 3px;
        }
        
        .messages-container::-webkit-scrollbar-thumb:hover {
            background: #FF2D2D;
        }

        /* Profile Styles */
        .profile-container {
            padding: 40px;
        }
        
        @media (max-width: 767px) {
            .profile-container {
                padding: 20px;
            }
        }
        
        .profile-header {
            display: flex;
            align-items: center;
            gap: 24px;
            margin-bottom: 40px;
            background: #131316;
            padding: 32px;
            border-radius: 24px;
            border: 1px solid #1F2024;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            overflow: hidden;
        }
        
        @media (max-width: 640px) {
            .profile-header {
                flex-direction: column;
                text-align: center;
                gap: 16px;
            }
            
            .current-membership {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
            }
            
            .membership-info {
                margin-bottom: 16px;
            }
            
            .upgrade-btn {
                width: 100%;
                max-width: none;
            }
        }
        
        .profile-avatar {
            position: relative;
        }
        
        .avatar-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 3px solid #E10600;
            background: #1F2024;
            object-fit: cover;
        }
        
        .avatar-edit-btn {
            position: absolute;
            bottom: -4px;
            right: -4px;
            width: 32px;
            height: 32px;
            background: #E10600;
            border: none;
            border-radius: 50%;
            color: #FFFFFF;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
        }
        
        .avatar-edit-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(225, 6, 0, 0.3);
        }
        
        .profile-name {
            font-size: 24px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 4px;
        }
        
        .profile-email {
            font-size: 16px;
            color: #B5B7BD;
            margin-bottom: 12px;
        }
        
        .status-badge {
            background: #E10600;
            color: #FFFFFF;
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .status-badge.pro {
            background: linear-gradient(135deg, #3B82F6, #1E40AF);
        }
        
        .status-badge.premium {
            background: linear-gradient(135deg, #F59E0B, #D97706);
        }
        
        .plans-grid {
            display: grid;
            gap: 24px;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            margin-bottom: 32px;
        }
        
        .plan-card {
            background: #131316;
            border: 2px solid #1F2024;
            border-radius: 20px;
            padding: 32px 24px;
            text-align: center;
            position: relative;
            transition: all 0.3s;
        }
        
        .plan-card:hover {
            transform: translateY(-4px);
            border-color: #E10600;
            box-shadow: 0 12px 32px rgba(225, 6, 0, 0.15);
        }
        
        .plan-card.pro {
            border-color: #3B82F6;
        }
        
        .plan-card.premium {
            border-color: #F59E0B;
        }
        
        .plan-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #E10600;
            color: #FFFFFF;
            padding: 6px 16px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .plan-name {
            font-size: 24px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 16px;
            letter-spacing: 1px;
        }
        
        .plan-price {
            font-size: 36px;
            font-weight: 800;
            color: #E10600;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }
        
        .plan-price span {
            font-size: 16px;
            color: #B5B7BD;
            font-weight: 500;
        }
        
        .plan-features {
            margin-bottom: 32px;
        }
        .feature {
            padding: 8px 0;
            font-size: 14px;
            color: #FFFFFF;
            text-align: left;
        }
        
        .plan-btn {
            width: 100%;
            padding: 16px;
            border-radius: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            font-size: 14px;
            letter-spacing: 1px;
        }
        
        .plan-btn.current {
            background: #1F2024;
            color: #B5B7BD;
            cursor: not-allowed;
        }
        
        .plan-btn.upgrade {
            background: linear-gradient(135deg, #E10600, #FF2D2D);
            color: #FFFFFF;
            box-shadow: 0 4px 16px rgba(225, 6, 0, 0.3);
        }
        
        .plan-btn.upgrade:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(225, 6, 0, 0.4);
        }

        /* Membership Status Styles */
        .current-membership {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px;
            background: linear-gradient(135deg, #1F2024, #16171A);
            border-radius: 16px;
            border: 2px solid rgba(225, 6, 0, 0.2);
            margin-bottom: 20px;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            flex-wrap: wrap;
            gap: 16px;
        }

        .membership-info {
            flex: 1;
            min-width: 0;
            overflow: hidden;
        }

        .membership-tier {
            font-size: 28px;
            font-weight: 800;
            color: #FFFFFF;
            margin-bottom: 4px;
        }

        .membership-price {
            font-size: 16px;
            color: #B5B7BD;
            margin-bottom: 4px;
        }

        .membership-status {
            font-size: 14px;
            color: #00FF88;
            font-weight: 600;
        }

        .upgrade-btn {
            background: linear-gradient(135deg, #E10600, #FF2D2D);
            color: #FFFFFF;
            border: none;
            border-radius: 12px;
            padding: 16px 24px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
            flex-shrink: 0;
            max-width: 100%;
            box-sizing: border-box;
        }

        .upgrade-btn:hover {
            background: linear-gradient(135deg, #FF2D2D, #FF4D4D);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(225, 6, 0, 0.4);
        }

        .membership-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 12px;
            margin-top: 20px;
        }

        .membership-features .feature {
            padding: 12px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
        }

        .membership-features .feature.active {
            background: rgba(0, 255, 136, 0.1);
            color: #00FF88;
            border: 1px solid rgba(0, 255, 136, 0.2);
        }

        .membership-features .feature.inactive {
            background: rgba(181, 183, 189, 0.1);
            color: #B5B7BD;
            border: 1px solid rgba(181, 183, 189, 0.2);
        }

        .plan-badge.popular {
            background: linear-gradient(135deg, #FF6B00, #FF8C00);
        }

        .plan-badge.elite {
            background: linear-gradient(135deg, #8B00FF, #A020F0);
        }

        .plan-btn.elite {
            background: linear-gradient(135deg, #8B00FF, #A020F0);
        }

        .plan-btn.elite:hover {
            background: linear-gradient(135deg, #A020F0, #BA55D3);
        }

        /* Coming Soon Pages */
        .coming-soon {
            text-align: center;
            padding: 120px 40px;
            min-height: 60vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .coming-soon-icon {
            font-size: 80px;
            color: #E10600;
            margin-bottom: 24px;
            animation: bounce 2s infinite;
        }
        
        .coming-soon-title {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 16px;
            letter-spacing: -1px;
        }
        
        .coming-soon-description {
            color: #B5B7BD;
            font-size: 18px;
            margin-bottom: 32px;
            max-width: 400px;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 480px) {
            .hero-title {
                font-size: 36px;
            }
            
            .club-name {
                font-size: 32px;
            }
            
            .quick-stats {
                gap: 16px;
            }
            
            .formation-buttons {
                gap: 12px;
            }
            
            .formation-btn {
                padding: 12px 20px;
                font-size: 14px;
                min-width: 80px;
            }
            
            .street-pitch {
                height: 450px;
            }
        }
        
        /* Loading Animation */
        .loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #0B0B0D;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }
        
        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid #1F2024;
            border-top: 3px solid #E10600;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }
        
        .modal-content {
            background: #1A1B23;
            border-radius: 12px;
            width: 90%;
            max-width: 500px;
            max-height: 80vh;
            overflow-y: auto;
        }
        
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid #2A2C31;
        }
        
        .modal-header h3 {
            color: #FFFFFF;
            margin: 0;
            font-size: 18px;
            font-weight: 600;
        }
        
        .modal-close {
            background: none;
            border: none;
            color: #B5B7BD;
            font-size: 24px;
            cursor: pointer;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .modal-close:hover {
            color: #FFFFFF;
        }
        
        .modal-body {
            padding: 20px;
        }
        
        .modal-footer {
            display: flex;
            justify-content: flex-end;
            gap: 12px;
            padding: 20px;
            border-top: 1px solid #2A2C31;
        }
        
        .form-textarea {
            width: 100%;
            background: #2A2C31;
            border: 1px solid #374151;
            border-radius: 8px;
            padding: 12px;
            color: #FFFFFF;
            font-size: 14px;
            resize: vertical;
            min-height: 100px;
        }
        
        .form-textarea:focus {
            outline: none;
            border-color: #E10600;
        }
        
        .post-preview {
            margin-top: 12px;
        }
        
        .plan-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 20px;
        }
        
        .plan-btn {
            width: 100%;
            padding: 16px 20px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 16px;
        }
        
        .plan-btn.primary {
            background: #E10600;
            color: #FFFFFF;
        }
        
        .plan-btn.primary:hover {
            background: #C10500;
        }
        
        /* Pinned Posts Styles */
        .pinned-indicator {
            margin-left: 6px;
            color: #FFC107;
            font-size: 14px;
        }
        
        .post-status.pinned {
            background: #FFF3CD;
            color: #856404;
            border: 1px solid #FFC107;
        }
        
        .post.pinned {
            border-left: 4px solid #FFC107;
            background: linear-gradient(135deg, #1A1B23 0%, #1F2029 100%);
        }
        
        .post.pinned .post-header {
            background: rgba(255, 193, 7, 0.1);
            border-radius: 8px 8px 0 0;
            padding: 12px;
            margin: -12px -12px 12px -12px;
        }
        
        /* Floating Create Button */
        .floating-create-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(225, 6, 0, 0.3);
            transition: all 0.3s ease;
            position: fixed;
            bottom: 90px; /* Raised above mobile tab bar */
            right: 20px;
            z-index: 999;
            overflow: hidden;
        }
        
        /* Mobile-specific positioning */
        @media (max-width: 768px) {
            .floating-create-btn {
                bottom: 100px; /* Extra space on mobile to avoid tab bar */
            }
        }
        
        .floating-create-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(225, 6, 0, 0.4);
        }
        
        .floating-create-btn .btn-icon {
            font-size: 24px;
            font-weight: 300;
            line-height: 1;
        }
        
        /* Post Type Selection Modal */
        .post-type-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }
        
        .post-type-content {
            background: #1A1B23;
            border-radius: 16px;
            width: 90%;
            max-width: 400px;
            padding: 24px;
            text-align: center;
        }
        
        .post-type-title {
            color: #FFFFFF;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 24px;
        }
        
        .post-type-options {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .post-type-option {
            display: flex;
            align-items: center;
            padding: 16px;
            background: #2A2C31;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .post-type-option:hover {
            background: #374151;
            border-color: #E10600;
        }
        
        .post-type-icon {
            font-size: 24px;
            margin-right: 16px;
            width: 40px;
            text-align: center;
        }
        
        .post-type-text {
            flex: 1;
            text-align: left;
        }
        
        .post-type-name {
            color: #FFFFFF;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
        }
        
        .post-type-desc {
            color: #B5B7BD;
            font-size: 14px;
        }
        
        .modal-close-btn {
            position: absolute;
            top: 16px;
            right: 16px;
            background: none;
            border: none;
            color: #B5B7BD;
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .modal-close-btn:hover {
            background: #2A2C31;
            color: #FFFFFF;
        }

        /* Simple Settings Modal Styles */
        .settings-section {
            margin-bottom: 24px;
            padding: 16px;
            background: #131316;
            border-radius: 8px;
            border: 1px solid #2A2C31;
        }

        .settings-section h3 {
            color: #FFFFFF;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .setting-item {
            margin-bottom: 16px;
        }

        .setting-item:last-child {
            margin-bottom: 0;
        }

        .setting-item label {
            display: block;
            color: #B5B7BD;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .setting-value {
            color: #FFFFFF;
            font-size: 14px;
            padding: 8px 12px;
            background: #1F2024;
            border-radius: 6px;
            border: 1px solid #2A2C31;
        }

        .setting-input {
            width: 100%;
            padding: 8px 12px;
            background: #1F2024;
            border: 1px solid #2A2C31;
            border-radius: 6px;
            color: #FFFFFF;
            font-size: 14px;
            margin-bottom: 8px;
        }

        .setting-input:focus {
            outline: none;
            border-color: #4A9EFF;
        }

        .btn-small {
            background: #4A9EFF;
            color: #FFFFFF;
            border: none;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 12px;
            cursor: pointer;
            font-weight: 500;
        }

        .btn-small:hover {
            background: #3A8EFF;
        }

        .membership-info {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 16px;
        }

        .membership-plan {
            color: #4A9EFF;
            font-size: 18px;
            font-weight: 700;
        }

        .membership-status {
            color: #B5B7BD;
            font-size: 14px;
        }
        
        /* Collapsible Settings Styles */
        .settings-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            padding: 12px 0;
            border-bottom: 1px solid #333;
            margin-bottom: 16px;
        }
        
        .settings-header:hover {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 12px 8px;
            margin: 0 -8px 16px -8px;
        }
        
        .toggle-icon {
            font-size: 14px;
            color: #888;
            transition: transform 0.3s ease;
        }
        
        .collapsible-content {
            transition: all 0.3s ease;
            overflow: hidden;
        }
        
        .collapsible-content.collapsed {
            max-height: 0;
            opacity: 0;
        }
        
        .collapsible-content.expanded {
            max-height: 1000px;
            opacity: 1;
        }
        
        /* Profile Edit Button Styles */
        .profile-edit-button {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            border-radius: 12px;
            padding: 0;
            margin-bottom: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
            overflow: hidden;
            position: relative;
        }
        
        .profile-edit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }
        
        .profile-edit-button:active {
            transform: translateY(0);
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }
        
        .button-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            color: white;
            font-weight: 600;
            font-size: 16px;
        }
        
        .button-icon {
            font-size: 20px;
            margin-right: 12px;
        }
        
        .button-text {
            flex: 1;
            text-align: left;
            font-size: 16px;
            font-weight: 600;
        }
        
        .button-arrow {
            font-size: 14px;
            transition: transform 0.3s ease;
            margin-left: 12px;
        }
        
        .profile-edit-button:hover .button-arrow {
            transform: scale(1.2);
        }
        
        /* When expanded, change the button style */
        .profile-edit-button.expanded {
            background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
            box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
        }
        
        .profile-edit-button.expanded:hover {
            box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
        }

        /* ===== ADMIN PANEL STYLES ===== */
        .admin-panel {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .admin-panel-content {
            background: #1F2024;
            border-radius: 12px;
            padding: 24px;
            max-width: 600px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            border: 1px solid #2A2C31;
        }

        .admin-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid #2A2C31;
        }

        .admin-header h2 {
            color: #FFFFFF;
            font-size: 20px;
            font-weight: 600;
            margin: 0;
        }

        .btn-close {
            background: #E10600;
            color: white;
            border: none;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-close:hover {
            background: #C10500;
        }

        .admin-section {
            margin-bottom: 24px;
        }

        .admin-section h3 {
            color: #FFFFFF;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .admin-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group label {
            color: #B5B7BD;
            font-size: 14px;
            font-weight: 500;
        }

        .form-group input {
            background: #131316;
            border: 1px solid #2A2C31;
            border-radius: 8px;
            padding: 12px;
            color: #FFFFFF;
            font-size: 14px;
        }

        .form-group input:focus {
            outline: none;
            border-color: #E10600;
        }

        .btn-primary {
            background: #E10600;
            color: white;
            border: none;
            border-radius: 8px;
            padding: 12px 24px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }

        .btn-primary:hover {
            background: #C10500;
        }

        .reserved-numbers-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-height: 300px;
            overflow-y: auto;
        }

        .reserved-number-item {
            background: #131316;
            border: 1px solid #2A2C31;
            border-radius: 8px;
            padding: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }

        .shirt-number {
            color: #E10600;
            font-weight: 600;
            font-size: 16px;
            min-width: 80px;
        }

        .email {
            color: #B5B7BD;
            font-size: 14px;
            flex: 1;
        }

        .type {
            color: #4CAF50;
            font-size: 12px;
            font-weight: 500;
            background: rgba(76, 175, 80, 0.1);
            padding: 4px 8px;
            border-radius: 4px;
        }

        .btn-small {
            padding: 6px 12px;
            font-size: 12px;
            border-radius: 6px;
            border: none;
            cursor: pointer;
            font-weight: 500;
        }

        .btn-danger {
            background: #E10600;
            color: white;
        }

        .btn-danger:hover {
            background: #C10500;
        }

        .admin-toggle-btn {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #E10600;
            color: white;
            border: none;
            border-radius: 8px;
            padding: 12px 16px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            z-index: 9999;
            box-shadow: 0 4px 12px rgba(225, 6, 0, 0.3);
        }

        .admin-toggle-btn:hover {
            background: #C10500;
            box-shadow: 0 6px 16px rgba(225, 6, 0, 0.4);
        }

        /* Shirt Number Display Styles */
        #userShirtNumber {
            background: rgba(225, 6, 0, 0.1);
            border: 1px solid #E10600;
            border-radius: 6px;
            padding: 4px 8px;
            display: inline-block;
            font-family: 'Courier New', monospace;
            letter-spacing: 1px;
        }
