:root {
            --primary-color: #34D3A7;
            --primary-highlight: #36E9E4;
            --primary-noir: #1F1F21;
            --accent-color: #FF6B00;
            --text-color: #1F1F21;
            --light-bg: #F5F9F6;
        }

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

        body {
            font-family: 'Be Vietnam Pro', 'Arial', sans-serif;
            line-height: 1.6;
            background-color: #FFFFFF;
            color: var(--text-color);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 0 20px 20px 20px;;
            background-image: linear-gradient(135deg, #FFFFFF 0%, #FFFFFF 100%);
        }

        .container {
            width: 100%;
            max-width: 900px;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            text-align: center;
        }

        .header {
            background: var(--primary-noir);
            text-align: left;
            color: #1F1F21;
            padding: 15px 15px 15px 45px;
            position: relative;
        }

        .logo {
            width: 150px;
            height: auto;
        }

        h1 {
            margin: 25px 0 0;
            font-size: clamp(2rem, 4.5vw, 2.5rem);
            line-height: 35px;
            text-align: left;
        }

        h2 {
            font-family: 'Be Vietnam Pro', Arial, sans-serif;
            font-size: clamp(1.5rem, 4.5vw, 1.6rem);
            font-weight: lighter;
            line-height: 35px;
            text-align: left;
            margin-bottom: 45px;
            position: relative;
            display: block;
            width: 100%;
            padding-bottom: 18px;
        }

        h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 9.375rem;
            height: 2px;
            background: #333;
        }

        .content {
            background-image: url("../images/gradient-background.png");
            background-repeat: no-repeat;
            background-size: cover;
            padding: 15px 45px 15px 45px;
        }

        p {
            margin-bottom: 15px;
            font-family: 'Open Sans', Arial, sans-serif;
            font-size: clamp(0.95rem, 3vw, 1.1rem);
        }

        .announce p{
            margin-bottom: 25px;
            font-style: normal;
            font-weight: 400;
            text-align: left;
            font-family: 'Open Sans', Arial, sans-serif;
            font-size: clamp(1.35rem, 3vw, 1.5rem);
        }

        .announce span {
            font-weight: 700;
        }

        .announce {
            border-bottom: 2px solid var(--primary-noir);
            padding-bottom: 20px;
        }

        .contact-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            /*margin-top: 2rem;*/
            padding-top: 1.5rem;
            padding-bottom: 2.5rem;
            font-size: clamp(0.95rem, 3vw, 1.1rem);
            font-weight: 700;
        }

        .contact-card {
            padding: 1.5rem 1.5rem 1.5rem 0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: left;
            margin-left: 0;
        }

        .contact-card:hover {
            transform: translateY(-3px);
        }

        .email-card {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1rem;
            margin-top: 15px;
            transition: all 0.3s ease;
            font-size: clamp(0.95rem, 3vw, 1.1rem);
            width: 15rem;
            text-align: center;
            border: 2px solid var(--primary-noir);
        }

        .email-card a {
            color: var(--text-color);
            text-align: center;
        }

        .email-card:hover {
            background: var(--primary-noir);
        }

        .email-icon {
            width: 1.25rem;
            height: 1.25rem;
            stroke: var(--text-color);
            margin-right: 0.75rem;
            flex-shrink: 0;
        }

        .contact-label {
            color: var(--text-color);
            font-size: clamp(0.95rem, 3vw, 1.1rem);
            margin-bottom: 0;
        }

        .email-link {
            color: var(--text-color);
            font-weight: 700;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .email-card:hover, .email-card:hover a {
            color: var(--primary-color);
        }

        .maintenance-image {
            width: 100%;
            height: auto;
            text-align: center;
        }

        .responsive-image {
            width: 100%;
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 4px 12px rgba(0, 187, 44, 0.15));
            transition: transform 0.3s ease;
        }

        .responsive-image:hover {
            transform: scale(1.02);
        }

        .image-caption {
            color: var(--primary-color);
            font-style: italic;
            margin-top: 0.5rem;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .loading-dots {
            display: inline-flex;
            align-items: center;
            height: 1em;
        }

        .loading-dots span {
            display: inline-block;
            width: 0.2em;
            height: 0.2em;
            margin: 0 0.1em;
            background: currentColor;
            border-radius: 50%;
            animation: bounce 1.4s infinite ease-in-out both;
        }

        .loading-dots span:nth-child(1) { animation-delay: -0.32s; }
        .loading-dots span:nth-child(2) { animation-delay: -0.16s; }

        @keyframes bounce {
            0%, 80%, 100% { transform: scale(0); }
            40% { transform: scale(1); }
        }

        .loading-image {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 1rem auto;
            width: 100%;
            max-width: 100px;
        }

        .loading-image .responsive-image {
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 100px;
            object-fit: contain;
        }

        .loading-image {
            animation: pulse 2s infinite ease-in-out;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.9; transform: scale(0.98); }
            50% { opacity: 1; transform: scale(1.02); }
        }

        @media (max-width: 600px) {
            body {
                padding: 0;
            }

            .header {
                padding: 12px 15px;
            }

            .content {
                padding: 15px;
                background-image: url("../images/gradient-background-phone.png");
                background-repeat: no-repeat;

            }

            h2 {
                padding-top: 9px;
                line-height: 42px;
            }

            .contact-card {
                padding: 1.5rem 1.5rem 1.5rem 1.5rem;
                box-shadow: 0 4px 12px rgba(0, 150, 35, 0.12);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
                text-align: center;
                margin-left: 0;
            }

            .game-container {
                padding: 12px;
            }

            .guess-input, .guess-button {
                width: 100%;
                margin: 5px 0;
            }

            .guess-button {
                padding: 10px;
            }

            .contact-cards {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

        }

        @media (max-width: 400px) {
            .header {
                padding: 12px 15px;
            }

            .logo {
                width: 80px;
            }

            .email-card {
                padding: 0.6rem;
            }

            .email-icon {
                width: 1rem;
                height: 1rem;
                margin-right: 0.5rem;
            }
        }