BuseyBench SVG Test
Generated by Anthropic on Jul 2, 2026 using prompt svg-v1-no-web.
5.1/10 overall
Scored by 3 vision models (gpt-5.2, gemini-3.1-pro-preview, claude-sonnet-4.6), 3 samples each, rubric rubric-v1. Overall = likeness 35% + face 25% + aesthetics 25% + prompt 15%.
Create a standalone SVG portrait of Gary Busey's face. Output only valid SVG markup. Do not wrap the SVG in Markdown fences. Do not use external images, links, scripts, CSS imports, or remote assets. Make the portrait recognizable as Gary Busey using vector shapes only. Include face shape, hair, eyes, eyebrows, nose, mouth, teeth, and expressive features. Use a 1024 by 1024 viewBox. Use detailed SVG-native vector techniques: layered paths, gradients, masks, clipping paths, shadows, highlights, blur filters, opacity, and fine strokes. The portrait should be as recognizable and detailed as possible.
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024" width="1024" height="1024">
<defs>
<!-- Skin gradient -->
<radialGradient id="skinGrad" cx="50%" cy="45%" r="55%" fx="50%" fy="40%">
<stop offset="0%" stop-color="#f4c48a"/>
<stop offset="60%" stop-color="#e8a96a"/>
<stop offset="100%" stop-color="#c97d45"/>
</radialGradient>
<!-- Face shadow gradient -->
<radialGradient id="faceShadow" cx="50%" cy="60%" r="50%">
<stop offset="0%" stop-color="#e8a96a" stop-opacity="0"/>
<stop offset="100%" stop-color="#8b5a2b" stop-opacity="0.5"/>
</radialGradient>
<!-- Hair gradient -->
<linearGradient id="hairGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#c8a96e"/>
<stop offset="40%" stop-color="#b8922a"/>
<stop offset="100%" stop-color="#7a5c1e"/>
</linearGradient>
<!-- Eye white gradient -->
<radialGradient id="eyeWhite" cx="50%" cy="40%" r="60%">
<stop offset="0%" stop-color="#ffffff"/>
<stop offset="100%" stop-color="#d8d0c0"/>
</radialGradient>
<!-- Iris gradient left -->
<radialGradient id="irisL" cx="40%" cy="35%" r="60%">
<stop offset="0%" stop-color="#7a9e6a"/>
<stop offset="50%" stop-color="#4a7a3a"/>
<stop offset="100%" stop-color="#2a4a1a"/>
</radialGradient>
<!-- Iris gradient right -->
<radialGradient id="irisR" cx="40%" cy="35%" r="60%">
<stop offset="0%" stop-color="#7a9e6a"/>
<stop offset="50%" stop-color="#4a7a3a"/>
<stop offset="100%" stop-color="#2a4a1a"/>
</radialGradient>
<!-- Teeth gradient -->
<linearGradient id="teethGrad" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#fffff0"/>
<stop offset="100%" stop-color="#e8e0c0"/>
</linearGradient>
<!-- Lip gradient -->
<linearGradient id="lipGrad" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#c06050"/>
<stop offset="100%" stop-color="#8a3a2a"/>
</linearGradient>
<!-- Lower lip gradient -->
<linearGradient id="lowerLipGrad" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#d07060"/>
<stop offset="100%" stop-color="#9a4a3a"/>
</linearGradient>
<!-- Nose shadow -->
<linearGradient id="noseGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#f0b880"/>
<stop offset="100%" stop-color="#b07040"/>
</linearGradient>
<!-- Background gradient -->
<radialGradient id="bgGrad" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#4a6080"/>
<stop offset="100%" stop-color="#1a2030"/>
</radialGradient>
<!-- Blur filter for soft shadows -->
<filter id="softBlur" x="-20%" y="-20%" width="140%" height="140%">
<feGaussianBlur stdDeviation="4"/>
</filter>
<filter id="veryBlur" x="-30%" y="-30%" width="160%" height="160%">
<feGaussianBlur stdDeviation="10"/>
</filter>
<filter id="subtleBlur">
<feGaussianBlur stdDeviation="1.5"/>
</filter>
<filter id="hairBlur">
<feGaussianBlur stdDeviation="2"/>
</filter>
<!-- Drop shadow for face -->
<filter id="faceDrop" x="-10%" y="-10%" width="130%" height="130%">
<feDropShadow dx="8" dy="12" stdDeviation="15" flood-color="#1a1008" flood-opacity="0.6"/>
</filter>
<!-- Wrinkle texture filter -->
<filter id="wrinkleFilter">
<feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" result="noise"/>
<feDisplacementMap in="SourceGraphic" in2="noise" scale="1.5" xChannelSelector="R" yChannelSelector="G"/>
</filter>
<!-- Clip path for face -->
<clipPath id="faceClip">
<ellipse cx="512" cy="520" rx="240" ry="290"/>
</clipPath>
<!-- Clip path for left eye -->
<clipPath id="leftEyeClip">
<ellipse cx="420" cy="460" rx="52" ry="28"/>
</clipPath>
<!-- Clip path for right eye -->
<clipPath id="rightEyeClip">
<ellipse cx="604" cy="460" rx="52" ry="28"/>
</clipPath>
<!-- Neck gradient -->
<linearGradient id="neckGrad" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#c97d45"/>
<stop offset="40%" stop-color="#e8a96a"/>
<stop offset="100%" stop-color="#b06030"/>
</linearGradient>
<!-- Shirt gradient -->
<linearGradient id="shirtGrad" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#2a3a5a"/>
<stop offset="100%" stop-color="#0a1020"/>
</linearGradient>
</defs>
<!-- Background -->
<rect width="1024" height="1024" fill="url(#bgGrad)"/>
<!-- Subtle background vignette -->
<radialGradient id="vignette" cx="50%" cy="50%" r="70%">
<stop offset="50%" stop-color="transparent"/>
<stop offset="100%" stop-color="#000000" stop-opacity="0.7"/>
</radialGradient>
<rect width="1024" height="1024" fill="url(#vignette)"/>
<!-- SHIRT / SHOULDERS -->
<path d="M 200 900 Q 250 820 320 800 Q 400 780 512 785 Q 624 780 704 800 Q 774 820 824 900 L 1024 1024 L 0 1024 Z" fill="url(#shirtGrad)"/>
<!-- Shirt collar shadow -->
<path d="M 380 800 Q 420 820 512 825 Q 604 820 644 800 Q 620 840 512 850 Q 404 840 380 800 Z" fill="#1a2a4a" opacity="0.8"/>
<!-- NECK -->
<path d="M 440 790 Q 460 830 512 840 Q 564 830 584 790 L 580 760 Q 560 780 512 785 Q 464 780 444 760 Z" fill="url(#neckGrad)"/>
<!-- Neck shadow left -->
<path d="M 440 790 Q 450 810 460 820 Q 450 800 444 760 Z" fill="#8b5a2b" opacity="0.4"/>
<!-- Neck shadow right -->
<path d="M 584 790 Q 574 810 564 820 Q 574 800 580 760 Z" fill="#8b5a2b" opacity="0.4"/>
<!-- Adam's apple -->
<ellipse cx="512" cy="800" rx="18" ry="12" fill="#d09060" opacity="0.6"/>
<!-- FACE BASE SHADOW (behind face for depth) -->
<ellipse cx="520" cy="530" rx="248" ry="298" fill="#5a3010" opacity="0.4" filter="url(#veryBlur)"/>
<!-- MAIN FACE SHAPE - Gary Busey has a large, broad face with prominent jaw -->
<path d="M 512 240
Q 620 238 680 270
Q 760 310 770 390
Q 780 460 775 520
Q 770 580 760 630
Q 745 680 730 710
Q 700 760 660 780
Q 620 800 580 805
Q 545 810 512 810
Q 479 810 444 805
Q 404 800 364 780
Q 324 760 294 710
Q 279 680 264 630
Q 254 580 249 520
Q 244 460 249 390
Q 258 310 338 270
Q 398 238 512 240 Z"
fill="url(#skinGrad)" filter="url(#faceDrop)"/>
<!-- Face overlay shadow for depth -->
<path d="M 512 240
Q 620 238 680 270
Q 760 310 770 390
Q 780 460 775 520
Q 770 580 760 630
Q 745 680 730 710
Q 700 760 660 780
Q 620 800 580 805
Q 545 810 512 810
Q 479 810 444 805
Q 404 800 364 780
Q 324 760 294 710
Q 279 680 264 630
Q 254 580 249 520
Q 244 460 249 390
Q 258 310 338 270
Q 398 238 512 240 Z"
fill="url(#faceShadow)" opacity="0.5"/>
<!-- CHEEK HIGHLIGHTS -->
<ellipse cx="390" cy="530" rx="55" ry="40" fill="#f8d0a0" opacity="0.25" filter="url(#softBlur)"/>
<ellipse cx="634" cy="530" rx="55" ry="40" fill="#f8d0a0" opacity="0.25" filter="url(#softBlur)"/>
<!-- FOREHEAD LINES - Gary has prominent forehead wrinkles -->
<!-- Main forehead wrinkle lines -->
<path d="M 390 330 Q 450 320 512 322 Q 574 320 634 330" fill="none" stroke="#c07840" stroke-width="2" opacity="0.5"/>
<path d="M 400 350 Q 456 340 512 342 Q 568 340 624 350" fill="none" stroke="#c07840" stroke-width="1.5" opacity="0.4"/>
<path d="M 410 370 Q 462 362 512 363 Q 562 362 614 370" fill="none" stroke="#c07840" stroke-width="1.5" opacity="0.35"/>
<!-- Vertical forehead crease -->
<path d="M 490 310 Q 495 340 492 370" fill="none" stroke="#b06830" stroke-width="1.5" opacity="0.4"/>
<path d="M 534 310 Q 529 340 532 370" fill="none" stroke="#b06830" stroke-width="1.5" opacity="0.4"/>
<!-- HAIR - Gary Busey has distinctive wild, sandy/blonde hair -->
<!-- Back hair layer -->
<path d="M 280 380 Q 260 300 280 240 Q 310 160 380 130 Q 440 105 512 100 Q 584 105 644 130 Q 714 160 744 240 Q 764 300 744 380 Q 730 340 720 300 Q 700 240 660 200 Q 620 165 512 160 Q 404 165 364 200 Q 324 240 304 300 Q 294 340 280 380 Z"
fill="#9a7020" opacity="0.7"/>
<!-- Main hair mass -->
<path d="M 270 390 Q 255 310 265 240 Q 280 170 330 130 Q 390 90 512 85 Q 634 90 694 130 Q 744 170 759 240 Q 769 310 754 390
Q 740 350 730 310 Q 710 240 670 195 Q 630 155 512 150 Q 394 155 354 195 Q 314 240 294 310 Q 284 350 270 390 Z"
fill="url(#hairGrad)"/>
<!-- Hair strands - wild Busey hair texture -->
<!-- Left side hair strands -->
<path d="M 270 390 Q 255 360 248 330 Q 240 295 245 265 Q 252 290 258 320 Q 265 355 272 385 Z" fill="#c8a040" opacity="0.8"/>
<path d="M 278 370 Q 262 340 258 305 Q 255 275 260 250 Q 268 278 272 308 Q 278 340 282 368 Z" fill="#a07820" opacity="0.7"/>
<!-- Right side hair strands -->
<path d="M 754 390 Q 769 360 776 330 Q 784 295 779 265 Q 772 290 766 320 Q 759 355 752 385 Z" fill="#c8a040" opacity="0.8"/>
<path d="M 746 370 Q 762 340 766 305 Q 769 275 764 250 Q 756 278 752 308 Q 746 340 742 368 Z" fill="#a07820" opacity="0.7"/>
<!-- Top hair with wild strands -->
<path d="M 350 160 Q 380 120 420 100 Q 460 82 512 80 Q 564 82 604 100 Q 644 120 674 160
Q 650 140 620 125 Q 580 108 512 105 Q 444 108 404 125 Q 374 140 350 160 Z"
fill="#d4a840" opacity="0.9"/>
<!-- Wild hair strands on top -->
<path d="M 420 95 Q 415 70 425 50 Q 430 72 428 92 Z" fill="#c8a040" opacity="0.8"/>
<path d="M 460 85 Q 458 58 468 38 Q 472 60 470 83 Z" fill="#b89030" opacity="0.8"/>
<path d="M 512 82 Q 512 55 520 35 Q 524 57 522 80 Z" fill="#c8a040" opacity="0.8"/>
<path d="M 555 85 Q 558 58 548 38 Q 544 60 546 83 Z" fill="#b89030" opacity="0.8"/>
<path d="M 595 95 Q 600 68 590 50 Q 586 72 588 92 Z" fill="#c8a040" opacity="0.8"/>
<!-- More wild strands -->
<path d="M 440 88 Q 432 62 442 42 Q 448 64 446 86 Z" fill="#d4a840" opacity="0.7"/>
<path d="M 485 82 Q 480 55 490 35 Q 495 57 493 80 Z" fill="#c09030" opacity="0.7"/>
<path d="M 535 82 Q 540 55 530 35 Q 525 57 527 80 Z" fill="#d4a840" opacity="0.7"/>
<path d="M 578 88 Q 586 62 576 42 Q 570 64 572 86 Z" fill="#c09030" opacity="0.7"/>
<!-- Hair shadow/depth on sides -->
<path d="M 270 390 Q 260 350 262 310 Q 265 270 278 240 Q 285 265 282 295 Q 280 330 278 365 Z" fill="#7a5010" opacity="0.5"/>
<path d="M 754 390 Q 764 350 762 310 Q 759 270 746 240 Q 739 265 742 295 Q 744 330 746 365 Z" fill="#7a5010" opacity="0.5"/>
<!-- Hair highlight -->
<path d="M 440 110 Q 480 95 512 92 Q 544 95 584 110 Q 560 100 512 98 Q 464 100 440 110 Z" fill="#e8c870" opacity="0.6"/>
<!-- EARS -->
<!-- Left ear -->
<path d="M 252 470 Q 238 460 232 480 Q 226 500 230 520 Q 234 540 242 550 Q 252 558 262 550 Q 270 542 268 525 Q 266 505 260 490 Z" fill="#e0a060" stroke="#c07840" stroke-width="1"/>
<!-- Left ear inner -->
<path d="M 248 478 Q 238 488 238 505 Q 238 522 244 532 Q 250 540 256 535 Q 260 528 258 515 Q 256 500 252 488 Z" fill="#c07840" opacity="0.5"/>
<!-- Right ear -->
<path d="M 772 470 Q 786 460 792 480 Q 798 500 794 520 Q 790 540 782 550 Q 772 558 762 550 Q 754 542 756 525 Q 758 505 764 490 Z" fill="#e0a060" stroke="#c07840" stroke-width="1"/>
<!-- Right ear inner -->
<path d="M 776 478 Q 786 488 786 505 Q 786 522 780 532 Q 774 540 768 535 Q 764 528 766 515 Q 768 500 772 488 Z" fill="#c07840" opacity="0.5"/>
<!-- EYEBROWS - Gary has thick, expressive, slightly arched eyebrows -->
<!-- Left eyebrow shadow -->
<path d="M 362 408 Q 390 392 430 388 Q 462 386 482 394 Q 462 390 430 394 Q 396 398 368 414 Z" fill="#5a3a10" opacity="0.3" filter="url(#softBlur)"/>
<!-- Left eyebrow main -->
<path d="M 365 415 Q 385 398 415 390 Q 445 384 472 388 Q 490 392 492 400 Q 478 396 458 396 Q 428 396 400 406 Q 378 414 368 422 Z" fill="#7a5a20"/>
<!-- Left eyebrow texture strands -->
<path d="M 370 418 Q 390 404 415 396 Q 440 390 465 392 Q 450 394 428 400 Q 404 408 382 418 Z" fill="#9a7a30" opacity="0.8"/>
<path d="M 375 412 Q 395 400 420 393 Q 445 387 468 390" fill="none" stroke="#5a3a10" stroke-width="1.5" opacity="0.6"/>
<path d="M 372 420 Q 392 406 418 398 Q 444 392 470 394" fill="none" stroke="#8a6a28" stroke-width="1" opacity="0.5"/>
<!-- Right eyebrow shadow -->
<path d="M 662 408 Q 634 392 594 388 Q 562 386 542 394 Q 562 390 594 394 Q 628 398 656 414 Z" fill="#5a3a10" opacity="0.3" filter="url(#softBlur)"/>
<!-- Right eyebrow main -->
<path d="M 659 415 Q 639 398 609 390 Q 579 384 552 388 Q 534 392 532 400 Q 546 396 566 396 Q 596 396 624 406 Q 646 414 656 422 Z" fill="#7a5a20"/>
<!-- Right eyebrow texture -->
<path d="M 654 418 Q 634 404 609 396 Q 584 390 559 392 Q 574 394 596 400 Q 620 408 642 418 Z" fill="#9a7a30" opacity="0.8"/>
<path d="M 649 412 Q 629 400 604 393 Q 579 387 556 390" fill="none" stroke="#5a3a10" stroke-width="1.5" opacity="0.6"/>
<!-- EYES - Gary Busey has wide, intense, slightly bulging eyes -->
<!-- Left eye socket shadow -->
<ellipse cx="420" cy="462" rx="62" ry="36" fill="#8a5020" opacity="0.3" filter="url(#softBlur)"/>
<!-- Left eye white -->
<ellipse cx="420" cy="460" rx="52" ry="28" fill="url(#eyeWhite)"/>
<!-- Left iris -->
<circle cx="420" cy="460" r="20" fill="url(#irisL)"/>
<!-- Left iris detail rings -->
<circle cx="420" cy="460" r="20" fill="none" stroke="#2a5a1a" stroke-width="1.5" opacity="0.6"/>
<circle cx="420" cy="460" r="15" fill="none" stroke="#3a6a2a" stroke-width="1" opacity="0.4"/>
<!-- Left pupil -->
<circle cx="420" cy="460" r="10" fill="#0a0a08"/>
<!-- Left eye highlight -->
<circle cx="413" cy="453" r="4" fill="white" opacity="0.9"/>
<circle cx="428" cy="468" r="2" fill="white" opacity="0.4"/>
<!-- Left eye upper lid -->
<path d="M 368 460 Q 390 435 420 432 Q 450 435 472 460" fill="none" stroke="#5a3010" stroke-width="3.5"/>
<!-- Left eye lower lid -->
<path d="M 368 460 Q 390 480 420 482 Q 450 480 472 460" fill="none" stroke="#8a5030" stroke-width="2"/>
<!-- Left upper eyelid crease -->
<path d="M 372 455 Q 396 438 420 436 Q 444 438 468 455" fill="none" stroke="#c07840" stroke-width="1" opacity="0.4"/>
<!-- Left eyelashes upper -->
<path d="M 370 458 Q 375 445 372 438" fill="none" stroke="#2a1a08" stroke-width="2"/>
<path d="M 382 448 Q 384 434 380 427" fill="none" stroke="#2a1a08" stroke-width="2"/>
<path d="M 396 442 Q 396 428 392 421" fill="none" stroke="#2a1a08" stroke-width="2"/>
<path d="M 410 440 Q 410 425 408 418" fill="none" stroke="#2a1a08" stroke-width="2"/>
<path d="M 424 440 Q 426 425 424 418" fill="none" stroke="#2a1a08" stroke-width="2"/>
<path d="M 438 442 Q 440 428 440 421" fill="none" stroke="#2a1a08" stroke-width="2"/>
<path d="M 452 446 Q 456 432 458 426" fill="none" stroke="#2a1a08" stroke-width="2"/>
<path d="M 464 454 Q 470 442 474 436" fill="none" stroke="#2a1a08" stroke-width="2"/>
<!-- Right eye socket shadow -->
<ellipse cx="604" cy="462" rx="62" ry="36" fill="#8a5020" opacity="0.3" filter="url(#softBlur)"/>
<!-- Right eye white -->
<ellipse cx="604" cy="460" rx="52" ry="28" fill="url(#eyeWhite)"/>
<!-- Right iris -->
<circle cx="604" cy="460" r="20" fill="url(#irisR)"/>
<!-- Right iris detail -->
<circle cx="604" cy="460" r="20" fill="none" stroke="#2a5a1a" stroke-width="1.5" opacity="0.6"/>
<circle cx="604" cy="460" r="15" fill="none" stroke="#3a6a2a" stroke-width="1" opacity="0.4"/>
<!-- Right pupil -->
<circle cx="604" cy="460" r="10" fill="#0a0a08"/>
<!-- Right eye highlight -->
<circle cx="597" cy="453" r="4" fill="white" opacity="0.9"/>
<circle cx="612" cy="468" r="2" fill="white" opacity="0.4"/>
<!-- Right eye upper lid -->
<path d="M 552 460 Q 574 435 604 432 Q 634 435 656 460" fill="none" stroke="#5a3010" stroke-width="3.5"/>
<!-- Right eye lower lid -->
<path d="M 552 460 Q 574 480 604 482 Q 634 480 656 460" fill="none" stroke="#8a5030" stroke-width="2"/>
<!-- Right upper eyelid crease -->
<path d="M 556 455 Q 580 438 604 436 Q 628 438 652 455" fill="none" stroke="#c07840" stroke-width="1" opacity="0.4"/>
<!-- Right eyelashes upper -->
<path d="M 554 458 Q 549 445 552 438" fill="none" stroke="#2a1a08" stroke-width="2"/>
<path d="M 566 448 Q 564 434 568 427" fill="none" stroke="#2a1a08" stroke-width="2"/>
<path d="M 580 442 Q 580 428 584 421" fill="none" stroke="#2a1a08" stroke-width="2"/>
<path d="M 594 440 Q 594 425 596 418" fill="none" stroke="#2a1a08" stroke-width="2"/>
<path d="M 608 440 Q 608 425 610 418" fill="none" stroke="#2a1a08" stroke-width="2"/>
<path d="M 622 442 Q 622 428 620 421" fill="none" stroke="#2a1a08" stroke-width="2"/>
<path d="M 636 446 Q 638 432 636 426" fill="none" stroke="#2a1a08" stroke-width="2"/>
<path d="M 648 454 Q 654 442 650 436" fill="none" stroke="#2a1a08" stroke-width="2"/>
<!-- Under-eye bags - Gary has prominent ones -->
<path d="M 372 478 Q 396 492 420 492 Q 444 492 468 478" fill="none" stroke="#c08050" stroke-width="1.5" opacity="0.5"/>
<path d="M 556 478 Q 580 492 604 492 Q 628 492 652 478" fill="none" stroke="#c08050" stroke-width="1.5" opacity="0.5"/>
<!-- Under eye shadow -->
<ellipse cx="420" cy="488" rx="45" ry="10" fill="#8a5020" opacity="0.2" filter="url(#subtleBlur)"/>
<ellipse cx="604" cy="488" rx="45" ry="10" fill="#8a5020" opacity="0.2" filter="url(#subtleBlur)"/>
<!-- NOSE - Gary has a large, prominent nose with wide nostrils -->
<!-- Nose bridge shadow -->
<path d="M 490 400 Q 485 450 480 490 Q 476 520 478 545" fill="none" stroke="#b07040" stroke-width="2" opacity="0.4"/>
<path d="M 534 400 Q 539 450 544 490 Q 548 520 546 545" fill="none" stroke="#b07040" stroke-width="2" opacity="0.4"/>
<!-- Nose main shape -->
<path d="M 492 405 Q 488 440 484 475 Q 480 505 478 530 Q 476 555 480 565 Q 490 580 512 582 Q 534 580 544 565 Q 548 555 546 530 Q 544 505 540 475 Q 536 440 532 405 Q 522 400 512 400 Q 502 400 492 405 Z" fill="#e8a060" opacity="0.3"/>
<!-- Nose tip -->
<path d="M 470 555 Q 478 575 512 580 Q 546 575 554 555 Q 548 570 512 574 Q 476 570 470 555 Z" fill="#d09060"/>
<!-- Nose tip highlight -->
<ellipse cx="512" cy="562" rx="22" ry="12" fill="#f0b878" opacity="0.6"/>
<!-- Left nostril -->
<path d="M 462 560 Q 455 548 458 538 Q 462 528 472 528 Q 482 528 486 538 Q 490 550 484 562 Q 476 572 466 568 Z" fill="#c07040"/>
<!-- Left nostril opening -->
<path d="M 464 558 Q 460 548 463 540 Q 467 533 473 534 Q 479 535 482 543 Q 484 552 480 560 Q 474 566 468 563 Z" fill="#7a3a18"/>
<!-- Right nostril -->
<path d="M 562 560 Q 569 548 566 538 Q 562 528 552 528 Q 542 528 538 538 Q 534 550 540 562 Q 548 572 558 568 Z" fill="#c07040"/>
<!-- Right nostril opening -->
<path d="M 560 558 Q 564 548 561 540 Q 557 533 551 534 Q 545 535 542 543 Q 540 552 544 560 Q 550 566 556 563 Z" fill="#7a3a18"/>
<!-- Nose bridge highlight -->
<path d="M 505 410 Q 503 450 502 490 Q 501 520 502 545" fill="none" stroke="#f0c080" stroke-width="3" opacity="0.4"/>
<!-- Nasolabial folds - prominent on Gary -->
<path d="M 468 560 Q 455 590 448 620 Q 442 645 445 665" fill="none" stroke="#b07040" stroke-width="2" opacity="0.5"/>
<path d="M 556 560 Q 569 590 576 620 Q 582 645 579 665" fill="none" stroke="#b07040" stroke-width="2" opacity="0.5"/>
<!-- MOUTH - Gary Busey is famous for his enormous, wide smile with big teeth -->
<!-- Mouth shadow/depth -->
<ellipse cx="512" cy="690" rx="90" ry="20" fill="#5a2010" opacity="0.3" filter="url(#softBlur)"/>
<!-- Upper lip -->
<path d="M 430 672 Q 455 660 480 658 Q 496 656 512 658 Q 528 656 544 658 Q 569 660 594 672 Q 580 665 560 663 Q 540 661 512 662 Q 484 661 464 663 Q 444 665 430 672 Z" fill="url(#lipGrad)"/>
<!-- Upper lip main shape - wide Busey smile -->
<path d="M 428 675 Q 448 660 478 656 Q 496 653 512 655 Q 528 653 546 656 Q 576 660 596 675 Q 580 668 558 665 Q 538 662 512 663 Q 486 662 466 665 Q 444 668 428 675 Z" fill="#b05040"/>
<!-- Cupid's bow -->
<path d="M 428 675 Q 460 658 490 655 Q 512 653 534 655 Q 564 658 596 675 Q 570 665 545 662 Q 528 660 512 661 Q 496 660 479 662 Q 454 665 428 675 Z" fill="#c06050"/>
<!-- Mouth opening - wide grin -->
<path d="M 432 678 Q 460 695 512 698 Q 564 695 592 678 Q 580 700 560 710 Q 540 718 512 720 Q 484 718 464 710 Q 444 700 432 678 Z" fill="#2a0808"/>
<!-- TEETH - Gary Busey is famous for his large, prominent teeth -->
<!-- Teeth background -->
<path d="M 436 680 Q 460 696 512 699 Q 564 696 588 680 Q 576 700 556 710 Q 536 718 512 720 Q 488 718 468 710 Q 448 700 436 680 Z" fill="url(#teethGrad)"/>
<!-- Individual upper teeth - very prominent and large -->
<!-- Tooth 1 - far left -->
<path d="M 438 682 Q 444 678 450 680 Q 452 690 450 700 Q 444 698 440 692 Z" fill="#fffff0" stroke="#d0c8a0" stroke-width="0.5"/>
<!-- Tooth 2 -->
<path d="M 450 680 Q 458 676 466 678 Q 468 690 466 702 Q 458 700 452 698 Z" fill="#fffff0" stroke="#d0c8a0" stroke-width="0.5"/>
<!-- Tooth 3 -->
<path d="M 466 678 Q 476 674 484 676 Q 486 690 484 704 Q 476 702 468 700 Z" fill="#fffff0" stroke="#d0c8a0" stroke-width="0.5"/>
<!-- Tooth 4 - center left -->
<path d="M 484 676 Q 494 672 502 674 Q 504 690 502 706 Q 494 704 486 702 Z" fill="#fffff8" stroke="#d0c8a0" stroke-width="0.5"/>
<!-- Tooth 5 - center right -->
<path d="M 502 674 Q 512 670 522 674 Q 524 690 522 706 Q 512 706 502 706 Z" fill="#fffff8" stroke="#d0c8a0" stroke-width="0.5"/>
<!-- Tooth 6 -->
<path d="M 522 674 Q 530 672 538 676 Q 540 690 538 704 Q 530 704 524 706 Z" fill="#fffff8" stroke="#d0c8a0" stroke-width="0.5"/>
<!-- Tooth 7 -->
<path d="M 538 676 Q 548 674 556 678 Q 558 690 556 702 Q 548 702 540 702 Z" fill="#fffff0" stroke="#d0c8a0" stroke-width="0.5"/>
<!-- Tooth 8 -->
<path d="M 556 678 Q 564 676 572 680 Q 574 690 572 700 Q 564 700 558 700 Z" fill="#fffff0" stroke="#d0c8a0" stroke-width="0.5"/>
<!-- Tooth 9 - far right -->
<path d="M 572 680 Q 578 678 584 682 Q 584 692 582 700 Q 576 698 574 698 Z" fill="#fffff0" stroke="#d0c8a0" stroke-width="0.5"/>
<!-- Lower teeth visible -->
<path d="M 444 700 Q 460 706 512 708 Q 564 706 580 700 Q 570 712 548 716 Q 530 720 512 720 Q 494 720 476 716 Q 454 712 444 700 Z" fill="#f8f0d8"/>
<!-- Lower teeth lines -->
<path d="M 460 702 L 462 714" stroke="#d0c8a0" stroke-width="0.8" opacity="0.6"/>
<path d="M 480 704 L 482 716" stroke="#d0c8a0" stroke-width="0.8" opacity="0.6"/>
<path d="M 500 705 L 502 718" stroke="#d0c8a0" stroke-width="0.8" opacity="0.6"/>
<path d="M 524 705 L 522 718" stroke="#d0c8a0" stroke-width="0.8" opacity="0.6"/>
<path d="M 544 704 L 542 716" stroke="#d0c8a0" stroke-width="0.8" opacity="0.6"/>
<path d="M 562 702 L 560 714" stroke="#d0c8a0" stroke-width="0.8" opacity="0.6"/>
<!-- Tooth shadow/depth between upper and lower -->
<path d="M 436 698 Q 460 706 512 708 Q 564 706 588 698" fill="none" stroke="#8a6040" stroke-width="1.5" opacity="0.4"/>
<!-- Lower lip -->
<path d="M 432 718 Q 460 735 512 738 Q 564 735 592 718 Q 576 730 556 736 Q 536 742 512 742 Q 488 742 468 736 Q 448 730 432 718 Z" fill="url(#lowerLipGrad)"/>
<!-- Lower lip highlight -->
<ellipse cx="512" cy="732" rx="40" ry="8" fill="#e08070" opacity="0.5"/>
<!-- Smile lines / dimples -->
<path d="M 430 678 Q 420 700 418 720 Q 416 740 420 755" fill="none" stroke="#b07040" stroke-width="2" opacity="0.5"/>
<path d="M 594 678 Q 604 700 606 720 Q 608 740 604 755" fill="none" stroke="#b07040" stroke-width="2" opacity="0.5"/>
<!-- CHIN - Gary has a strong, prominent chin -->
<!-- Chin cleft -->
<path d="M 505 790 Q 512 800 519 790" fill="none" stroke="#b07040" stroke-width="2" opacity="0.4"/>
<!-- Chin highlight -->
<ellipse cx="512" cy="780" rx="35" ry="18" fill="#f0b878" opacity="0.25" filter="url(#subtleBlur)"/>
<!-- Chin shadow -->
<path d="M 460 790 Q 480 808 512 812 Q 544 808 564 790 Q 548 805 512 808 Q 476 805 460 790 Z" fill="#8a5020" opacity="0.3"/>
<!-- FACIAL STUBBLE / TEXTURE - Gary often has some stubble -->
<!-- Chin stubble area -->
<ellipse cx="512" cy="770" rx="80" ry="35" fill="#8a6030" opacity="0.08"/>
<!-- Stubble dots -->
<circle cx="470" cy="760" r="1.5" fill="#6a4020" opacity="0.3"/>
<circle cx="485" cy="768" r="1.5" fill="#6a4020" opacity="0.3"/>
<circle cx="500" cy="762" r="1.5" fill="#6a4020" opacity="0.3"/>
<circle cx="515" cy="770" r="1.5" fill="#6a4020" opacity="0.3"/>
<circle cx="530" cy="762" r="1.5" fill="#6a4020" opacity="0.3"/>
<circle cx="545" cy="768" r="1.5" fill="#6a4020" opacity="0.3"/>
<circle cx="558" cy="760" r="1.5" fill="#6a4020" opacity="0.3"/>
<circle cx="478" cy="778" r="1.5" fill="#6a4020" opacity="0.25"/>
<circle cx="494" cy="775" r="1.5" fill="#6a4020" opacity="0.25"/>
<circle cx="510" cy="780" r="1.5" fill="#6a4020" opacity="0.25"/>
<circle cx="526" cy="775" r="1.5" fill="#6a4020" opacity="0.25"/>
<circle cx="542" cy="778" r="1.5" fill="#6a4020" opacity="0.25"/>
<!-- FACE CONTOUR LINES - cheekbones, jaw definition -->
<!-- Left cheekbone shadow -->
<path d="M 268 490 Q 290 510 310 530 Q 330 550 340 570" fill="none" stroke="#8a5020" stroke-width="3" opacity="0.25" filter="url(#subtleBlur)"/>
<!-- Right cheekbone shadow -->
<path d="M 756 490 Q 734 510 714 530 Q 694 550 684 570" fill="none" stroke="#8a5020" stroke-width="3" opacity="0.25" filter="url(#subtleBlur)"/>
<!-- Jaw line definition -->
<path d="M 280 620 Q 300 680 340 730 Q 380 770 440 790" fill="none" stroke="#8a5020" stroke-width="2" opacity="0.2"/>
<path d="M 744 620 Q 724 680 684 730 Q 644 770 584 790" fill="none" stroke="#8a5020" stroke-width="2" opacity="0.2"/>
<!-- ADDITIONAL WRINKLES AND CHARACTER LINES -->
<!-- Crow's feet left eye -->
<path d="M 472 458 Q 488 450 498 445" fill="none" stroke="#b07040" stroke-width="1.2" opacity="0.4"/>
<path d="M 472 465 Q 490 462 500 460" fill="none" stroke="#b07040" stroke-width="1" opacity="0.35"/>
<path d="M 470 472 Q 488 472 498 474" fill="none" stroke="#b07040" stroke-width="1" opacity="0.3"/>
<!-- Crow's feet right eye -->
<path d="M 552 458 Q 536 450 526 445" fill="none" stroke="#b07040" stroke-width="1.2" opacity="0.4"/>
<path d="M 552 465 Q 534 462 524 460" fill="none" stroke="#b07040" stroke-width="1" opacity="0.35"/>
<path d="M 554 472 Q 536 472 526 474" fill="none" stroke="#b07040" stroke-width="1" opacity="0.3"/>
<!-- Glabella lines between eyebrows -->
<path d="M 498 415 Q 500 430 498 445" fill="none" stroke="#b07040" stroke-width="1.5" opacity="0.45"/>
<path d="M 526 415 Q 524 430 526 445" fill="none" stroke="#b07040" stroke-width="1.5" opacity="0.45"/>
<!-- OVERALL FACE LIGHTING OVERLAY -->
<!-- Left side shadow -->
<path d="M 249 390 Q 244 460 249 520 Q 254 580 264 630 Q 279 680 294 710 Q 324 760 364 780 Q 404 800 444 805 Q 404 795 368 772 Q 328 748 300 700 Q 278 660 266 610 Q 254 560 250 510 Q 246 460 250 410 Z" fill="#8a4010" opacity="0.2"/>
<!-- Right side shadow -->
<path d="M 775 390 Q 780 460 775 520 Q 770 580 760 630 Q 745 680 730 710 Q 700 760 660 780 Q 620 800 580 805 Q 620 795 656 772 Q 696 748 724 700 Q 746 660 758 610 Q 770 560 774 510 Q 778 460 774 410 Z" fill="#8a4010" opacity="0.2"/>
<!-- Top forehead highlight -->
<ellipse cx="512" cy="300" rx="120" ry="60" fill="#f8d0a0" opacity="0.2" filter="url(#softBlur)"/>
<!-- FINAL DETAILS -->
<!-- Philtrum (groove above lip) -->
<path d="M 496 620 Q 500 640 498 658" fill="none" stroke="#b07040" stroke-width="1.5" opacity="0.4"/>
<path d="M 528 620 Q 524 640 526 658" fill="none" stroke="#b07040" stroke-width="1.5" opacity="0.4"/>
<!-- Lip corner shadows -->
<circle cx="430" cy="678" r="5" fill="#8a3020" opacity="0.5"/>
<circle cx="594" cy="678" r="5" fill="#8a3020" opacity="0.5"/>
<!-- Subtle skin texture overlay -->
<path d="M 350 400 Q 380 395 410 398 Q 380 402 350 408 Z" fill="#e0a060" opacity="0.1"/>
<!-- Eye glint/intensity - Gary has very intense eyes -->
<circle cx="420" cy="458" r="2" fill="#ffffff" opacity="0.7"/>
<circle cx="604" cy="458" r="2" fill="#ffffff" opacity="0.7"/>
<!-- Subtle overall warm light from upper left -->
<radialGradient id="warmLight" cx="30%" cy="20%" r="60%">
<stop offset="0%" stop-color="#fff0d0" stop-opacity="0.15"/>
<stop offset="100%" stop-color="#fff0d0" stop-opacity="0"/>
</radialGradient>
<path d="M 512 240
Q 620 238 680 270
Q 760 310 770 390
Q 780 460 775 520
Q 770 580 760 630
Q 745 680 730 710
Q 700 760 660 780
Q 620 800 580 805
Q 545 810 512 810
Q 479 810 444 805
Q 404 800 364 780
Q 324 760 294 710
Q 279 680 264 630
Q 254 580 249 520
Q 244 460 249 390
Q 258 310 338 270
Q 398 238 512 240 Z"
fill="url(#warmLight)"/>
</svg>