/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Sticky Header */
.sticky-header {
    background: #d09c1a;
    color: white;
    padding: 2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    position: relative;
}

.header-left {
    flex: 1;
    text-align: center;
}

/* Removed duplicate header-right rule - see below for correct one */

.welcome-text {
    color: white;
    font-size: 0.9rem;
    opacity: 0.9;
}

.welcome-text .username-link {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: border-bottom-color 0.3s ease;
}

.welcome-text .username-link:hover {
    border-bottom-color: white;
}

.logout-link {
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logout-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Auth Links in Header */
.auth-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    background: none !important;
}

/* Header spacer for when auth buttons are removed */
.header-spacer {
    width: 100px; /* Maintains header balance */
}

.auth-links .btn {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.auth-links .btn-outline-light {
    border: 1px solid rgba(255,255,255,0.6);
    color: white;
    background: transparent;
}

.auth-links .btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
    transform: translateY(-1px);
}

.auth-links .btn-light {
    background: white;
    color: #d09c1a;
    border: 1px solid white;
}

.auth-links .btn-light:hover {
    background: #f8f9fa;
    color: #b8860b;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Fix header right alignment - remove weird line completely */
.header-right {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.3rem;
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    background: none !important;
}

.user-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-nav-link {
    background: linear-gradient(135deg, #d09c1a 0%, #b8851a 100%);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
}

.admin-nav-link:hover {
    background: linear-gradient(135deg, #b8851a 0%, #a67318 100%);
    color: white !important;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(208, 156, 26, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.super-admin-link {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
    border-color: rgba(255, 255, 255, 0.2);
}

.super-admin-link:hover {
    background: linear-gradient(135deg, #c82333 0%, #a71e2a 100%) !important;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4) !important;
}

.logout-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.logout-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.header-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Nunito', sans-serif;
}

.header-link {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.header-link:hover {
    color: white;
    text-decoration: none;
    opacity: 0.9;
}

.header-tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
}



/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primary {
    background-color: #d09c1a;
    color: white;
}

.btn-primary:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #d09c1a;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Bible Verse */
.bible-verse {
    text-align: center;
    padding: 2rem 0 1rem 0;
    background-color: #F8F5E7;
}

.bible-verse p {
    font-style: italic;
    font-size: 1.2rem;
    color: #333;
    margin: 0;
    font-weight: 400;
}

/* Games Section */
.games-section {
    padding: 1rem 0 4rem 0;
    background-color: #F8F5E7;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.game-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.game-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.coming-soon {
    background-color: #D2691E !important;
    opacity: 1;
}

/* Override button colors for specific cards */
.game-card:first-child .btn-primary {
    background-color: #d09c1a !important;
}

.game-card:first-child .btn-primary:hover {
    background-color: #b8860b !important;
}

.game-card:last-child .btn-primary {
    background-color: #d09c1a !important;
}

.game-card:last-child .btn-primary:hover {
    background-color: #b8860b !important;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    margin-top: 1rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background-color: #f8f9fa;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: #d09c1a;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

/* Games Preview */
.games-preview {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.game-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    position: relative;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-card.coming-soon {
    opacity: 0.7;
}

.game-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.game-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.difficulty, .time {
    background-color: #e9ecef;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.coming-soon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #ffc107;
    color: #333;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #d09c1a 0%, #218838 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #2F2F2F;
    color: white;
    padding: 2rem 0;
}

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

.footer-bottom {
    text-align: center;
    color: #ccc;
}

.footer-bottom p {
    margin: 0;
    line-height: 1.6;
}

.footer-bottom a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #FFA500;
    text-decoration: underline;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #aaa;
}

.close:hover {
    color: #333;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: #d09c1a;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Page Headers */
.dashboard-header,
.profile-header,
.about-header,
.games-header {
    background: linear-gradient(135deg, #d09c1a 0%, #218838 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Dashboard Styles */
.dashboard-stats,
.profile-stats {
    padding: 4rem 0;
    background-color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    color: #d09c1a;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

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

.game-stat-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.game-stat-card:hover {
    transform: translateY(-5px);
}

.game-icon {
    font-size: 2.5rem;
    color: #d09c1a;
    text-align: center;
    margin-bottom: 1rem;
}

.game-content h3 {
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.4rem;
}

.game-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 5px;
}

.stat-label {
    font-weight: 500;
    color: #666;
    font-size: 0.9rem;
}

.stat-value {
    font-weight: bold;
    color: #d09c1a;
    font-size: 1rem;
}

.no-games {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.no-games-icon {
    font-size: 4rem;
    color: #d09c1a;
    margin-bottom: 1rem;
}

.no-games h3 {
    color: #333;
    margin-bottom: 1rem;
}

.no-games p {
    color: #666;
    margin-bottom: 2rem;
}

/* User Welcome Section */
.user-welcome {
    background: linear-gradient(135deg, #d09c1a 0%, #b8860b 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.welcome-message h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.welcome-message p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.username-link {
    color: white;
    text-decoration: none;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.username-link:hover {
    color: white;
    border-bottom-color: white;
    text-decoration: none;
}

.user-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
}

/* Homepage User Dashboard Preview */
.user-dashboard-preview {
    background: linear-gradient(135deg, #d09c1a 0%, #b8860b 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.welcome-section h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.welcome-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.dashboard-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.dashboard-actions .btn {
    min-width: 180px;
}

/* Welcome section removed - header buttons are sufficient */

.auth-card h3 {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.auth-form .form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e1e5e9;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.auth-form .form-control:focus {
    outline: none;
    border-color: #d09c1a;
    box-shadow: 0 0 0 0.2rem rgba(208, 156, 26, 0.25);
}

.btn-block {
    width: 100%;
}

.auth-footer-links {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e1e5e9;
}

.auth-footer-links p {
    margin-bottom: 0.5rem;
}

.auth-footer-links a {
    color: #d09c1a;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer-links a:hover {
    text-decoration: underline;
}

/* Library Section */
.library-section {
    padding: 4rem 0;
    background-color: white;
}

.library-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.library-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    transition: transform 0.3s ease;
}

.library-card:hover {
    transform: translateY(-5px);
}

.library-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.library-card-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.3rem;
}

.plugin-type-badge {
    background: #d09c1a;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.plugin-type-badge.game {
    background: #d09c1a;
}

.plugin-type-badge.tool {
    background: #6c757d;
}

.library-card-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.library-card-meta {
    margin-bottom: 1.5rem;
}

.plugin-status {
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.plugin-status.active {
    background: #d4edda;
    color: #155724;
}

.plugin-status.inactive {
    background: #f8d7da;
    color: #721c24;
}

.library-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.library-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.empty-icon {
    font-size: 4rem;
    color: #d09c1a;
    margin-bottom: 1.5rem;
}

.library-empty h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.library-empty p {
    color: #666;
    font-size: 1.1rem;
}

/* Recent Activity */
.recent-activity {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.activity-icon {
    font-size: 1.5rem;
    color: #d09c1a;
}

.activity-content h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.status-badge.completed {
    background-color: #d09c1a;
    color: white;
}

.status-badge.in-progress {
    background-color: #ffc107;
    color: #333;
}

.status-badge.active {
    background-color: #d09c1a;
    color: white;
}

.status-badge.inactive {
    background-color: #dc3545;
    color: white;
}

/* Quick Actions */
.quick-actions {
    padding: 3rem 0 4rem 0;
    background-color: white;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.action-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
}

.action-card:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
}

.action-icon {
    font-size: 2.5rem;
    color: #d09c1a;
    margin-bottom: 1rem;
}

/* Profile Styles */
.profile-section {
    padding: 4rem 0;
    background-color: white;
}

.profile-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.info-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item label {
    font-weight: 500;
    color: #666;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* About Page Styles */
.mission-section {
    padding: 4rem 0;
    background-color: white;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.mission-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    font-size: 3rem;
    color: #d09c1a;
    margin-bottom: 1rem;
}

.features-overview {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.team-section {
    padding: 4rem 0;
    background-color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
}

.member-avatar {
    font-size: 4rem;
    color: #d09c1a;
    margin-bottom: 1rem;
}

.contact-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.contact-method {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 2.5rem;
    color: #d09c1a;
    margin-bottom: 1rem;
}

/* Game Stats Section */
.game-stats-section {
    padding: 4rem 0;
    background-color: white;
}

.login-prompt {
    text-align: center;
    padding: 2rem;
}

.login-prompt p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

/* No Activity State */
.no-activity {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.no-activity p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        position: static;
    }
    
    .header-left {
        text-align: center;
    }
    
    .header-right {
        position: static;
        align-items: center;
        right: auto;
    }
    
    .header-title {
        font-size: 2rem;
    }
    
    .header-tagline {
        font-size: 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid,
    .games-grid,
    .stats-grid,
    .actions-grid,
    .mission-values,
    .team-grid,
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .profile-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .activity-item {
        flex-direction: column;
        text-align: center;
    }
}

/* PWA Specific Styles */
@media (display-mode: standalone) {
    .navbar {
        padding-top: calc(1rem + env(safe-area-inset-top));
    }
    
    .main-content {
        padding-top: env(safe-area-inset-top);
    }
}

/* Admin Content */
.admin-content {
    padding: 1rem 0;
}

/* Quick Actions */
.quick-actions {
    margin-bottom: 2rem;
}

.quick-actions h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.action-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e9ecef;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}

.action-icon {
    font-size: 2.5rem;
    color: #d09c1a;
    margin-bottom: 1rem;
}

.action-card h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.3rem;
}

.action-card p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}
