 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

        body {
            background: linear-gradient(135deg, #7f7fd5 0%, #91eae4 100%);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            margin: 0;
            min-height: 100vh;
            font-family: Arial, sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0;
        }

        .welcome-banner {
            width: 100%;
            text-align: center;
            margin: 0 auto 40px auto;
            padding-top: 42px;
            padding-bottom: 14px;
        }

        .welcome-title {
            color: #ffd600;
            font-size: 2.6rem;
            font-weight: 900;
            letter-spacing: 0.018em;
            text-shadow: 0 2px 18px rgba(60, 60, 60, 0.13);
            margin-bottom: 13px;
        }

        .welcome-description {
            color: #e8ecf7;
            font-size: 1.25rem;
            font-weight: 500;
            margin-bottom: 24px;
        }

        .link-buttons-row {
            display: flex;
            justify-content: center;
            gap: 28px;
            flex-wrap: wrap;
            margin-top: 11px;
        }

        .link-button {
            text-decoration: none;
            background: #ffd600;
            color: #2c2f36;
            padding: 19px 33px;
            font-size: 1.27rem;
            font-weight: 700;
            border: none;
            border-radius: 18px;
            box-shadow: 0 8px 24px rgba(80, 80, 150, 0.15);
            cursor: pointer;
            transition: filter 0.12s, transform 0.13s;
            margin-bottom: 14px;
        }

        .link-button:hover {
            color: #0077ff;
            filter: brightness(0.94);
            transform: translateY(-2px) scale(1.04);
        }

        @media (max-width: 1100px) {
            .welcome-title {
                font-size: 2.2rem;
            }

            .welcome-description {
                font-size: 1.1rem;
            }

            .link-buttons-row {
                gap: 19px;
            }

            .link-button {
                font-size: 1.15rem;
                padding: 17px 24px;
            }
        }

        @media (max-width: 650px) {
            .welcome-banner {
                margin-bottom: 12px;
                padding-top: 28px;
            }

            .welcome-title {
                font-size: 1.15rem;
            }

            .welcome-description {
                font-size: 0.91rem;
            }

            .link-buttons-row {
                gap: 10px;
            }

            .link-button {
                font-size: 1rem;
                padding: 11px 8vw;
            }
        }

        .age-container {
            background: transparent;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
            border-radius: 24px;
            max-width: 900px;
            text-align: center;
            padding: 28px 44px 36px;
            margin-top: 36px;
            margin-left: auto;
            margin-right: auto;
        }

        .age-container h2 {
            color: #ffd600;
            font-size: 2.1rem;
            font-weight: 700;
            margin-bottom: 26px;
            margin-top: 18px;
            text-shadow: 0 3px 18px rgba(60, 60, 60, 0.09);
            letter-spacing: 0.02em;
        }

        .age-form {
            margin-bottom: 24px;
        }

        .age-form label {
            font-weight: 600;
            color: #2c2f36;
            margin-top: 13px;
            margin-bottom: 7px;
        }

        .age-form input[type="date"] {
            padding: 9px 10px;
            border: 1.5px solid #d6e6f6;
            border-radius: 8px;
            background: #f6faff;
            color: #323447;
            margin-bottom: 7px;
            max-width: 85%;
            font-size: 1rem;
            transition: border 0.22s;
            font-family: inherit;
            font-weight: 500;
        }

        .age-form button {
            background: #ffd600;
            color: #2c2f36;
            padding: 11px 18px;
            border: none;
            cursor: pointer;
            max-width: 90%;
            font-size: 1.09rem;
            font-weight: 700;
            border-radius: 11px;
            font-family: inherit;
            box-shadow: 0 4px 14px rgba(80, 80, 150, 0.23);
            transition: filter 0.12s, transform 0.13s;
        }

        .age-form button:hover {
            filter: brightness(0.94);
            transform: translateY(-1px) scale(1.03);
        }

        .result {
            margin-top: 24px;
            font-size: 1.12rem;
            font-weight: bold;
            color: #272921;
            text-align: center;
            min-height: 32px;
        }

        @media (max-width: 600px) {

            .link-buttons-row {
                gap: 12px;
            }

            .age-container {
                margin: 24px 0;
                padding: 18px 6px 16px 6px;
                max-width: 100vw;
            }

            h2 {
                font-size: 1.4rem;
            }

            .age-form button {
                font-size: 1rem;
                padding: 10px 12px;
                min-width: 80px;
            }

            .age-form input[type='date'] {
                font-size: 0.99rem;
                padding: 8px 5px;
                width: 100%
            }
        }
