/* TheFrequencyTeam Filebit Theme */

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

        :root {
            --primary-color: #fff;
            --background-color: #1a1919;
            --shadow-color: rgba(190, 190, 194, 0.1);
            --hover-color: #1c1c1c;
        }

        body {
            background: var(--background-color);
            margin: 0;
            padding: 0;
            font-family: 'Roboto Flex', sans-serif;
            color: var(--primary-color);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .container {
            max-width: 800px;
            margin: 20px auto;
            background: var(--background-color);
            box-shadow: 0 2px 8px var(--shadow-color);
            border-radius: 0;
            position: relative;
        }

        .header {
            padding: 20px;
            text-align: left;
            border-bottom: 1px solid var(--shadow-color);
        }

        .header h1 {
            font-size: 32px;
            margin: 0;
            font-weight: 600;
            font-variation-settings: 'wdth' 100;
            transition: font-variation-settings 0.3s ease;
        }

        .header h1:hover {
            font-variation-settings: 'wdth' 150;
        }

        .header h2 {
            font-size: 20px;
            margin: 10px 0 0 0;
            font-weight: 400;
            color: #c7c7c7;
        }

        .content {
            padding: 20px;
        }

        .project-list {
            list-style: none;
            padding: 0;
        }

        .project-item {
            margin-bottom: 15px;
            padding: 20px;
            background: var(--background-color);
            border: 1px solid var(--shadow-color);
            border-radius: 0;
            transition: transform 0.2s, box-shadow 0.2s;
            position: relative;
        }

        .project-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px var(--shadow-color);
        }

        .project-info {
            flex-grow: 1;
            margin-right: 20px;
            padding-right: 120px;
        }

        .project-title {
            font-weight: 600;
            margin-bottom: 5px;
            font-variation-settings: 'wdth' 100;
            transition: font-variation-settings 0.3s ease;
        }

        .project-title:hover {
            font-variation-settings: 'wdth' 150;
        }

        .project-description {
            color: #c7c7c7;
            font-size: 14px;
        }

        .visit-button {
            display: inline-block;
            background: var(--primary-color);
            color: var(--background-color);
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 0;
            font-size: 14px;
            transition: background-color 0.2s, font-variation-settings 0.3s ease;
            font-variation-settings: 'wdth' 100;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
        }

        .visit-button:hover {
            background: #dedee0;
            font-variation-settings: 'wdth' 150;
        }

        .footer {
            padding: 20px;
            text-align: center;
            border-top: 1px solid var(--shadow-color);
            font-size: 14px;
            color: #666;
        }

        .social-links {
            margin: 15px 0;
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .social-links a {
            color: var(--primary-color);
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 0;
            transition: background-color 0.2s, font-variation-settings 0.3s ease;
            font-variation-settings: 'wdth' 100;
        }

        .social-links a:hover {
            background: var(--hover-color);
            font-variation-settings: 'wdth' 150;
        }

        @media (max-width: 768px) {
            .container {
                margin: 0;
                border-radius: 0;
            }
            
            .project-item {
                text-align: center;
                padding-bottom: 80px;
                min-height: 120px;
            }

            .project-info {
                padding-right: 0;
                margin-right: 0;
                margin-bottom: 20px;
            }

            .visit-button {
                position: absolute;
                right: 50%;
                transform: translateX(50%);
                top: auto;
                bottom: 20px;
                width: calc(100% - 40px);
                max-width: 300px;
            }

            .social-links {
                flex-direction: column;
                align-items: center;
            }

            .social-links a {
                width: 80%;
                text-align: center;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                animation: none !important;
                transition: none !important;
            }
        }

        @supports not (display: flex) {
            .social-links {
                text-align: center;
            }
            .social-links a {
                display: inline-block;
                margin: 5px;
            }
        }

        @view-transition {
            navigation: auto;
        }


