/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fffef7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, #FFD700 0%, #FFF200 100%);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.team-link {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.team-link:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Team-specific header themes */
.header.team-savannah-bananas {
    background: linear-gradient(135deg, #FFD700 0%, #FFF200 100%);
}

.header.team-party-animals {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
}

.header.team-texas-tailgaters {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
}

.header.team-texas-tailgaters .logo,
.header.team-texas-tailgaters .nav-link {
    color: #FFFFFF;
}

.header.team-firefighters {
    background: linear-gradient(135deg, #DC143C 0%, #B22222 100%);
}

.header.team-firefighters .logo,
.header.team-firefighters .nav-link {
    color: #FFFFFF;
}

.header.team-indianapolis-clowns {
    background: linear-gradient(135deg, #9370DB 0%, #8A2BE2 100%);
}

.header.team-indianapolis-clowns .logo,
.header.team-indianapolis-clowns .nav-link {
    color: #FFFFFF;
}

.header.team-loco-beach-coconuts {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
}

.header.team-loco-beach-coconuts .logo,
.header.team-loco-beach-coconuts .nav-link {
    color: #FFFFFF;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFD700 0%, #FFF200 50%, #FFED4E 100%);
    padding: 4rem 2rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Team Selector */
.team-selector {
    margin-top: 2rem;
}

.team-selector h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.team-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-button {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.team-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.team-button.savannah-bananas {
    background: linear-gradient(135deg, #FFD700, #FFF200);
    color: #333;
    text-shadow: none;
}

.team-button.party-animals {
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
}

.team-button.texas-tailgaters {
    background: linear-gradient(135deg, #8B4513, #A0522D);
}

.team-button.firefighters {
    background: linear-gradient(135deg, #DC143C, #B22222);
}

.team-button.indianapolis-clowns {
    background: linear-gradient(135deg, #9370DB, #8A2BE2);
}

.team-button.loco-beach-coconuts {
    background: linear-gradient(135deg, #228B22, #32CD32);
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #FFD700, #FFF200);
    transition: background 0.3s ease;
}

.team-info {
    flex: 1;
}

.team-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.team-description {
    font-size: 1.2rem;
    color: #555;
    margin: 0;
}

.team-nav {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: 25px;
}

.team-nav-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    color: #333;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.team-nav-btn.active,
.team-nav-btn:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.team-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 2rem;
}

/* Team-specific backgrounds */
.team-section.team-savannah-bananas {
    background-color: #FFFEF7;
}

.team-section.team-savannah-bananas .team-header {
    background: linear-gradient(135deg, #FFD700, #FFF200);
}

.team-section.team-party-animals {
    background-color: #FFF5F5;
}

.team-section.team-party-animals .team-header {
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
}

.team-section.team-party-animals .team-title,
.team-section.team-party-animals .team-description {
    color: #2C3E50;
}

.team-section.team-texas-tailgaters {
    background-color: #FFF8DC;
}

.team-section.team-texas-tailgaters .team-header {
    background: linear-gradient(135deg, #8B4513, #A0522D);
}

.team-section.team-texas-tailgaters .team-title,
.team-section.team-texas-tailgaters .team-description,
.team-section.team-texas-tailgaters .team-nav-btn {
    color: #FFFFFF;
}

.team-section.team-firefighters {
    background-color: #FFF0F0;
}

.team-section.team-firefighters .team-header {
    background: linear-gradient(135deg, #DC143C, #B22222);
}

.team-section.team-firefighters .team-title,
.team-section.team-firefighters .team-description,
.team-section.team-firefighters .team-nav-btn {
    color: #FFFFFF;
}

.team-section.team-indianapolis-clowns {
    background-color: #F8F0FF;
}

.team-section.team-indianapolis-clowns .team-header {
    background: linear-gradient(135deg, #9370DB, #8A2BE2);
}

.team-section.team-indianapolis-clowns .team-title,
.team-section.team-indianapolis-clowns .team-description,
.team-section.team-indianapolis-clowns .team-nav-btn {
    color: #FFFFFF;
}

.team-section.team-loco-beach-coconuts {
    background-color: #F0FFF0;
}

.team-section.team-loco-beach-coconuts .team-header {
    background: linear-gradient(135deg, #228B22, #32CD32);
}

.team-section.team-loco-beach-coconuts .team-title,
.team-section.team-loco-beach-coconuts .team-description,
.team-section.team-loco-beach-coconuts .team-nav-btn {
    color: #FFFFFF;
}

/* Section Styles */
.roster-section,
.social-section {
    padding: 4rem 0;
    background-color: #fff;
}

.roster-section:nth-child(odd) {
    background-color: #fffef7;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    border-bottom: 3px solid #FFD700;
    padding-bottom: 0.5rem;
}

/* View Controls */
.view-controls {
    display: flex;
    gap: 0.5rem;
    background-color: #f8f9fa;
    padding: 0.5rem;
    border-radius: 25px;
}

.view-btn {
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
    color: #666;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.view-btn.active,
.view-btn:hover {
    background-color: #FFD700;
    color: #333;
}

/* Filter Bar */
.filter-bar,
.social-filter-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.search-input,
.filter-select {
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-input:focus,
.filter-select:focus {
    outline: none;
    border-color: #FFD700;
}

.search-input {
    flex: 1;
    min-width: 250px;
}

/* Player Grid Styles */
.player-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.grid-view {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.list-view {
    grid-template-columns: 1fr;
}

.cards-view {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

/* Player Card Styles */
.player-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.player-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.player-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #FFD700, #FFF200);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #333;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.player-image-fallback {
    display: none;
    font-size: 4rem;
    color: #333;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: bold;
}

/* Show fallback if image fails to load */
.player-image:not([style*="background-image"]) .player-image-fallback,
.player-image[style*="background-image: url('')"] .player-image-fallback {
    display: block;
}

/* Overlay effect for better text readability on images */
.player-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 215, 0, 0.3) 0%,
        rgba(255, 242, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.player-number {
    z-index: 2 !important;
    position: relative;
}

.player-image-fallback {
    z-index: 2;
    position: relative;
}

/* Loading animation for images */
.player-image[style*="background-image"] {
    background-color: #f0f0f0;
    animation: imageLoading 1.5s ease-in-out infinite alternate;
}

@keyframes imageLoading {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Stop animation once image is loaded */
.player-image.loaded {
    animation: none;
    opacity: 1;
}

/* Team-specific player card colors */
.team-section.team-savannah-bananas .player-card:hover {
    border-color: #FFD700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.team-section.team-savannah-bananas .player-image {
    background: linear-gradient(135deg, #FFD700, #FFF200);
}

.team-section.team-savannah-bananas .player-image::before {
    background: linear-gradient(
        135deg,
        rgba(255, 215, 0, 0.4) 0%,
        rgba(255, 242, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.team-section.team-party-animals .player-card:hover {
    border-color: #FF6B6B;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.team-section.team-party-animals .player-image {
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
    color: #2C3E50;
}

.team-section.team-party-animals .player-image::before {
    background: linear-gradient(
        135deg,
        rgba(255, 107, 107, 0.4) 0%,
        rgba(255, 142, 142, 0.3) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.team-section.team-texas-tailgaters .player-card:hover {
    border-color: #8B4513;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.team-section.team-texas-tailgaters .player-image {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: #FFFFFF;
}

.team-section.team-texas-tailgaters .player-image::before {
    background: linear-gradient(
        135deg,
        rgba(139, 69, 19, 0.4) 0%,
        rgba(160, 82, 45, 0.3) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.team-section.team-firefighters .player-card:hover {
    border-color: #DC143C;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.team-section.team-firefighters .player-image {
    background: linear-gradient(135deg, #DC143C, #B22222);
    color: #FFFFFF;
}

.team-section.team-firefighters .player-image::before {
    background: linear-gradient(
        135deg,
        rgba(220, 20, 60, 0.4) 0%,
        rgba(178, 34, 34, 0.3) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.team-section.team-indianapolis-clowns .player-card:hover {
    border-color: #9370DB;
    box-shadow: 0 8px 25px rgba(147, 112, 219, 0.3);
}

.team-section.team-indianapolis-clowns .player-image {
    background: linear-gradient(135deg, #9370DB, #8A2BE2);
    color: #FFFFFF;
}

.team-section.team-indianapolis-clowns .player-image::before {
    background: linear-gradient(
        135deg,
        rgba(147, 112, 219, 0.4) 0%,
        rgba(138, 43, 226, 0.3) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.team-section.team-loco-beach-coconuts .player-card:hover {
    border-color: #228B22;
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.3);
}

.team-section.team-loco-beach-coconuts .player-image {
    background: linear-gradient(135deg, #228B22, #32CD32);
    color: #FFFFFF;
}

.team-section.team-loco-beach-coconuts .player-image::before {
    background: linear-gradient(
        135deg,
        rgba(34, 139, 34, 0.4) 0%,
        rgba(50, 205, 50, 0.3) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.player-info {
    padding: 1.5rem;
}

.player-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.player-position {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.player-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
    flex-wrap: wrap;
}

.player-fun-fact {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    border-left: 3px solid #FFD700;
}

/* Player Reaction Buttons */
.player-reaction-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    justify-content: center;
}

.reaction-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.4rem 0.6rem;
    border: none;
    border-radius: 20px;
    background-color: #f8f9fa;
    color: #666;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.reaction-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.heart-btn {
    background-color: #ffe6f0;
    color: #d63384;
}

.heart-btn:hover {
    background-color: #ffcde0;
}

.heart-btn.liked {
    background-color: #d63384;
    color: white;
    transform: scale(1.05);
}

.poop-btn {
    background-color: #fff4e6;
    color: #8b4513;
}

.poop-btn:hover {
    background-color: #ffe0b3;
}

.poop-btn.disliked {
    background-color: #8b4513;
    color: white;
    transform: scale(1.05);
}

.heart-icon, .poop-icon {
    font-size: 1rem;
}

.heart-count, .poop-count {
    font-weight: 600;
    min-width: 1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.1rem 0.3rem;
    border-radius: 10px;
    font-size: 0.8rem;
}

.reaction-feedback {
    animation: reactionPulse 0.3s ease;
}

@keyframes reactionPulse {
    0% { transform: translateX(-50%) scale(0.8); opacity: 0; }
    50% { transform: translateX(-50%) scale(1.1); opacity: 1; }
    100% { transform: translateX(-50%) scale(1); opacity: 1; }
}

.player-reaction-buttons::after {
    content: "🌍";
    font-size: 0.6rem;
    position: absolute;
    top: -5px;
    right: -5px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.player-reaction-buttons {
    position: relative;
}

.heart-count, .poop-count {
    transition: all 0.2s ease;
}

.heart-count:hover, .poop-count:hover {
    transform: scale(1.1);
}

/* Social Media Posts */
.player-social-posts {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.player-social-posts h4 {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    color: #FFD700;
}

.social-posts-container {
    max-height: 200px;
    overflow-y: auto;
}

.social-post {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.social-post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}

.platform-icon {
    font-size: 0.9rem;
}

.post-date {
    color: #ccc;
    font-size: 0.7rem;
}

.post-thumbnail {
    width: 100%;
    max-width: 120px;
    height: auto;
    border-radius: 4px;
    margin: 0.25rem 0;
}

.post-content h4 {
    margin: 0.25rem 0;
    font-size: 0.8rem;
}

.post-content p {
    margin: 0.25rem 0;
    color: #ddd;
    line-height: 1.3;
}

.post-stats {
    display: flex;
    gap: 0.5rem;
    margin: 0.25rem 0;
    font-size: 0.7rem;
    color: #bbb;
}

.view-post-btn {
    display: inline-block;
    background: #FFD700;
    color: #000;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.7rem;
    margin-top: 0.25rem;
}

.view-post-btn:hover {
    background: #FFF200;
}

/* Comments Section */
.player-comments-section {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.player-comments-section h4 {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    color: #FFD700;
}

.comments-container {
    max-height: 150px;
    overflow-y: auto;
    margin-bottom: 0.75rem;
}

.comment {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}

.comment-header strong {
    color: #FFD700;
    font-size: 0.8rem;
}

.comment-date {
    color: #ccc;
    font-size: 0.7rem;
}

.comment-text {
    margin: 0;
    line-height: 1.3;
    color: #ddd;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.comment-inputs {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-input, .comment-input {
    padding: 0.5rem;
    border: 1px solid #666;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.8rem;
}

.author-input {
    max-width: 150px;
}

.comment-input {
    min-height: 60px;
    resize: vertical;
}

.author-input::placeholder, .comment-input::placeholder {
    color: #aaa;
}

.submit-comment-btn {
    background: #FFD700;
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    align-self: flex-start;
}

.submit-comment-btn:hover {
    background: #FFF200;
}

.loading-posts, .loading-comments {
    text-align: center;
    color: #aaa;
    font-size: 0.8rem;
    padding: 1rem;
}

.no-comments {
    text-align: center;
    color: #aaa;
    font-size: 0.8rem;
    font-style: italic;
    margin: 1rem 0;
}

/* Comments Pagination */
.comments-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid #666;
}

.page-btn {
    background: #FFD700;
    color: #000;
    border: none;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.page-btn:hover:not(:disabled) {
    background: #FFF200;
}

.page-btn:disabled {
    background: #666;
    color: #aaa;
    cursor: not-allowed;
    opacity: 0.6;
}

.page-info {
    color: #aaa;
    font-size: 0.7rem;
}

/* Comment initials styling */
.comment-initials {
    background: #FFD700;
    color: #000;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem;
    border-radius: 6px;
    color: white;
    font-weight: 600;
    z-index: 10000;
}

.notification.success {
    background: #28a745;
}

.notification.error {
    background: #dc3545;
}

.player-social {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #f8f9fa;
    color: #666;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #FFD700;
    color: #333;
    transform: scale(1.1);
}

/* List View Specific Styles */
.list-view .player-card {
    display: flex;
    align-items: center;
}

.list-view .player-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    font-size: 2rem;
}

.list-view .player-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list-view .player-details {
    flex: 1;
}

.list-view .player-social {
    flex-shrink: 0;
}

/* Social Feed Styles */
.social-feed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.social-post {
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #FFD700;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.post-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700, #FFF200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.post-info {
    flex: 1;
}

.post-author {
    font-weight: 600;
    color: #333;
}

.post-platform {
    font-size: 0.9rem;
    color: #666;
}

.post-content {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.post-date {
    font-size: 0.9rem;
    color: #999;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

/* Loading and Empty States */
.loading {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.empty-state h3 {
    margin-bottom: 1rem;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .filter-bar,
    .social-filter-bar {
        flex-direction: column;
    }
    
    .search-input {
        min-width: auto;
    }
    
    .grid-view {
        grid-template-columns: 1fr;
    }
    
    .cards-view {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 1rem;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .social-feed {
        grid-template-columns: 1fr;
    }
    
    .player-reaction-buttons {
        gap: 0.25rem;
    }
    
    .reaction-btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .heart-icon, .poop-icon {
        font-size: 0.9rem;
    }
}