/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

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

        body {
            font-family: 'Georgia', serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .container {
            background: rgba(230, 220, 240, 0.9);
            border-radius: 20px;
            padding: 60px 40px;
            max-width: 600px;
            width: 100%;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            
        }

        .avatar {
            position: absolute;
            top: 30px;
            right: 40px;
            width: 50px;
            height: 50px;
            border: 3px solid #8b5a96;
            border-radius: 50%;
            background-image: url('avatar.jpg');
            background-size: cover;
            background-position: center;
            overflow: hidden;
        }

        .dialogue-box {
            background: #4a4a4a;
            color: white;
            padding: 20px 25px;
            border-radius: 15px;
            margin-bottom: 40px;
            position: relative;
            font-size: 16px;
            line-height: 1.5;
        }

        .dialogue-box::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 30px;
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid #4a4a4a;
        }

        .choices {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .choice-btn {
            background: linear-gradient(135deg, #8b5a96, #6b4c75);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
            box-shadow: 0 4px 15px rgba(139, 90, 150, 0.3);
        }

        .choice-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 90, 150, 0.4);
            background: linear-gradient(135deg, #9c6ba7, #7c5d86);
        }

        .choice-btn:active {
            transform: translateY(0);
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .container {
                padding: 40px 20px;
            }
            
            .choices {
                flex-direction: column;
                align-items: center;
            }
            
            .choice-btn {
                width: 100%;
                max-width: 300px;
            }
            
            .avatar {
                top: 20px;
                right: 20px;
            }
        }

        /* Loading animation */
        .fade-in {
            animation: fadeIn 1s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Hover effects for container */
        .container:hover {
            transform: translateY(-5px);
            transition: transform 0.3s ease;
        }
