/* Extracted from public/animusuno.php (issue #6).
 * Page-specific styles. Loaded after style.css so it can override
 * site-wide rules; future passes (issue #5) will deduplicate the
 * nav/header/footer rules that overlap with style.css. */

        .repos-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            background: url('assets/comic-paper-bk.png') repeat;
            background-color: #f5ecd7;
            min-height: 100vh;
        }
        
        .repos-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            border: 3px solid #a67c52;
            border-radius: 15px;
            background: rgba(245, 236, 215, 0.9);
            box-shadow: 0 8px 16px rgba(0,0,0,0.3);
        }
        
        .repos-header h1 {
            font-family: 'Bangers', cursive;
            font-size: 3rem;
            color: #2d1c0b;
            margin: 0 0 1rem 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .repos-header p {
            font-family: 'Exo 2', sans-serif;
            font-size: 1.2rem;
            color: #5d4037;
            margin: 0;
        }
        
        .org-logo {
            max-width: 150px;
            height: auto;
            margin: 0 auto 1rem auto;
            display: block;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }
        
        .repos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .repo-card {
            background: rgba(245, 236, 215, 0.95);
            border: 3px solid #a67c52;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .repo-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.3);
        }
        
        .repo-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #a67c52, #8b5a3c, #a67c52);
        }
        
        .repo-name {
            font-family: 'Orbitron', monospace;
            font-size: 1.3rem;
            font-weight: 700;
            color: #2d1c0b;
            margin: 0 0 0.5rem 0;
            word-break: break-word;
        }
        
        .repo-name a {
            color: #2d1c0b;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .repo-name a:hover {
            color: #a67c52;
        }
        
        .repo-description {
            font-family: 'Exo 2', sans-serif;
            color: #5d4037;
            margin: 0 0 1rem 0;
            line-height: 1.5;
            min-height: 3rem;
        }
        
        .repo-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
            margin: 1rem 0;
            font-family: 'Exo 2', sans-serif;
            font-size: 0.9rem;
            color: #666;
        }
        
        .repo-language {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .language-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            display: inline-block;
        }
        
        .repo-stats {
            display: flex;
            gap: 1rem;
            font-size: 0.9rem;
        }
        
        .stat {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        
        .repo-dates {
            font-size: 0.85rem;
            color: #888;
            margin-top: 0.5rem;
        }
        
        .repo-topics {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 1rem 0 0 0;
        }
        
        .topic-tag {
            background: #a67c52;
            color: white;
            padding: 0.2rem 0.6rem;
            border-radius: 12px;
            font-size: 0.75rem;
            font-family: 'Exo 2', sans-serif;
        }
        
        .error-message {
            text-align: center;
            padding: 3rem;
            background: rgba(245, 236, 215, 0.9);
            border: 3px solid #d32f2f;
            border-radius: 12px;
            color: #d32f2f;
            font-family: 'Exo 2', sans-serif;
            font-size: 1.1rem;
        }
        
        .back-link {
            text-align: center;
            margin: 3rem 0;
        }
        
        .back-link a {
            font-family: 'Bangers', cursive;
            font-size: 1.3rem;
            color: #a67c52;
            text-decoration: none;
            padding: 0.8rem 2rem;
            border: 2px solid #a67c52;
            border-radius: 8px;
            background: rgba(245, 236, 215, 0.9);
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .back-link a:hover {
            background: #a67c52;
            color: #f5ecd7;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        .stats-summary {
            text-align: center;
            margin: 2rem 0;
            padding: 1.5rem;
            background: rgba(166, 124, 82, 0.1);
            border-radius: 10px;
            font-family: 'Exo 2', sans-serif;
        }
        
        /* Organization Navigation Styles */
        .org-nav {
            margin-bottom: 2rem;
            padding: 1rem;
            background: rgba(245, 236, 215, 0.95);
            border: 3px solid #a67c52;
            border-radius: 15px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        
        .org-nav-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .org-nav-title {
            font-family: 'Bangers', cursive;
            font-size: 1.4rem;
            color: #2d1c0b;
            margin: 0 0 1rem 0;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .org-nav-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 0.8rem;
        }
        
        .org-nav-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1rem 0.8rem;
            background: rgba(255, 255, 255, 0.9);
            border: 2px solid #a67c52;
            border-radius: 12px;
            text-decoration: none;
            color: #2d1c0b;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .org-nav-link:hover, .org-nav-link.active {
            background: #a67c52;
            color: #f5ecd7;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        
        .org-icon {
            font-size: 1.5rem;
            margin-bottom: 0.3rem;
        }
        
        .org-name {
            font-family: 'Orbitron', monospace;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.2rem;
        }
        
        .org-desc {
            font-family: 'Exo 2', sans-serif;
            font-size: 0.75rem;
            opacity: 0.8;
            text-align: center;
        }
        
        /* Footer Navigation Styles */
        .site-footer {
            text-align: center;
            margin: 3rem 0 0 0;
            padding: 2rem 0;
            border-top: 3px solid #a67c52;
            background: rgba(245, 236, 215, 0.9);
        }
        
        .footer-nav {
            margin-bottom: 2rem;
        }
        
        .nav-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            width: 30px;
            height: 30px;
            justify-content: space-between;
            margin: 0 auto 1rem auto;
        }
        
        .nav-toggle span {
            width: 100%;
            height: 3px;
            background: #a67c52;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        .nav-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }
        
        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .nav-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }
        
        .nav-menu {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        
        .nav-button {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 1.5rem;
            background: rgba(245, 236, 215, 0.9);
            border: 2px solid #a67c52;
            border-radius: 10px;
            text-decoration: none;
            color: #2d1c0b;
            font-family: 'Exo 2', sans-serif;
            font-weight: 600;
            transition: all 0.3s ease;
            min-width: 80px;
        }
        
        .nav-button:hover, .nav-button.active {
            background: #a67c52;
            color: #f5ecd7;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        .nav-icon {
            font-size: 1.5rem;
        }
        
        .nav-text {
            font-size: 0.9rem;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.9);
            border: 2px solid #a67c52;
            border-radius: 50%;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .social-icon:hover {
            background: rgba(255, 255, 255, 1);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        
        .social-icon img {
            width: 24px;
            height: 24px;
            transition: opacity 0.3s ease;
        }
        
        .social-icon:hover img {
            opacity: 0.8;
        }
        
        .footer-info {
            font-size: 0.85rem;
            color: #888;
            font-family: 'Exo 2', sans-serif;
        }
        
        @media (max-width: 768px) {
            .repos-container {
                padding: 1rem;
            }
            
            .repos-header h1 {
                font-size: 2rem;
            }
            
            .repos-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .repo-card {
                padding: 1rem;
            }
            
            /* Mobile Navigation */
            .nav-toggle {
                display: flex;
            }
            
            .nav-menu {
                display: none;
                flex-direction: column;
                gap: 1rem;
                margin-top: 1rem;
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .nav-button {
                flex-direction: row;
                justify-content: flex-start;
                text-align: left;
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }
            
            .social-links {
                gap: 1rem;
            }
            
            .social-icon {
                width: 40px;
                height: 40px;
            }
            
            /* Mobile Organization Navigation */
            .org-nav {
                padding: 0.8rem;
                margin-bottom: 1.5rem;
            }
            
            .org-nav-title {
                font-size: 1.2rem;
            }
            
            .org-nav-links {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
                gap: 0.6rem;
            }
            
            .org-nav-link {
                padding: 0.8rem 0.5rem;
            }
            
            .org-icon {
                font-size: 1.3rem;
            }
            
            .org-name {
                font-size: 0.9rem;
            }
            
            .org-desc {
                font-size: 0.7rem;
            }
        }
    
