* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background: linear-gradient(135deg, #d946a6 0%, #9333ea 50%, #d946a6 100%);
            background-attachment: fixed;
            background-size: 400% 400%;
            position: relative;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 5% 15%, rgba(255, 255, 255, 0.15) 2.5px, transparent 2.5px),
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.12) 2px, transparent 2px),
                radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.15) 2.5px, transparent 2.5px),
                radial-gradient(circle at 45% 75%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
                radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.15) 3px, transparent 3px),
                radial-gradient(circle at 75% 35%, rgba(255, 255, 255, 0.12) 2.5px, transparent 2.5px),
                radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
                radial-gradient(circle at 90% 60%, rgba(255, 255, 255, 0.12) 2.5px, transparent 2.5px),
                radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.15) 3px, transparent 3px),
                radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
                radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.12) 2.5px, transparent 2.5px),
                radial-gradient(circle at 25% 80%, rgba(255, 255, 255, 0.15) 2.5px, transparent 2.5px),
                radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
                radial-gradient(circle at 15% 40%, rgba(255, 255, 255, 0.12) 2.5px, transparent 2.5px),
                radial-gradient(circle at 65% 15%, rgba(255, 255, 255, 0.15) 2px, transparent 2px);
            background-size: 100% 100%;
            background-repeat: repeat;
            pointer-events: none;
            z-index: 0;
        }
        
        body > * {
            position: relative;
            z-index: 1;
        }

        nav {
            background-color: #b525d0;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
            justify-content: center;
        }

        nav a {
            color: #2b2b2b;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #00bfff;
        }

        .content {
            padding: 2rem;
            text-align: center;
            animation: fadeInDown 1s ease-in;
        }

        .content h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #2b2b2b;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .content p {
            font-size: 1.1rem;
            color: #2b2b2b;
            line-height: 1.6;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .help-quote {
            margin: 2rem auto;
            max-width: 1100px;
            width: 90%;
            display: block;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            color: #111;
            font-size: 3.2rem;
            line-height: 1.2;
            font-weight: 700;
            cursor: pointer;
            user-select: none;
            text-align: center;
        }

        .help-quote:active { transform: scale(0.995); }

        .help-quote.fade {
            animation: helpPop 420ms cubic-bezier(.16,.84,.24,1) both;
        }

        @keyframes helpPop {
            0%   { opacity: 0; transform: translateY(10px) scale(0.96) rotate(-0.6deg); }
            70%  { opacity: 1; transform: translateY(-3px) scale(1.02) rotate(0.6deg); }
            100% { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); }
        }

        .hint { color: #000000; font-size: 0.95rem; margin-top: 0.5rem; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); }

        textarea {
            border-radius: 12px;
            background-color: #b525d0;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            padding: 1.5rem;
            border: none;
            font-family: Arial, sans-serif;
            font-size: 1rem;
            resize: none;
            transition: all 0.3s ease;
            color: #000000;
            width: 90%;
            max-width: 600px;
            min-height: 150px;
            overflow: hidden;
        }

        textarea::placeholder {
            color: #2b2b2b;
        }

        textarea:focus {
            outline: none;
            box-shadow: 0 8px 32px rgba(0,0,0,0.2);
            transform: translateY(-2px);
        }

        @media (max-width: 480px) {
            textarea {
                width: 95%;
                min-height: 120px;
                font-size: 0.9rem;
                padding: 1rem;
            }
        }

        @media (min-width: 481px) and (max-width: 768px) {
            textarea {
                width: 92%;
                min-height: 150px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            textarea {
                width: 85%;
                min-height: 200px;
            }
        }

        @media (min-width: 1025px) {
            textarea {
                width: 80%;
                min-height: 250px;
            }
        }

        button {
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            padding: 1rem 2rem;
            border: none;
            background-color: #b525d0;
            color: #2b2b2b;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        button:hover {
            box-shadow: 0 8px 32px rgba(0,0,0,0.2);
            transform: translateY(-2px);
            background-color: #a01fb8;
        }

        button:active {
            transform: scale(0.995);
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }