<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.screen {
    width: 100%;
    display: none; /* Hide screens by default */
}

.screen.active {
    display: block; /* Show active screen */
}

#create-club-screen {
    padding-top: 2rem; /* Add padding to the top of the create club screen */
}

.btn {
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-weight: 600;
    color: white;
    text-align: center;
}

.nav-btn {
    flex-shrink: 0;
    padding: 0.5rem 0.75rem; /* Adjust padding */
    font-size: 0.8rem; /* Smaller font size */
    font-weight: 500;
    border-radius: 0.375rem; /* Tailwind md */
    color: #cbd5e1; /* Tailwind gray-300 */
    transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}
.nav-btn:hover {
    background-color: #4b5563; /* Tailwind gray-600 */
    color: white;
}
.nav-btn.active {
    background-color: #374151; /* Tailwind gray-700 */
    color: white;
    font-weight: 600;
}

.tab-content {
    display: none; /* Hide tabs by default */
}

.tab-content.active {
    display: block; /* Show active tab */
}

.player-card {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06); /* Tailwind shadow-md */
    padding: 0.75rem; /* Reduced padding */
    display: flex;
    align-items: center;
    gap: 0.75rem; /* Reduced gap */
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative; /* For buttons */
}

.player-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.08); /* Tailwind shadow-lg */
}

.player-avatar {
    width: 3rem; /* Smaller avatar */
    height: 3rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: #e5e7eb; /* Tailwind gray-200 */
    flex-shrink: 0;
    border: 1px solid #d1d5db; /* Tailwind gray-300 */
    display: flex;
    align-items: center;
    justify-content: center;
}
.player-avatar svg {
    width: 100%;
    height: 100%;
    display: block;
}

.player-info {
    flex-grow: 1;
}

.player-name {
    font-weight: 600;
    font-size: 1rem; /* Adjusted size */
    margin-bottom: 0.1rem;
    color: #1f2937; /* Tailwind gray-800 */
}

.player-details {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.1rem;
}

.player-ovr {
    display: inline-block;
    background-color: #10b981; /* Tailwind emerald-500 */
    color: #fff;
    padding: 0.15rem 0.4rem;
    border-radius: 0.25rem;
    font-weight: 600;
    font-size: 0.7rem; /* Smaller font */
    line-height: 1;
}

.player-position {
    display: inline-block;
    background-color: #3b82f6; /* Tailwind blue-500 */
    color: #fff;
    padding: 0.15rem 0.4rem;
    border-radius: 0.25rem;
    font-weight: 600;
    font-size: 0.7rem; /* Smaller font */
    line-height: 1;
}

.player-price {
    color: #4b5563; /* Tailwind gray-600 */
    font-size: 0.75rem; /* Smaller font */
    margin-top: 0.1rem;
}

/* Style for action buttons on player cards (transfers) */
.card-actions {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
}

.field {
    background-color: #16a34a; /* Tailwind green-600 */
    border: 2px solid #15803d; /* Tailwind green-700 */
    border-radius: 0.5rem;
    padding: 0.5rem; /* Reduced padding */
    position: relative;
    aspect-ratio: 3/4; /* More portrait aspect ratio for field */
    max-width: 350px; /* Adjust max width */
    margin: 0 auto;
    overflow: hidden; /* Hide overflowing lines */
}

.player-position-slot {
    border-radius: 50%;
    width: 40px; /* Fixed size */
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Stack elements */
    position: relative;
    font-size: 0.65rem; /* Smaller font size */
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px dashed rgba(255, 255, 255, 0.4);
    color: #e5e7eb;
    cursor: pointer;
    transition: background-color 0.2s;
    overflow: visible; /* Allow */
}

.transfer-card {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.1);
    padding: 1rem;
}

#standings table {
    min-width: 100%;
    background-color: #1a202c;
    border-radius: 0.5rem;
}

#standings th, #standings td {
    padding: 0.5rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
    text-transform: uppercase;
}

#standings th {
    background-color: #2d3748;
}

#standings tbody tr:nth-child(even) {
    background-color: rgba(255,255,255,0.05);
}

#standings tr.user-team {
    background-color: rgba(30,64,175,0.5);
    font-weight: 600;
}

.fixture-card {
    background-color: #1a202c;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.1);
    padding: 1rem;
    text-align: center;
    color: #94a3b8;
}

#match-preview, #match-result {
    background-color: #1a202c;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.match-teams {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 1rem;
    text-align: center;
}

.match-team {
    flex: 1;
}

.match-vs {
    padding: 0 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #94a3b8;
}

.match-score {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.match-events {
    border-top: 1px solid #374151;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    max-height: 10rem;
    overflow-y: auto;
}

.match-event {
    margin-bottom: 0.25rem;
    padding: 0.25rem;
    background-color: #2d3748;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

/* Custom Scrollbar Styles */
#custom-scrollbar-container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 8px; /* Thin scrollbar */
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 999; /* Ensure it's above other content */
    display: none; /* Hidden by default */
    cursor: pointer;
}

#custom-scrollbar-thumb {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 4px; /* Rounded corners */
    position: absolute;
    left: 0;
    top: 0;
    transition: background-color 0.2s ease;
}

#custom-scrollbar-thumb:hover,
#custom-scrollbar-thumb.dragging {
    background-color: rgba(255, 255, 255, 0.6);
}

/* Make the main app content scrollable */
#app {
    overflow-y: auto;
    /* Need to ensure app takes up height to be scrollable */
    /* This might need adjustment depending on overall layout */
    height: 100vh; /* Example: make app fill viewport height */
    max-height: 100vh;
     /* Important: Use padding-right to make space for scrollbar */
    padding-right: 12px; /* Adjust based on scrollbar width + a little extra */
     /* Add smooth scrolling */
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow: hidden; /* Hide default body scrollbar */
}

@media (max-width: 640px) {
    #game-nav {
        justify-content: flex-start;
    }
    .player-position-slot {
        width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
    }
    #standings {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    #standings table {
        display: inline-block;
    }
}

@media (max-width: 768px) {
    #custom-scrollbar-container {
        width: 6px; /* Even thinner on mobile */
    }
    #app {
        padding-right: 8px; /* Adjust padding for thinner scrollbar */
    }
}</pre></body></html>