
/*** T3SB identifier: t3sbsCSSassets_32065 */

/* t3sbs_assets_32065 */
        :root {
            --pixelegg-orange: #ff6b35;
            --pixelegg-blue: #2c5aa0;
            --dark-gray: #333;
            --light-gray: #f8f9fa;
            --border-gray: #e9ecef;

/* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--pixelegg-blue) 0%, #1e3c72 100%);
            color: white;
            padding: 100px 0 80px;
            text-align: center;
        }

        .hero h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero .subtitle {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .hero .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 60px;
            text-align: center;
        }

        .stat-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            display: block;
            margin-bottom: 10px;
        }

        .cta-button {
            background: var(--pixelegg-orange);
            color: white;
            padding: 15px 35px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 700;
            display: inline-block;
            margin: 10px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .cta-button:hover {
            background: #e55a2b;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
        }

        /* Section Styling */
        section {
            padding: 80px 0;
        }

        .section-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            color: var(--pixelegg-blue);
            margin-bottom: 15px;
            text-align: center;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 50px;
        }

        /* Reference Cards */
        .reference-category {
            margin-bottom: 80px;
        }

        .category-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            color: var(--pixelegg-blue);
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--pixelegg-orange);
        }

        .reference-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .reference-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .reference-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .reference-card.featured {
            border: 3px solid var(--pixelegg-orange);
            position: relative;
        }

        .reference-card.featured::before {
            content: "★ FEATURED";
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--pixelegg-orange);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            z-index: 10;
        }

        .reference-header {
            background: var(--pixelegg-blue);
            color: white;
            padding: 25px;
        }

        .reference-header h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 5px;
        }

        .reference-meta {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-top: 10px;
        }

        .reference-body {
            padding: 25px;
        }

        .reference-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .tag {
            background: var(--light-gray);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--dark-gray);
            font-weight: 600;
        }

        .tag.typo3 {
            background: #ff8700;
            color: white;
        }

        .reference-description {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .reference-highlights {
            background: var(--light-gray);
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .reference-highlights h4 {
            color: var(--pixelegg-blue);
            margin-bottom: 12px;
            font-size: 1rem;
        }

        .reference-highlights ul {
            list-style: none;
            padding-left: 0;
        }

        .reference-highlights li {
            padding: 5px 0;
            padding-left: 25px;
            position: relative;
            color: #555;
        }

        .reference-highlights li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--pixelegg-orange);
            font-weight: 700;
        }

        .reference-metrics {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .metric-box {
            text-align: center;
            padding: 15px;
            background: #e8f4ff;
            border-radius: 8px;
        }

        .metric-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--pixelegg-blue);
            display: block;
        }

        .metric-label {
            font-size: 0.8rem;
            color: #666;
            margin-top: 5px;
        }

        /* Funding Section */
        .funding-section {
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
        }

        .funding-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .funding-highlight {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            margin-top: 30px;
        }

        .funding-highlight h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .funding-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .funding-item {
            background: rgba(255, 255, 255, 0.15);
            padding: 20px;
            border-radius: 8px;
        }

        /* Tech Stack */
        .tech-stack {
            background: var(--light-gray);
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .tech-item {
            background: white;
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid var(--pixelegg-orange);
        }

        .tech-item h3 {
            color: var(--pixelegg-blue);
            margin-bottom: 10px;
        }

        /* Footer */
        footer {
            background: var(--dark-gray);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: var(--pixelegg-orange);
            margin-bottom: 20px;
        }

        .footer-section a {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
        }

        .footer-section a:hover {
            color: var(--pixelegg-orange);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #555;
            color: #999;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .reference-grid {
                grid-template-columns: 1fr;
            }

            nav {
                display: none;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Timeline for long partnerships */
        .timeline {
            position: relative;
            padding: 20px 0;
            margin: 30px 0;
        }

        .timeline-item {
            padding: 15px 0;
            padding-left: 40px;
            position: relative;
        }

        .timeline-item:before {
            content: "";
            position: absolute;
            left: 10px;
            top: 25px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--pixelegg-orange);
        }

        .timeline-item:after {
            content: "";
            position: absolute;
            left: 15px;
            top: 37px;
            width: 2px;
            height: calc(100% - 12px);
            background: var(--border-gray);
        }

        .timeline-item:last-child:after {
            display: none;
        }

        .timeline-year {
            font-weight: 700;
            color: var(--pixelegg-blue);
            font-size: 1.1rem;
        }
	

