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

        body {
            background-color: #8b0000;
            font-family: 'Space Mono', monospace;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-image: url('background.png');
            background-size: cover;
            background-position: center;
            color: #333;
        }

        .content-wrapper {
            text-align: center;
            width: 90%;
            max-width: 600px;
        }

        header h1 {
            font-family: 'Dancing Script', cursive; 
            font-size: 4rem; 
            margin-bottom: 40px;
            color: #fceea7;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        #quote-box {
            background-color: #ffffff;
            padding: 30px 40px;
            margin-bottom: 40px;
            min-height: 150px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            border-radius: 2px;
            position: relative;
        }

        #quote-box::before {
            content: '';
            position: absolute;
            top: 5px; bottom: 5px; left: 5px; right: 5px;
            border: 1px dashed #ccc;
            pointer-events: none;
        }

        #phrase-display {
            font-size: 1.2rem;
            line-height: 1.6;
            font-weight: bold;
            color: #d32f2f;
        }

        button {
            font-family: 'Space Mono', monospace;
            background-color: #f3a638;
            color: #fff;
            border: 3px solid #c97e1c;
            padding: 15px 30px;
            font-size: 1.2rem;
            font-weight: bold;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.2s ease;
            text-transform: uppercase;
            box-shadow: 0 4px 6px rgba(0,0,0,0.3);
        }

        button:hover {
            background-color: #ffbc57;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.4);
        }

        button:active {
            transform: translateY(2px);
            box-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        footer {
            margin-top: 50px;
            font-size: 0.9rem;
            color: #fceea7;
        }