        :root {
            --accent: #5865F2;
            --light: #ffffff;
            --secondary: #764ba2;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

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

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(3, 550px);
            gap: 20px;
            padding: 0;
            background: transparent;
            justify-content: center;
        }

        .project-card-link {
            display: contents;
            text-decoration: none;
        }

        .project-card {
            position: relative;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 25px;
            width: 550px;
            max-width: 550px;
            margin: 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            color: #333;
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .project-header {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 25px;
        }

        .project-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(88, 101, 242, 0.25);
            border-color: rgba(88, 101, 242, 0.3);
        }

        .project-image {
            width: 160px;
            height: 120px;
            border-radius: 12px;
            flex-shrink: 0;
            background-size: cover;
            background-position: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .project-image-content {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
        }

        .project-image-placeholder {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            font-weight: 500;
            text-align: center;
        }

        .project-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(88, 101, 242, 0.1);
            border-radius: 12px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .project-card:hover .project-image::after {
            opacity: 1;
        }

        .project-info {
            flex: 1;
            min-width: 0;
        }

        .project-title {
            font-size: 24px;
            font-weight: bold;
            color: var(--accent);
            margin: 0 0 15px 0;
            word-wrap: break-word;
            line-height: 1.3;
        }

        .owner-section {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }

        .project-profile-picture {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            transition: border-color 0.3s ease;
        }

        .project-card:hover .project-profile-picture {
            border-color: var(--accent);
        }

        .username {
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }

        .owner-link {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .owner-link:hover {
            text-decoration: none;
            color: var(--accent);
        }

        .owner-link:hover .username {
            color: var(--accent);
        }

        .owner-link:hover .project-profile-picture {
            border-color: var(--accent);
            transform: scale(1.05);
        }

        .category {
            font-size: 16px;
            color: #666;
            background: rgba(88, 101, 242, 0.1);
            padding: 6px 16px;
            border-radius: 20px;
            display: inline-block;
            font-weight: 500;
            margin-bottom: 20px;
        }

        .project-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .stat-item {
            text-align: center;
            flex: 1;
        }

        .stat-label {
            font-size: 14px;
            font-weight: 600;
            color: #666;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .stat-value {
            font-size: 16px;
            color: #333;
            font-weight: 600;
        }

        .players-count {
            font-size: 20px;
            font-weight: bold;
            color: var(--accent);
        }

        .required-score {
            font-size: 20px;
            font-weight: bold;
            color: var(--accent);
        }

        @media (max-width: 1800px) {
            .projects-grid {
                grid-template-columns: repeat(2, 550px);
            }
        }

        @media (max-width: 1200px) {
            .projects-grid {
                grid-template-columns: repeat(1, 550px);
            }
        }

        @media (max-width: 600px) {
            .projects-grid {
                grid-template-columns: 1fr;
                padding: 10px;
                background: transparent;
            }
            
            .project-card {
                width: 100%;
                margin: 10px;
                padding: 20px;
            }
            
            .project-header {
                flex-direction: column;
                align-items: stretch;
            }
            
            .project-image {
                width: 100%;
                height: 140px;
            }
            
            .project-title {
                font-size: 20px;
            }
            
            .project-stats {
                flex-direction: column;
                gap: 15px;
            }

            .stat-item {
                text-align: left;
            }
        }

        @media (max-width: 480px) {
            .page-title {
                font-size: 2rem;
            }
            
            .projects-grid {
                padding: 5px;
            }
            
            .project-card {
                margin: 5px;
                padding: 15px;
            }
        }

        /* Form Styles */
        .current-image {
            margin: 15px 0;
            text-align: center;
        }

        .current-image img {
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        input[type="file"] {
            padding: 10px;
            border: 2px dashed rgba(88, 101, 242, 0.3);
            border-radius: 8px;
            background: rgba(88, 101, 242, 0.05);
            transition: all 0.3s ease;
        }

        input[type="file"]:hover {
            border-color: var(--accent);
            background: rgba(88, 101, 242, 0.1);
        }

        input[type="file"]:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.1);
        }

        /* Image Selection Styles */
        .image-selection-section {
            margin: 20px 0;
            padding: 20px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 12px;
            border: 1px solid rgba(88, 101, 242, 0.2);
        }

        .image-selection-section h3 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 20px;
        }

        .image-selection-section h4 {
            color: #333;
            margin: 20px 0 15px 0;
            font-size: 16px;
        }

        .image-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }

        .image-option {
            position: relative;
            border: 2px solid transparent;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .image-option:hover {
            border-color: rgba(88, 101, 242, 0.3);
            transform: translateY(-2px);
        }

        .image-radio {
            position: absolute;
            opacity: 0;
        }

        .image-radio:checked + label {
            border-color: var(--accent);
            background: rgba(88, 101, 242, 0.1);
        }

        .image-option label {
            display: block;
            cursor: pointer;
            padding: 10px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .image-label {
            text-align: center;
        }

        .image-label strong {
            display: block;
            font-size: 14px;
            color: #333;
            margin-bottom: 4px;
        }

        .image-label small {
            color: #666;
            font-size: 12px;
        }

        .file-upload-section {
            margin-bottom: 20px;
        }

        .file-input {
            width: 100%;
        }