Spaces:
Runtime error
Runtime error
File size: 380,894 Bytes
0227d13 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 | user_id,title_id,watch_date,user_rating,completion_rate,discovery_source,liked_flag,finished_flag,title,type,genre,maturity_rating,release_year,seasons,duration_min,imdb_rating,platform_popularity,description,genre_primary,is_recent_release,duration_bucket,quality_score,first_name,age_group,favorite_genre_1,favorite_genre_2,preferred_length,viewing_pattern,discovery_style,weekly_sessions,primary_device
U001,T001,2025-11-29,3.6,65,browse row,0,0,Stranger Things,TV Show,"Sci-Fi, Drama",TV-14,2016,4,51,8.7,95,Supernatural mysteries unfold in a small town.,Sci-Fi,0,short,115.5,Jordan,25-34,Crime,Drama,long,weekends,comfort rewatcher,3,laptop
U001,T006,2025-06-18,4.1,67,email click,1,0,Bridgerton,TV Show,"Romance, Drama",TV-MA,2020,3,60,7.4,84,Love and scandal shape the London social season.,Romance,1,short,99.2,Jordan,25-34,Crime,Drama,long,weekends,comfort rewatcher,3,laptop
U001,T047,2025-07-14,3.1,46,friend recommendation,0,0,The Mitchells vs. the Machines,Movie,"Animation, Comedy",PG,2021,1,113,7.6,74,A quirky family saves the world from a robot uprising.,Animation,1,medium,98.2,Jordan,25-34,Crime,Drama,long,weekends,comfort rewatcher,3,laptop
U001,T032,2025-11-17,2.5,72,homepage banner,0,0,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Jordan,25-34,Crime,Drama,long,weekends,comfort rewatcher,3,laptop
U001,T014,2025-10-05,3.4,81,browse row,0,0,Cobra Kai,TV Show,"Comedy, Action",TV-14,2018,6,34,8.4,75,Old karate rivals reignite decades later.,Comedy,0,short,106.5,Jordan,25-34,Crime,Drama,long,weekends,comfort rewatcher,3,laptop
U001,T056,2025-11-13,2.9,69,browse row,0,0,Damsel,Movie,"Fantasy, Adventure",PG-13,2024,1,109,6.1,89,A princess fights to survive a dragon-filled cave.,Fantasy,1,medium,87.7,Jordan,25-34,Crime,Drama,long,weekends,comfort rewatcher,3,laptop
U001,T035,2025-05-01,2.1,55,friend recommendation,0,0,The Adam Project,Movie,"Sci-Fi, Adventure",PG-13,2022,1,106,6.7,73,A time-traveling pilot teams up with his younger self.,Sci-Fi,1,medium,88.9,Jordan,25-34,Crime,Drama,long,weekends,comfort rewatcher,3,laptop
U001,T050,2025-04-27,3.3,93,browse row,0,1,Baby Reindeer,TV Show,"Drama, Thriller",TV-MA,2024,1,33,8.3,86,A comedian faces a stalking nightmare.,Drama,1,short,108.8,Jordan,25-34,Crime,Drama,long,weekends,comfort rewatcher,3,laptop
U001,T013,2025-08-11,3.2,50,browse row,0,0,Black Mirror,TV Show,"Sci-Fi, Thriller",TV-MA,2011,6,60,8.7,76,Dark anthology tales explore technology's consequences.,Sci-Fi,0,short,109.8,Jordan,25-34,Crime,Drama,long,weekends,comfort rewatcher,3,laptop
U001,T041,2026-01-25,4.2,81,browse row,1,0,The Killer,Movie,"Thriller, Crime",R,2023,1,118,6.8,60,A meticulous assassin faces unexpected consequences.,Thriller,1,medium,86.0,Jordan,25-34,Crime,Drama,long,weekends,comfort rewatcher,3,laptop
U001,T034,2025-08-16,2.6,80,search,0,0,Enola Holmes,Movie,"Mystery, Adventure",PG-13,2020,1,123,6.6,78,Sherlock's sister searches for her missing mother.,Mystery,1,medium,89.4,Jordan,25-34,Crime,Drama,long,weekends,comfort rewatcher,3,laptop
U001,T060,2025-12-22,4.5,100,friend recommendation,1,1,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Jordan,25-34,Crime,Drama,long,weekends,comfort rewatcher,3,laptop
U001,T017,2025-01-15,2.5,65,browse row,0,0,The Night Agent,TV Show,"Action, Thriller",TV-MA,2023,1,45,7.5,83,An FBI agent uncovers a conspiracy from a late-night call.,Action,1,short,99.9,Jordan,25-34,Crime,Drama,long,weekends,comfort rewatcher,3,laptop
U001,T004,2025-06-16,3.8,97,browse row,0,1,The Queen's Gambit,TV Show,Drama,TV-MA,2020,1,56,8.5,89,A chess prodigy battles addiction and fame.,Drama,1,short,111.7,Jordan,25-34,Crime,Drama,long,weekends,comfort rewatcher,3,laptop
U002,T029,2025-07-03,3.8,78,friend recommendation,0,0,Bird Box,Movie,"Thriller, Horror",R,2018,1,124,6.6,88,Survivors avoid a mysterious force that drives people mad.,Thriller,0,medium,92.4,Sam,18-24,Animation,Crime,long,weekends,comfort rewatcher,5,mobile
U002,T053,2025-08-09,1.4,64,search,0,0,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Sam,18-24,Animation,Crime,long,weekends,comfort rewatcher,5,mobile
U002,T008,2025-05-06,2.8,68,email click,0,0,Dark,TV Show,"Sci-Fi, Mystery",TV-MA,2017,3,52,8.7,80,Time-travel secrets emerge in a German town.,Sci-Fi,0,short,111.0,Sam,18-24,Animation,Crime,long,weekends,comfort rewatcher,5,mobile
U002,T012,2025-07-30,3.9,81,email click,0,0,Ozark,TV Show,"Crime, Drama",TV-MA,2017,4,60,8.5,77,A family launders money for a dangerous cartel.,Crime,0,short,108.1,Sam,18-24,Animation,Crime,long,weekends,comfort rewatcher,5,mobile
U002,T051,2025-12-16,3.1,45,search,0,0,Ripley,TV Show,"Thriller, Drama",TV-MA,2024,1,55,8.1,67,"A grifter is drawn into wealth, deception, and murder.",Thriller,1,short,101.1,Sam,18-24,Animation,Crime,long,weekends,comfort rewatcher,5,mobile
U002,T021,2025-03-29,3.0,96,search,0,1,Breaking Bad,TV Show,"Crime, Drama",TV-MA,2008,5,47,9.5,99,A chemistry teacher turns to meth production.,Crime,0,short,124.7,Sam,18-24,Animation,Crime,long,weekends,comfort rewatcher,5,mobile
U002,T043,2025-02-10,3.3,52,email click,0,0,Army of the Dead,Movie,"Action, Horror",R,2021,1,148,5.7,58,Mercenaries enter zombie-infested Las Vegas for a heist.,Action,1,long,74.4,Sam,18-24,Animation,Crime,long,weekends,comfort rewatcher,5,mobile
U002,T016,2025-07-15,2.4,54,email click,0,0,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Sam,18-24,Animation,Crime,long,weekends,comfort rewatcher,5,mobile
U002,T018,2025-12-16,3.1,69,search,0,0,One Piece,TV Show,"Adventure, Fantasy",TV-14,2023,1,55,8.4,90,Pirates hunt treasure in a live-action adaptation.,Adventure,1,short,111.0,Sam,18-24,Animation,Crime,long,weekends,comfort rewatcher,5,mobile
U002,T028,2025-09-12,2.9,74,email click,0,0,Marriage Story,Movie,Drama,R,2019,1,137,7.9,68,A couple navigates a painful divorce.,Drama,0,long,99.4,Sam,18-24,Animation,Crime,long,weekends,comfort rewatcher,5,mobile
U002,T006,2025-03-15,3.3,74,search,0,0,Bridgerton,TV Show,"Romance, Drama",TV-MA,2020,3,60,7.4,84,Love and scandal shape the London social season.,Romance,1,short,99.2,Sam,18-24,Animation,Crime,long,weekends,comfort rewatcher,5,mobile
U002,T061,2025-08-25,3.3,71,friend recommendation,0,0,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Sam,18-24,Animation,Crime,long,weekends,comfort rewatcher,5,mobile
U003,T051,2025-05-11,3.7,83,browse row,0,0,Ripley,TV Show,"Thriller, Drama",TV-MA,2024,1,55,8.1,67,"A grifter is drawn into wealth, deception, and murder.",Thriller,1,short,101.1,Riley,45-54,Animation,Drama,long,weeknights,comfort rewatcher,6,mobile
U003,T047,2026-02-16,4.6,87,homepage banner,1,1,The Mitchells vs. the Machines,Movie,"Animation, Comedy",PG,2021,1,113,7.6,74,A quirky family saves the world from a robot uprising.,Animation,1,medium,98.2,Riley,45-54,Animation,Drama,long,weeknights,comfort rewatcher,6,mobile
U003,T014,2025-05-28,3.4,95,email click,0,1,Cobra Kai,TV Show,"Comedy, Action",TV-14,2018,6,34,8.4,75,Old karate rivals reignite decades later.,Comedy,0,short,106.5,Riley,45-54,Animation,Drama,long,weeknights,comfort rewatcher,6,mobile
U003,T021,2025-03-22,2.5,87,browse row,0,1,Breaking Bad,TV Show,"Crime, Drama",TV-MA,2008,5,47,9.5,99,A chemistry teacher turns to meth production.,Crime,0,short,124.7,Riley,45-54,Animation,Drama,long,weeknights,comfort rewatcher,6,mobile
U003,T042,2025-08-15,3.3,61,friend recommendation,0,0,Leave the World Behind,Movie,"Thriller, Drama",R,2023,1,141,6.4,82,A family vacation turns ominous during a blackout.,Thriller,1,long,88.6,Riley,45-54,Animation,Drama,long,weeknights,comfort rewatcher,6,mobile
U003,T053,2025-10-28,1.3,45,friend recommendation,0,0,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Riley,45-54,Animation,Drama,long,weeknights,comfort rewatcher,6,mobile
U003,T061,2025-11-24,3.0,69,homepage banner,0,0,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Riley,45-54,Animation,Drama,long,weeknights,comfort rewatcher,6,mobile
U003,T015,2025-12-20,2.7,55,friend recommendation,0,0,Heartstopper,TV Show,"Romance, Teen",TV-14,2022,2,31,8.5,87,"Two students navigate identity, friendship, and love.",Romance,1,short,111.1,Riley,45-54,Animation,Drama,long,weeknights,comfort rewatcher,6,mobile
U003,T050,2025-08-22,4.1,100,friend recommendation,1,1,Baby Reindeer,TV Show,"Drama, Thriller",TV-MA,2024,1,33,8.3,86,A comedian faces a stalking nightmare.,Drama,1,short,108.8,Riley,45-54,Animation,Drama,long,weeknights,comfort rewatcher,6,mobile
U003,T013,2025-04-12,3.3,49,homepage banner,0,0,Black Mirror,TV Show,"Sci-Fi, Thriller",TV-MA,2011,6,60,8.7,76,Dark anthology tales explore technology's consequences.,Sci-Fi,0,short,109.8,Riley,45-54,Animation,Drama,long,weeknights,comfort rewatcher,6,mobile
U003,T002,2025-09-05,5.0,97,browse row,1,1,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Riley,45-54,Animation,Drama,long,weeknights,comfort rewatcher,6,mobile
U003,T023,2025-05-02,3.3,55,homepage banner,0,0,Peaky Blinders,TV Show,"Crime, History",TV-MA,2013,6,58,8.8,83,A Birmingham gang rises after World War I.,Crime,0,short,112.9,Riley,45-54,Animation,Drama,long,weeknights,comfort rewatcher,6,mobile
U003,T012,2025-10-20,3.6,87,friend recommendation,0,1,Ozark,TV Show,"Crime, Drama",TV-MA,2017,4,60,8.5,77,A family launders money for a dangerous cartel.,Crime,0,short,108.1,Riley,45-54,Animation,Drama,long,weeknights,comfort rewatcher,6,mobile
U003,T056,2025-10-22,2.9,87,friend recommendation,0,1,Damsel,Movie,"Fantasy, Adventure",PG-13,2024,1,109,6.1,89,A princess fights to survive a dragon-filled cave.,Fantasy,1,medium,87.7,Riley,45-54,Animation,Drama,long,weeknights,comfort rewatcher,6,mobile
U003,T040,2025-12-25,4.8,72,friend recommendation,1,0,Guillermo del Toro's Pinocchio,Movie,"Animation, Fantasy",PG,2022,1,117,7.6,66,A wooden boy comes to life in wartime Italy.,Animation,1,medium,95.8,Riley,45-54,Animation,Drama,long,weeknights,comfort rewatcher,6,mobile
U004,T013,2026-03-01,2.3,75,homepage banner,0,0,Black Mirror,TV Show,"Sci-Fi, Thriller",TV-MA,2011,6,60,8.7,76,Dark anthology tales explore technology's consequences.,Sci-Fi,0,short,109.8,Jamie,25-34,Comedy,Action,medium,weekends,comfort rewatcher,3,mobile
U004,T042,2025-05-21,2.9,63,browse row,0,0,Leave the World Behind,Movie,"Thriller, Drama",R,2023,1,141,6.4,82,A family vacation turns ominous during a blackout.,Thriller,1,long,88.6,Jamie,25-34,Comedy,Action,medium,weekends,comfort rewatcher,3,mobile
U004,T036,2025-10-17,3.6,74,browse row,0,0,The Gray Man,Movie,"Action, Thriller",PG-13,2022,1,122,6.5,71,A CIA asset becomes the target of a global manhunt.,Action,1,medium,86.3,Jamie,25-34,Comedy,Action,medium,weekends,comfort rewatcher,3,mobile
U004,T052,2025-11-07,4.1,75,homepage banner,1,0,3 Body Problem,TV Show,"Sci-Fi, Mystery",TV-MA,2024,1,58,7.6,84,Scientists confront a cosmic threat from first contact.,Sci-Fi,1,short,101.2,Jamie,25-34,Comedy,Action,medium,weekends,comfort rewatcher,3,mobile
U004,T056,2026-03-03,2.5,63,friend recommendation,0,0,Damsel,Movie,"Fantasy, Adventure",PG-13,2024,1,109,6.1,89,A princess fights to survive a dragon-filled cave.,Fantasy,1,medium,87.7,Jamie,25-34,Comedy,Action,medium,weekends,comfort rewatcher,3,mobile
U004,T059,2026-02-02,3.8,91,search,0,1,Anyone But You,Movie,"Romance, Comedy",R,2023,1,103,6.4,77,A fake-couple wedding trip reignites sparks.,Romance,1,medium,87.1,Jamie,25-34,Comedy,Action,medium,weekends,comfort rewatcher,3,mobile
U004,T016,2025-11-07,1.8,69,friend recommendation,0,0,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Jamie,25-34,Comedy,Action,medium,weekends,comfort rewatcher,3,mobile
U004,T057,2025-04-23,3.3,89,search,0,1,Rebel Moon,Movie,"Sci-Fi, Action",PG-13,2023,1,134,5.6,87,A former soldier gathers warriors to fight an empire.,Sci-Fi,1,long,82.1,Jamie,25-34,Comedy,Action,medium,weekends,comfort rewatcher,3,mobile
U005,T057,2025-05-09,4.0,96,search,1,1,Rebel Moon,Movie,"Sci-Fi, Action",PG-13,2023,1,134,5.6,87,A former soldier gathers warriors to fight an empire.,Sci-Fi,1,long,82.1,Cameron,35-44,Action,Crime,medium,weekends,comfort rewatcher,9,laptop
U005,T054,2025-11-18,4.2,93,browse row,1,1,Beef,TV Show,"Comedy, Drama",TV-MA,2023,1,35,8.0,73,A road-rage incident spirals into obsession.,Comedy,1,short,101.9,Cameron,35-44,Action,Crime,medium,weekends,comfort rewatcher,9,laptop
U005,T002,2025-11-18,3.3,80,browse row,0,0,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Cameron,35-44,Action,Crime,medium,weekends,comfort rewatcher,9,laptop
U005,T059,2025-06-08,3.7,89,homepage banner,0,1,Anyone But You,Movie,"Romance, Comedy",R,2023,1,103,6.4,77,A fake-couple wedding trip reignites sparks.,Romance,1,medium,87.1,Cameron,35-44,Action,Crime,medium,weekends,comfort rewatcher,9,laptop
U005,T050,2025-01-18,3.4,100,email click,0,1,Baby Reindeer,TV Show,"Drama, Thriller",TV-MA,2024,1,33,8.3,86,A comedian faces a stalking nightmare.,Drama,1,short,108.8,Cameron,35-44,Action,Crime,medium,weekends,comfort rewatcher,9,laptop
U005,T061,2025-07-06,3.7,77,search,0,0,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Cameron,35-44,Action,Crime,medium,weekends,comfort rewatcher,9,laptop
U005,T027,2025-02-16,3.9,100,friend recommendation,0,1,The Irishman,Movie,"Crime, Drama",R,2019,1,209,7.8,70,An aging hitman reflects on loyalty and regret.,Crime,0,long,99.0,Cameron,35-44,Action,Crime,medium,weekends,comfort rewatcher,9,laptop
U005,T038,2025-06-17,4.3,100,homepage banner,1,1,The Old Guard,Movie,"Action, Fantasy",R,2020,1,125,6.7,67,Immortal mercenaries fight to protect their secret.,Action,1,medium,87.1,Cameron,35-44,Action,Crime,medium,weekends,comfort rewatcher,9,laptop
U005,T043,2025-03-31,3.6,67,search,0,0,Army of the Dead,Movie,"Action, Horror",R,2021,1,148,5.7,58,Mercenaries enter zombie-infested Las Vegas for a heist.,Action,1,long,74.4,Cameron,35-44,Action,Crime,medium,weekends,comfort rewatcher,9,laptop
U005,T011,2025-03-09,3.3,58,email click,0,0,Lupin,TV Show,"Crime, Mystery",TV-14,2021,3,44,7.5,85,A gentleman thief seeks revenge using deception.,Crime,1,short,100.5,Cameron,35-44,Action,Crime,medium,weekends,comfort rewatcher,9,laptop
U005,T010,2025-07-07,3.1,69,email click,0,0,Emily in Paris,TV Show,"Comedy, Romance",TV-MA,2020,4,30,6.9,72,A marketer explores work and romance in Paris.,Comedy,1,short,90.6,Cameron,35-44,Action,Crime,medium,weekends,comfort rewatcher,9,laptop
U005,T015,2025-09-14,3.7,62,friend recommendation,0,0,Heartstopper,TV Show,"Romance, Teen",TV-14,2022,2,31,8.5,87,"Two students navigate identity, friendship, and love.",Romance,1,short,111.1,Cameron,35-44,Action,Crime,medium,weekends,comfort rewatcher,9,laptop
U005,T058,2026-03-02,4.9,79,search,1,0,Carry-On,Movie,"Thriller, Action",PG-13,2024,1,112,6.8,90,An airport employee is blackmailed into a dangerous plot.,Thriller,1,medium,95.0,Cameron,35-44,Action,Crime,medium,weekends,comfort rewatcher,9,laptop
U005,T029,2025-05-12,2.3,55,homepage banner,0,0,Bird Box,Movie,"Thriller, Horror",R,2018,1,124,6.6,88,Survivors avoid a mysterious force that drives people mad.,Thriller,0,medium,92.4,Cameron,35-44,Action,Crime,medium,weekends,comfort rewatcher,9,laptop
U005,T018,2026-02-17,4.2,86,friend recommendation,1,1,One Piece,TV Show,"Adventure, Fantasy",TV-14,2023,1,55,8.4,90,Pirates hunt treasure in a live-action adaptation.,Adventure,1,short,111.0,Cameron,35-44,Action,Crime,medium,weekends,comfort rewatcher,9,laptop
U005,T020,2026-01-18,3.3,75,friend recommendation,0,0,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Cameron,35-44,Action,Crime,medium,weekends,comfort rewatcher,9,laptop
U005,T014,2026-02-16,3.9,76,browse row,0,0,Cobra Kai,TV Show,"Comedy, Action",TV-14,2018,6,34,8.4,75,Old karate rivals reignite decades later.,Comedy,0,short,106.5,Cameron,35-44,Action,Crime,medium,weekends,comfort rewatcher,9,laptop
U006,T044,2025-02-08,3.6,70,search,0,0,Project Power,Movie,"Action, Sci-Fi",R,2020,1,113,6.0,64,A pill that grants powers sparks chaos in New Orleans.,Action,1,medium,79.2,Quinn,35-44,Crime,Action,short,mixed,novelty seeker,7,laptop
U006,T021,2026-01-22,4.9,91,search,1,1,Breaking Bad,TV Show,"Crime, Drama",TV-MA,2008,5,47,9.5,99,A chemistry teacher turns to meth production.,Crime,0,short,124.7,Quinn,35-44,Crime,Action,short,mixed,novelty seeker,7,laptop
U006,T002,2025-12-13,2.8,68,homepage banner,0,0,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Quinn,35-44,Crime,Action,short,mixed,novelty seeker,7,laptop
U006,T006,2026-02-16,3.5,71,email click,0,0,Bridgerton,TV Show,"Romance, Drama",TV-MA,2020,3,60,7.4,84,Love and scandal shape the London social season.,Romance,1,short,99.2,Quinn,35-44,Crime,Action,short,mixed,novelty seeker,7,laptop
U006,T008,2025-07-07,2.8,76,browse row,0,0,Dark,TV Show,"Sci-Fi, Mystery",TV-MA,2017,3,52,8.7,80,Time-travel secrets emerge in a German town.,Sci-Fi,0,short,111.0,Quinn,35-44,Crime,Action,short,mixed,novelty seeker,7,laptop
U006,T001,2026-02-09,3.4,71,homepage banner,0,0,Stranger Things,TV Show,"Sci-Fi, Drama",TV-14,2016,4,51,8.7,95,Supernatural mysteries unfold in a small town.,Sci-Fi,0,short,115.5,Quinn,35-44,Crime,Action,short,mixed,novelty seeker,7,laptop
U006,T033,2025-01-08,3.3,81,friend recommendation,0,0,Extraction,Movie,"Action, Thriller",R,2020,1,116,6.8,74,A mercenary attempts a dangerous rescue mission.,Action,1,medium,90.2,Quinn,35-44,Crime,Action,short,mixed,novelty seeker,7,laptop
U006,T058,2025-10-02,3.1,54,browse row,0,0,Carry-On,Movie,"Thriller, Action",PG-13,2024,1,112,6.8,90,An airport employee is blackmailed into a dangerous plot.,Thriller,1,medium,95.0,Quinn,35-44,Crime,Action,short,mixed,novelty seeker,7,laptop
U006,T011,2025-08-21,4.3,84,friend recommendation,1,0,Lupin,TV Show,"Crime, Mystery",TV-14,2021,3,44,7.5,85,A gentleman thief seeks revenge using deception.,Crime,1,short,100.5,Quinn,35-44,Crime,Action,short,mixed,novelty seeker,7,laptop
U006,T053,2025-12-11,3.9,100,friend recommendation,0,1,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Quinn,35-44,Crime,Action,short,mixed,novelty seeker,7,laptop
U006,T028,2025-10-27,3.5,77,homepage banner,0,0,Marriage Story,Movie,Drama,R,2019,1,137,7.9,68,A couple navigates a painful divorce.,Drama,0,long,99.4,Quinn,35-44,Crime,Action,short,mixed,novelty seeker,7,laptop
U006,T040,2026-02-26,3.4,63,friend recommendation,0,0,Guillermo del Toro's Pinocchio,Movie,"Animation, Fantasy",PG,2022,1,117,7.6,66,A wooden boy comes to life in wartime Italy.,Animation,1,medium,95.8,Quinn,35-44,Crime,Action,short,mixed,novelty seeker,7,laptop
U006,T046,2025-02-25,4.0,80,search,1,0,Red Notice,Movie,"Action, Comedy",PG-13,2021,1,118,6.3,92,An FBI profiler chases two rival art thieves.,Action,1,medium,90.6,Quinn,35-44,Crime,Action,short,mixed,novelty seeker,7,laptop
U006,T003,2025-08-30,4.5,77,browse row,1,0,Money Heist,TV Show,"Crime, Thriller",TV-MA,2017,5,50,8.2,91,A criminal mastermind executes an ambitious heist.,Crime,0,short,109.3,Quinn,35-44,Crime,Action,short,mixed,novelty seeker,7,laptop
U006,T029,2025-11-14,3.3,100,email click,0,1,Bird Box,Movie,"Thriller, Horror",R,2018,1,124,6.6,88,Survivors avoid a mysterious force that drives people mad.,Thriller,0,medium,92.4,Quinn,35-44,Crime,Action,short,mixed,novelty seeker,7,laptop
U007,T061,2025-11-09,4.3,100,search,1,1,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Sam,25-34,Sci-Fi,Crime,short,mixed,balanced explorer,5,mobile
U007,T013,2025-11-28,4.7,90,browse row,1,1,Black Mirror,TV Show,"Sci-Fi, Thriller",TV-MA,2011,6,60,8.7,76,Dark anthology tales explore technology's consequences.,Sci-Fi,0,short,109.8,Sam,25-34,Sci-Fi,Crime,short,mixed,balanced explorer,5,mobile
U007,T002,2025-11-22,3.3,73,homepage banner,0,0,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Sam,25-34,Sci-Fi,Crime,short,mixed,balanced explorer,5,mobile
U007,T027,2025-12-25,3.8,66,friend recommendation,0,0,The Irishman,Movie,"Crime, Drama",R,2019,1,209,7.8,70,An aging hitman reflects on loyalty and regret.,Crime,0,long,99.0,Sam,25-34,Sci-Fi,Crime,short,mixed,balanced explorer,5,mobile
U007,T007,2025-11-29,3.5,78,homepage banner,0,0,The Witcher,TV Show,"Fantasy, Action",TV-MA,2019,3,57,8.0,86,A monster hunter navigates destiny and politics.,Fantasy,0,short,105.8,Sam,25-34,Sci-Fi,Crime,short,mixed,balanced explorer,5,mobile
U007,T040,2025-03-01,3.2,81,search,0,0,Guillermo del Toro's Pinocchio,Movie,"Animation, Fantasy",PG,2022,1,117,7.6,66,A wooden boy comes to life in wartime Italy.,Animation,1,medium,95.8,Sam,25-34,Sci-Fi,Crime,short,mixed,balanced explorer,5,mobile
U007,T043,2025-01-24,1.5,46,browse row,0,0,Army of the Dead,Movie,"Action, Horror",R,2021,1,148,5.7,58,Mercenaries enter zombie-infested Las Vegas for a heist.,Action,1,long,74.4,Sam,25-34,Sci-Fi,Crime,short,mixed,balanced explorer,5,mobile
U007,T042,2025-06-05,2.9,73,homepage banner,0,0,Leave the World Behind,Movie,"Thriller, Drama",R,2023,1,141,6.4,82,A family vacation turns ominous during a blackout.,Thriller,1,long,88.6,Sam,25-34,Sci-Fi,Crime,short,mixed,balanced explorer,5,mobile
U007,T017,2025-03-01,3.5,84,browse row,0,0,The Night Agent,TV Show,"Action, Thriller",TV-MA,2023,1,45,7.5,83,An FBI agent uncovers a conspiracy from a late-night call.,Action,1,short,99.9,Sam,25-34,Sci-Fi,Crime,short,mixed,balanced explorer,5,mobile
U007,T041,2025-05-01,4.5,94,email click,1,1,The Killer,Movie,"Thriller, Crime",R,2023,1,118,6.8,60,A meticulous assassin faces unexpected consequences.,Thriller,1,medium,86.0,Sam,25-34,Sci-Fi,Crime,short,mixed,balanced explorer,5,mobile
U007,T026,2025-03-11,3.1,52,homepage banner,0,0,Seinfeld,TV Show,Comedy,TV-14,1989,9,23,8.9,81,A comedian and friends obsess over daily trivialities.,Comedy,0,short,113.3,Sam,25-34,Sci-Fi,Crime,short,mixed,balanced explorer,5,mobile
U007,T034,2025-08-21,2.2,75,friend recommendation,0,0,Enola Holmes,Movie,"Mystery, Adventure",PG-13,2020,1,123,6.6,78,Sherlock's sister searches for her missing mother.,Mystery,1,medium,89.4,Sam,25-34,Sci-Fi,Crime,short,mixed,balanced explorer,5,mobile
U007,T024,2025-12-10,3.9,100,email click,0,1,The Office,TV Show,Comedy,TV-14,2005,9,22,9.0,94,Office workers navigate absurd everyday routines.,Comedy,0,short,118.2,Sam,25-34,Sci-Fi,Crime,short,mixed,balanced explorer,5,mobile
U008,T053,2025-10-28,1.9,77,search,0,0,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Jamie,35-44,Action,Thriller,medium,mixed,comfort rewatcher,7,mobile
U008,T038,2025-08-01,2.7,100,browse row,0,1,The Old Guard,Movie,"Action, Fantasy",R,2020,1,125,6.7,67,Immortal mercenaries fight to protect their secret.,Action,1,medium,87.1,Jamie,35-44,Action,Thriller,medium,mixed,comfort rewatcher,7,mobile
U008,T007,2026-03-03,2.9,96,homepage banner,0,1,The Witcher,TV Show,"Fantasy, Action",TV-MA,2019,3,57,8.0,86,A monster hunter navigates destiny and politics.,Fantasy,0,short,105.8,Jamie,35-44,Action,Thriller,medium,mixed,comfort rewatcher,7,mobile
U008,T013,2025-11-12,3.1,84,homepage banner,0,0,Black Mirror,TV Show,"Sci-Fi, Thriller",TV-MA,2011,6,60,8.7,76,Dark anthology tales explore technology's consequences.,Sci-Fi,0,short,109.8,Jamie,35-44,Action,Thriller,medium,mixed,comfort rewatcher,7,mobile
U008,T040,2025-05-24,2.5,95,browse row,0,1,Guillermo del Toro's Pinocchio,Movie,"Animation, Fantasy",PG,2022,1,117,7.6,66,A wooden boy comes to life in wartime Italy.,Animation,1,medium,95.8,Jamie,35-44,Action,Thriller,medium,mixed,comfort rewatcher,7,mobile
U008,T009,2025-12-20,3.0,91,friend recommendation,0,1,Narcos,TV Show,"Crime, Drama",TV-MA,2015,3,49,8.7,78,The rise of Pablo Escobar and the drug wars.,Crime,0,short,110.4,Jamie,35-44,Action,Thriller,medium,mixed,comfort rewatcher,7,mobile
U008,T032,2025-04-22,3.0,80,homepage banner,0,0,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Jamie,35-44,Action,Thriller,medium,mixed,comfort rewatcher,7,mobile
U008,T036,2025-08-16,5.0,87,search,1,1,The Gray Man,Movie,"Action, Thriller",PG-13,2022,1,122,6.5,71,A CIA asset becomes the target of a global manhunt.,Action,1,medium,86.3,Jamie,35-44,Action,Thriller,medium,mixed,comfort rewatcher,7,mobile
U008,T041,2025-07-05,2.8,53,browse row,0,0,The Killer,Movie,"Thriller, Crime",R,2023,1,118,6.8,60,A meticulous assassin faces unexpected consequences.,Thriller,1,medium,86.0,Jamie,35-44,Action,Thriller,medium,mixed,comfort rewatcher,7,mobile
U008,T016,2025-12-18,3.6,73,friend recommendation,0,0,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Jamie,35-44,Action,Thriller,medium,mixed,comfort rewatcher,7,mobile
U008,T035,2025-10-06,1.7,69,friend recommendation,0,0,The Adam Project,Movie,"Sci-Fi, Adventure",PG-13,2022,1,106,6.7,73,A time-traveling pilot teams up with his younger self.,Sci-Fi,1,medium,88.9,Jamie,35-44,Action,Thriller,medium,mixed,comfort rewatcher,7,mobile
U008,T051,2025-02-01,2.9,56,homepage banner,0,0,Ripley,TV Show,"Thriller, Drama",TV-MA,2024,1,55,8.1,67,"A grifter is drawn into wealth, deception, and murder.",Thriller,1,short,101.1,Jamie,35-44,Action,Thriller,medium,mixed,comfort rewatcher,7,mobile
U008,T061,2025-05-22,3.0,61,search,0,0,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Jamie,35-44,Action,Thriller,medium,mixed,comfort rewatcher,7,mobile
U008,T029,2025-03-04,3.7,100,homepage banner,0,1,Bird Box,Movie,"Thriller, Horror",R,2018,1,124,6.6,88,Survivors avoid a mysterious force that drives people mad.,Thriller,0,medium,92.4,Jamie,35-44,Action,Thriller,medium,mixed,comfort rewatcher,7,mobile
U009,T032,2025-12-06,3.8,95,search,0,1,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Cameron,25-34,Thriller,Crime,long,mixed,novelty seeker,5,mobile
U009,T031,2025-11-25,3.3,53,email click,0,0,Roma,Movie,Drama,R,2018,1,135,7.7,63,A domestic worker supports a family in 1970s Mexico City.,Drama,0,long,95.9,Cameron,25-34,Thriller,Crime,long,mixed,novelty seeker,5,mobile
U009,T027,2025-01-11,4.2,84,browse row,1,0,The Irishman,Movie,"Crime, Drama",R,2019,1,209,7.8,70,An aging hitman reflects on loyalty and regret.,Crime,0,long,99.0,Cameron,25-34,Thriller,Crime,long,mixed,novelty seeker,5,mobile
U009,T016,2026-02-07,3.9,49,friend recommendation,0,0,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Cameron,25-34,Thriller,Crime,long,mixed,novelty seeker,5,mobile
U009,T011,2025-05-05,4.5,92,search,1,1,Lupin,TV Show,"Crime, Mystery",TV-14,2021,3,44,7.5,85,A gentleman thief seeks revenge using deception.,Crime,1,short,100.5,Cameron,25-34,Thriller,Crime,long,mixed,novelty seeker,5,mobile
U009,T061,2026-02-07,5.0,93,email click,1,1,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Cameron,25-34,Thriller,Crime,long,mixed,novelty seeker,5,mobile
U009,T034,2025-04-16,3.3,90,browse row,0,1,Enola Holmes,Movie,"Mystery, Adventure",PG-13,2020,1,123,6.6,78,Sherlock's sister searches for her missing mother.,Mystery,1,medium,89.4,Cameron,25-34,Thriller,Crime,long,mixed,novelty seeker,5,mobile
U009,T056,2026-03-01,2.4,100,email click,0,1,Damsel,Movie,"Fantasy, Adventure",PG-13,2024,1,109,6.1,89,A princess fights to survive a dragon-filled cave.,Fantasy,1,medium,87.7,Cameron,25-34,Thriller,Crime,long,mixed,novelty seeker,5,mobile
U009,T057,2025-04-17,3.4,86,email click,0,1,Rebel Moon,Movie,"Sci-Fi, Action",PG-13,2023,1,134,5.6,87,A former soldier gathers warriors to fight an empire.,Sci-Fi,1,long,82.1,Cameron,25-34,Thriller,Crime,long,mixed,novelty seeker,5,mobile
U010,T058,2026-02-21,4.5,99,search,1,1,Carry-On,Movie,"Thriller, Action",PG-13,2024,1,112,6.8,90,An airport employee is blackmailed into a dangerous plot.,Thriller,1,medium,95.0,Jamie,25-34,Fantasy,Action,medium,mixed,novelty seeker,2,mobile
U010,T034,2025-06-18,2.7,78,search,0,0,Enola Holmes,Movie,"Mystery, Adventure",PG-13,2020,1,123,6.6,78,Sherlock's sister searches for her missing mother.,Mystery,1,medium,89.4,Jamie,25-34,Fantasy,Action,medium,mixed,novelty seeker,2,mobile
U010,T045,2026-02-08,3.4,59,email click,0,0,Murder Mystery,Movie,"Comedy, Mystery",PG-13,2019,1,97,6.0,81,A couple becomes entangled in a murder case on a yacht.,Comedy,0,medium,84.3,Jamie,25-34,Fantasy,Action,medium,mixed,novelty seeker,2,mobile
U010,T007,2025-01-02,4.4,98,friend recommendation,1,1,The Witcher,TV Show,"Fantasy, Action",TV-MA,2019,3,57,8.0,86,A monster hunter navigates destiny and politics.,Fantasy,0,short,105.8,Jamie,25-34,Fantasy,Action,medium,mixed,novelty seeker,2,mobile
U010,T016,2025-03-16,4.0,97,search,1,1,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Jamie,25-34,Fantasy,Action,medium,mixed,novelty seeker,2,mobile
U010,T059,2025-10-04,4.5,84,friend recommendation,1,0,Anyone But You,Movie,"Romance, Comedy",R,2023,1,103,6.4,77,A fake-couple wedding trip reignites sparks.,Romance,1,medium,87.1,Jamie,25-34,Fantasy,Action,medium,mixed,novelty seeker,2,mobile
U010,T052,2026-02-13,3.6,93,search,0,1,3 Body Problem,TV Show,"Sci-Fi, Mystery",TV-MA,2024,1,58,7.6,84,Scientists confront a cosmic threat from first contact.,Sci-Fi,1,short,101.2,Jamie,25-34,Fantasy,Action,medium,mixed,novelty seeker,2,mobile
U010,T025,2025-02-26,1.6,83,browse row,0,0,Friends,TV Show,"Comedy, Romance",TV-14,1994,10,22,8.9,92,Six friends face life and love in New York.,Comedy,0,short,116.6,Jamie,25-34,Fantasy,Action,medium,mixed,novelty seeker,2,mobile
U010,T031,2025-03-09,1.9,78,browse row,0,0,Roma,Movie,Drama,R,2018,1,135,7.7,63,A domestic worker supports a family in 1970s Mexico City.,Drama,0,long,95.9,Jamie,25-34,Fantasy,Action,medium,mixed,novelty seeker,2,mobile
U010,T021,2025-07-03,3.4,43,search,0,0,Breaking Bad,TV Show,"Crime, Drama",TV-MA,2008,5,47,9.5,99,A chemistry teacher turns to meth production.,Crime,0,short,124.7,Jamie,25-34,Fantasy,Action,medium,mixed,novelty seeker,2,mobile
U010,T022,2025-10-29,1.6,82,friend recommendation,0,0,Better Call Saul,TV Show,"Crime, Drama",TV-MA,2015,6,46,9.0,96,The morally flexible lawyer begins his transformation.,Crime,0,short,118.8,Jamie,25-34,Fantasy,Action,medium,mixed,novelty seeker,2,mobile
U011,T028,2025-03-31,4.5,75,friend recommendation,1,0,Marriage Story,Movie,Drama,R,2019,1,137,7.9,68,A couple navigates a painful divorce.,Drama,0,long,99.4,Quinn,18-24,Drama,Romance,medium,weekends,comfort rewatcher,7,mobile
U011,T001,2025-01-27,3.5,83,search,0,0,Stranger Things,TV Show,"Sci-Fi, Drama",TV-14,2016,4,51,8.7,95,Supernatural mysteries unfold in a small town.,Sci-Fi,0,short,115.5,Quinn,18-24,Drama,Romance,medium,weekends,comfort rewatcher,7,mobile
U011,T060,2026-01-15,3.6,100,homepage banner,0,1,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Quinn,18-24,Drama,Romance,medium,weekends,comfort rewatcher,7,mobile
U011,T021,2025-09-27,3.6,73,browse row,0,0,Breaking Bad,TV Show,"Crime, Drama",TV-MA,2008,5,47,9.5,99,A chemistry teacher turns to meth production.,Crime,0,short,124.7,Quinn,18-24,Drama,Romance,medium,weekends,comfort rewatcher,7,mobile
U011,T061,2026-01-17,3.3,72,browse row,0,0,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Quinn,18-24,Drama,Romance,medium,weekends,comfort rewatcher,7,mobile
U011,T019,2025-09-01,3.3,61,homepage banner,0,0,Squid Game,TV Show,"Thriller, Drama",TV-MA,2021,1,55,8.0,97,Cash-strapped players join deadly children's games.,Thriller,1,short,109.1,Quinn,18-24,Drama,Romance,medium,weekends,comfort rewatcher,7,mobile
U011,T009,2026-02-03,4.3,67,friend recommendation,1,0,Narcos,TV Show,"Crime, Drama",TV-MA,2015,3,49,8.7,78,The rise of Pablo Escobar and the drug wars.,Crime,0,short,110.4,Quinn,18-24,Drama,Romance,medium,weekends,comfort rewatcher,7,mobile
U011,T006,2025-09-20,5.0,84,email click,1,0,Bridgerton,TV Show,"Romance, Drama",TV-MA,2020,3,60,7.4,84,Love and scandal shape the London social season.,Romance,1,short,99.2,Quinn,18-24,Drama,Romance,medium,weekends,comfort rewatcher,7,mobile
U012,T039,2025-08-20,2.1,100,email click,0,1,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Jordan,25-34,Fantasy,Action,long,weekends,balanced explorer,5,laptop
U012,T004,2025-04-24,4.0,84,email click,1,0,The Queen's Gambit,TV Show,Drama,TV-MA,2020,1,56,8.5,89,A chess prodigy battles addiction and fame.,Drama,1,short,111.7,Jordan,25-34,Fantasy,Action,long,weekends,balanced explorer,5,laptop
U012,T015,2025-01-23,2.8,62,email click,0,0,Heartstopper,TV Show,"Romance, Teen",TV-14,2022,2,31,8.5,87,"Two students navigate identity, friendship, and love.",Romance,1,short,111.1,Jordan,25-34,Fantasy,Action,long,weekends,balanced explorer,5,laptop
U012,T005,2025-06-04,4.1,83,homepage banner,1,0,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Jordan,25-34,Fantasy,Action,long,weekends,balanced explorer,5,laptop
U012,T045,2025-11-26,3.3,73,browse row,0,0,Murder Mystery,Movie,"Comedy, Mystery",PG-13,2019,1,97,6.0,81,A couple becomes entangled in a murder case on a yacht.,Comedy,0,medium,84.3,Jordan,25-34,Fantasy,Action,long,weekends,balanced explorer,5,laptop
U012,T061,2025-02-01,3.8,84,homepage banner,0,0,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Jordan,25-34,Fantasy,Action,long,weekends,balanced explorer,5,laptop
U012,T049,2025-07-25,2.8,88,homepage banner,0,1,Maestro in Blue,TV Show,"Drama, Romance",TV-MA,2022,1,50,7.8,59,A musician becomes entangled in island secrets.,Drama,1,short,95.7,Jordan,25-34,Fantasy,Action,long,weekends,balanced explorer,5,laptop
U012,T050,2025-12-18,2.0,70,browse row,0,0,Baby Reindeer,TV Show,"Drama, Thriller",TV-MA,2024,1,33,8.3,86,A comedian faces a stalking nightmare.,Drama,1,short,108.8,Jordan,25-34,Fantasy,Action,long,weekends,balanced explorer,5,laptop
U012,T012,2025-09-09,3.0,53,homepage banner,0,0,Ozark,TV Show,"Crime, Drama",TV-MA,2017,4,60,8.5,77,A family launders money for a dangerous cartel.,Crime,0,short,108.1,Jordan,25-34,Fantasy,Action,long,weekends,balanced explorer,5,laptop
U013,T052,2025-02-11,3.8,86,friend recommendation,0,1,3 Body Problem,TV Show,"Sci-Fi, Mystery",TV-MA,2024,1,58,7.6,84,Scientists confront a cosmic threat from first contact.,Sci-Fi,1,short,101.2,Morgan,45-54,Animation,Mystery,medium,mixed,novelty seeker,7,mobile
U013,T045,2025-11-08,3.8,83,search,0,0,Murder Mystery,Movie,"Comedy, Mystery",PG-13,2019,1,97,6.0,81,A couple becomes entangled in a murder case on a yacht.,Comedy,0,medium,84.3,Morgan,45-54,Animation,Mystery,medium,mixed,novelty seeker,7,mobile
U013,T055,2025-02-03,3.6,79,search,0,0,Blue Eye Samurai,TV Show,"Animation, Action",TV-MA,2023,1,45,8.7,70,A swordswoman seeks revenge in Edo-period Japan.,Animation,1,short,108.0,Morgan,45-54,Animation,Mystery,medium,mixed,novelty seeker,7,mobile
U013,T053,2025-05-21,4.8,51,email click,1,0,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Morgan,45-54,Animation,Mystery,medium,mixed,novelty seeker,7,mobile
U013,T017,2025-11-21,3.9,99,email click,0,1,The Night Agent,TV Show,"Action, Thriller",TV-MA,2023,1,45,7.5,83,An FBI agent uncovers a conspiracy from a late-night call.,Action,1,short,99.9,Morgan,45-54,Animation,Mystery,medium,mixed,novelty seeker,7,mobile
U013,T013,2025-10-08,2.2,59,friend recommendation,0,0,Black Mirror,TV Show,"Sci-Fi, Thriller",TV-MA,2011,6,60,8.7,76,Dark anthology tales explore technology's consequences.,Sci-Fi,0,short,109.8,Morgan,45-54,Animation,Mystery,medium,mixed,novelty seeker,7,mobile
U013,T038,2025-07-15,2.4,96,email click,0,1,The Old Guard,Movie,"Action, Fantasy",R,2020,1,125,6.7,67,Immortal mercenaries fight to protect their secret.,Action,1,medium,87.1,Morgan,45-54,Animation,Mystery,medium,mixed,novelty seeker,7,mobile
U013,T026,2025-09-29,3.7,99,friend recommendation,0,1,Seinfeld,TV Show,Comedy,TV-14,1989,9,23,8.9,81,A comedian and friends obsess over daily trivialities.,Comedy,0,short,113.3,Morgan,45-54,Animation,Mystery,medium,mixed,novelty seeker,7,mobile
U013,T009,2025-08-21,3.1,95,email click,0,1,Narcos,TV Show,"Crime, Drama",TV-MA,2015,3,49,8.7,78,The rise of Pablo Escobar and the drug wars.,Crime,0,short,110.4,Morgan,45-54,Animation,Mystery,medium,mixed,novelty seeker,7,mobile
U014,T018,2025-08-09,4.5,88,browse row,1,1,One Piece,TV Show,"Adventure, Fantasy",TV-14,2023,1,55,8.4,90,Pirates hunt treasure in a live-action adaptation.,Adventure,1,short,111.0,Jordan,18-24,Comedy,Animation,medium,weeknights,comfort rewatcher,4,laptop
U014,T024,2026-02-11,4.7,81,browse row,1,0,The Office,TV Show,Comedy,TV-14,2005,9,22,9.0,94,Office workers navigate absurd everyday routines.,Comedy,0,short,118.2,Jordan,18-24,Comedy,Animation,medium,weeknights,comfort rewatcher,4,laptop
U014,T013,2025-12-02,3.0,100,email click,0,1,Black Mirror,TV Show,"Sci-Fi, Thriller",TV-MA,2011,6,60,8.7,76,Dark anthology tales explore technology's consequences.,Sci-Fi,0,short,109.8,Jordan,18-24,Comedy,Animation,medium,weeknights,comfort rewatcher,4,laptop
U014,T059,2026-01-05,3.6,100,search,0,1,Anyone But You,Movie,"Romance, Comedy",R,2023,1,103,6.4,77,A fake-couple wedding trip reignites sparks.,Romance,1,medium,87.1,Jordan,18-24,Comedy,Animation,medium,weeknights,comfort rewatcher,4,laptop
U014,T014,2025-08-09,4.4,80,homepage banner,1,0,Cobra Kai,TV Show,"Comedy, Action",TV-14,2018,6,34,8.4,75,Old karate rivals reignite decades later.,Comedy,0,short,106.5,Jordan,18-24,Comedy,Animation,medium,weeknights,comfort rewatcher,4,laptop
U014,T029,2025-04-27,3.4,93,homepage banner,0,1,Bird Box,Movie,"Thriller, Horror",R,2018,1,124,6.6,88,Survivors avoid a mysterious force that drives people mad.,Thriller,0,medium,92.4,Jordan,18-24,Comedy,Animation,medium,weeknights,comfort rewatcher,4,laptop
U014,T009,2025-06-23,3.4,55,homepage banner,0,0,Narcos,TV Show,"Crime, Drama",TV-MA,2015,3,49,8.7,78,The rise of Pablo Escobar and the drug wars.,Crime,0,short,110.4,Jordan,18-24,Comedy,Animation,medium,weeknights,comfort rewatcher,4,laptop
U014,T044,2025-07-24,2.6,67,homepage banner,0,0,Project Power,Movie,"Action, Sci-Fi",R,2020,1,113,6.0,64,A pill that grants powers sparks chaos in New Orleans.,Action,1,medium,79.2,Jordan,18-24,Comedy,Animation,medium,weeknights,comfort rewatcher,4,laptop
U014,T051,2026-01-09,3.0,84,browse row,0,0,Ripley,TV Show,"Thriller, Drama",TV-MA,2024,1,55,8.1,67,"A grifter is drawn into wealth, deception, and murder.",Thriller,1,short,101.1,Jordan,18-24,Comedy,Animation,medium,weeknights,comfort rewatcher,4,laptop
U014,T039,2025-06-10,3.1,55,homepage banner,0,0,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Jordan,18-24,Comedy,Animation,medium,weeknights,comfort rewatcher,4,laptop
U014,T033,2025-06-10,3.2,86,friend recommendation,0,1,Extraction,Movie,"Action, Thriller",R,2020,1,116,6.8,74,A mercenary attempts a dangerous rescue mission.,Action,1,medium,90.2,Jordan,18-24,Comedy,Animation,medium,weeknights,comfort rewatcher,4,laptop
U014,T016,2025-07-11,3.3,94,search,0,1,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Jordan,18-24,Comedy,Animation,medium,weeknights,comfort rewatcher,4,laptop
U014,T005,2025-12-18,3.5,86,homepage banner,0,1,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Jordan,18-24,Comedy,Animation,medium,weeknights,comfort rewatcher,4,laptop
U014,T049,2025-02-04,3.0,50,browse row,0,0,Maestro in Blue,TV Show,"Drama, Romance",TV-MA,2022,1,50,7.8,59,A musician becomes entangled in island secrets.,Drama,1,short,95.7,Jordan,18-24,Comedy,Animation,medium,weeknights,comfort rewatcher,4,laptop
U014,T045,2026-03-02,4.3,91,browse row,1,1,Murder Mystery,Movie,"Comedy, Mystery",PG-13,2019,1,97,6.0,81,A couple becomes entangled in a murder case on a yacht.,Comedy,0,medium,84.3,Jordan,18-24,Comedy,Animation,medium,weeknights,comfort rewatcher,4,laptop
U014,T020,2025-02-17,4.2,67,homepage banner,1,0,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Jordan,18-24,Comedy,Animation,medium,weeknights,comfort rewatcher,4,laptop
U014,T015,2025-02-19,2.4,84,friend recommendation,0,0,Heartstopper,TV Show,"Romance, Teen",TV-14,2022,2,31,8.5,87,"Two students navigate identity, friendship, and love.",Romance,1,short,111.1,Jordan,18-24,Comedy,Animation,medium,weeknights,comfort rewatcher,4,laptop
U015,T049,2025-10-12,4.3,80,browse row,1,0,Maestro in Blue,TV Show,"Drama, Romance",TV-MA,2022,1,50,7.8,59,A musician becomes entangled in island secrets.,Drama,1,short,95.7,Casey,45-54,Action,Crime,medium,weekends,novelty seeker,2,laptop
U015,T047,2025-10-28,3.1,71,email click,0,0,The Mitchells vs. the Machines,Movie,"Animation, Comedy",PG,2021,1,113,7.6,74,A quirky family saves the world from a robot uprising.,Animation,1,medium,98.2,Casey,45-54,Action,Crime,medium,weekends,novelty seeker,2,laptop
U015,T006,2025-10-15,2.2,53,friend recommendation,0,0,Bridgerton,TV Show,"Romance, Drama",TV-MA,2020,3,60,7.4,84,Love and scandal shape the London social season.,Romance,1,short,99.2,Casey,45-54,Action,Crime,medium,weekends,novelty seeker,2,laptop
U015,T043,2025-12-10,3.8,71,browse row,0,0,Army of the Dead,Movie,"Action, Horror",R,2021,1,148,5.7,58,Mercenaries enter zombie-infested Las Vegas for a heist.,Action,1,long,74.4,Casey,45-54,Action,Crime,medium,weekends,novelty seeker,2,laptop
U015,T021,2025-07-30,3.6,84,friend recommendation,0,0,Breaking Bad,TV Show,"Crime, Drama",TV-MA,2008,5,47,9.5,99,A chemistry teacher turns to meth production.,Crime,0,short,124.7,Casey,45-54,Action,Crime,medium,weekends,novelty seeker,2,laptop
U015,T061,2025-12-07,4.9,79,homepage banner,1,0,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Casey,45-54,Action,Crime,medium,weekends,novelty seeker,2,laptop
U015,T040,2026-01-05,4.0,81,browse row,1,0,Guillermo del Toro's Pinocchio,Movie,"Animation, Fantasy",PG,2022,1,117,7.6,66,A wooden boy comes to life in wartime Italy.,Animation,1,medium,95.8,Casey,45-54,Action,Crime,medium,weekends,novelty seeker,2,laptop
U015,T019,2025-05-28,3.4,89,email click,0,1,Squid Game,TV Show,"Thriller, Drama",TV-MA,2021,1,55,8.0,97,Cash-strapped players join deadly children's games.,Thriller,1,short,109.1,Casey,45-54,Action,Crime,medium,weekends,novelty seeker,2,laptop
U015,T060,2025-06-09,2.7,77,friend recommendation,0,0,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Casey,45-54,Action,Crime,medium,weekends,novelty seeker,2,laptop
U015,T009,2025-02-23,3.7,89,email click,0,1,Narcos,TV Show,"Crime, Drama",TV-MA,2015,3,49,8.7,78,The rise of Pablo Escobar and the drug wars.,Crime,0,short,110.4,Casey,45-54,Action,Crime,medium,weekends,novelty seeker,2,laptop
U016,T007,2025-04-19,3.4,63,search,0,0,The Witcher,TV Show,"Fantasy, Action",TV-MA,2019,3,57,8.0,86,A monster hunter navigates destiny and politics.,Fantasy,0,short,105.8,Casey,35-44,Crime,Animation,medium,mixed,comfort rewatcher,8,mobile
U016,T001,2025-12-03,1.0,41,homepage banner,0,0,Stranger Things,TV Show,"Sci-Fi, Drama",TV-14,2016,4,51,8.7,95,Supernatural mysteries unfold in a small town.,Sci-Fi,0,short,115.5,Casey,35-44,Crime,Animation,medium,mixed,comfort rewatcher,8,mobile
U016,T031,2025-04-25,3.7,87,browse row,0,1,Roma,Movie,Drama,R,2018,1,135,7.7,63,A domestic worker supports a family in 1970s Mexico City.,Drama,0,long,95.9,Casey,35-44,Crime,Animation,medium,mixed,comfort rewatcher,8,mobile
U016,T039,2025-06-29,3.8,66,email click,0,0,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Casey,35-44,Crime,Animation,medium,mixed,comfort rewatcher,8,mobile
U016,T056,2025-07-08,2.0,71,browse row,0,0,Damsel,Movie,"Fantasy, Adventure",PG-13,2024,1,109,6.1,89,A princess fights to survive a dragon-filled cave.,Fantasy,1,medium,87.7,Casey,35-44,Crime,Animation,medium,mixed,comfort rewatcher,8,mobile
U016,T030,2026-01-26,3.1,80,friend recommendation,0,0,Glass Onion,Movie,"Mystery, Comedy",PG-13,2022,1,139,7.1,85,A detective untangles a billionaire's island murder game.,Mystery,1,long,96.5,Casey,35-44,Crime,Animation,medium,mixed,comfort rewatcher,8,mobile
U016,T022,2025-10-21,4.6,97,search,1,1,Better Call Saul,TV Show,"Crime, Drama",TV-MA,2015,6,46,9.0,96,The morally flexible lawyer begins his transformation.,Crime,0,short,118.8,Casey,35-44,Crime,Animation,medium,mixed,comfort rewatcher,8,mobile
U016,T019,2026-02-18,3.2,87,homepage banner,0,1,Squid Game,TV Show,"Thriller, Drama",TV-MA,2021,1,55,8.0,97,Cash-strapped players join deadly children's games.,Thriller,1,short,109.1,Casey,35-44,Crime,Animation,medium,mixed,comfort rewatcher,8,mobile
U016,T050,2025-10-15,3.3,90,email click,0,1,Baby Reindeer,TV Show,"Drama, Thriller",TV-MA,2024,1,33,8.3,86,A comedian faces a stalking nightmare.,Drama,1,short,108.8,Casey,35-44,Crime,Animation,medium,mixed,comfort rewatcher,8,mobile
U016,T016,2025-11-11,3.6,100,email click,0,1,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Casey,35-44,Crime,Animation,medium,mixed,comfort rewatcher,8,mobile
U016,T021,2025-01-14,3.6,88,email click,0,1,Breaking Bad,TV Show,"Crime, Drama",TV-MA,2008,5,47,9.5,99,A chemistry teacher turns to meth production.,Crime,0,short,124.7,Casey,35-44,Crime,Animation,medium,mixed,comfort rewatcher,8,mobile
U016,T055,2025-12-03,3.4,66,friend recommendation,0,0,Blue Eye Samurai,TV Show,"Animation, Action",TV-MA,2023,1,45,8.7,70,A swordswoman seeks revenge in Edo-period Japan.,Animation,1,short,108.0,Casey,35-44,Crime,Animation,medium,mixed,comfort rewatcher,8,mobile
U016,T027,2025-01-15,3.6,88,search,0,1,The Irishman,Movie,"Crime, Drama",R,2019,1,209,7.8,70,An aging hitman reflects on loyalty and regret.,Crime,0,long,99.0,Casey,35-44,Crime,Animation,medium,mixed,comfort rewatcher,8,mobile
U016,T029,2025-05-20,3.3,84,friend recommendation,0,0,Bird Box,Movie,"Thriller, Horror",R,2018,1,124,6.6,88,Survivors avoid a mysterious force that drives people mad.,Thriller,0,medium,92.4,Casey,35-44,Crime,Animation,medium,mixed,comfort rewatcher,8,mobile
U016,T040,2025-06-23,3.5,80,friend recommendation,0,0,Guillermo del Toro's Pinocchio,Movie,"Animation, Fantasy",PG,2022,1,117,7.6,66,A wooden boy comes to life in wartime Italy.,Animation,1,medium,95.8,Casey,35-44,Crime,Animation,medium,mixed,comfort rewatcher,8,mobile
U016,T008,2025-01-04,3.5,57,search,0,0,Dark,TV Show,"Sci-Fi, Mystery",TV-MA,2017,3,52,8.7,80,Time-travel secrets emerge in a German town.,Sci-Fi,0,short,111.0,Casey,35-44,Crime,Animation,medium,mixed,comfort rewatcher,8,mobile
U017,T008,2025-10-17,3.1,93,homepage banner,0,1,Dark,TV Show,"Sci-Fi, Mystery",TV-MA,2017,3,52,8.7,80,Time-travel secrets emerge in a German town.,Sci-Fi,0,short,111.0,Jordan,35-44,Fantasy,Drama,long,mixed,novelty seeker,3,laptop
U017,T021,2025-02-05,3.3,91,search,0,1,Breaking Bad,TV Show,"Crime, Drama",TV-MA,2008,5,47,9.5,99,A chemistry teacher turns to meth production.,Crime,0,short,124.7,Jordan,35-44,Fantasy,Drama,long,mixed,novelty seeker,3,laptop
U017,T016,2026-01-15,3.9,92,browse row,0,1,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Jordan,35-44,Fantasy,Drama,long,mixed,novelty seeker,3,laptop
U017,T005,2025-02-16,4.1,80,email click,1,0,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Jordan,35-44,Fantasy,Drama,long,mixed,novelty seeker,3,laptop
U017,T033,2025-04-21,1.9,55,homepage banner,0,0,Extraction,Movie,"Action, Thriller",R,2020,1,116,6.8,74,A mercenary attempts a dangerous rescue mission.,Action,1,medium,90.2,Jordan,35-44,Fantasy,Drama,long,mixed,novelty seeker,3,laptop
U017,T036,2025-08-03,4.1,72,homepage banner,1,0,The Gray Man,Movie,"Action, Thriller",PG-13,2022,1,122,6.5,71,A CIA asset becomes the target of a global manhunt.,Action,1,medium,86.3,Jordan,35-44,Fantasy,Drama,long,mixed,novelty seeker,3,laptop
U017,T002,2025-06-24,3.1,85,search,0,1,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Jordan,35-44,Fantasy,Drama,long,mixed,novelty seeker,3,laptop
U017,T009,2025-07-09,3.8,93,friend recommendation,0,1,Narcos,TV Show,"Crime, Drama",TV-MA,2015,3,49,8.7,78,The rise of Pablo Escobar and the drug wars.,Crime,0,short,110.4,Jordan,35-44,Fantasy,Drama,long,mixed,novelty seeker,3,laptop
U017,T043,2026-01-05,3.0,100,friend recommendation,0,1,Army of the Dead,Movie,"Action, Horror",R,2021,1,148,5.7,58,Mercenaries enter zombie-infested Las Vegas for a heist.,Action,1,long,74.4,Jordan,35-44,Fantasy,Drama,long,mixed,novelty seeker,3,laptop
U017,T051,2026-02-02,3.3,80,email click,0,0,Ripley,TV Show,"Thriller, Drama",TV-MA,2024,1,55,8.1,67,"A grifter is drawn into wealth, deception, and murder.",Thriller,1,short,101.1,Jordan,35-44,Fantasy,Drama,long,mixed,novelty seeker,3,laptop
U018,T038,2025-02-13,3.0,63,browse row,0,0,The Old Guard,Movie,"Action, Fantasy",R,2020,1,125,6.7,67,Immortal mercenaries fight to protect their secret.,Action,1,medium,87.1,Jordan,25-34,Thriller,Animation,long,weeknights,balanced explorer,2,laptop
U018,T034,2025-03-21,2.7,88,search,0,1,Enola Holmes,Movie,"Mystery, Adventure",PG-13,2020,1,123,6.6,78,Sherlock's sister searches for her missing mother.,Mystery,1,medium,89.4,Jordan,25-34,Thriller,Animation,long,weeknights,balanced explorer,2,laptop
U018,T010,2026-01-22,3.4,64,email click,0,0,Emily in Paris,TV Show,"Comedy, Romance",TV-MA,2020,4,30,6.9,72,A marketer explores work and romance in Paris.,Comedy,1,short,90.6,Jordan,25-34,Thriller,Animation,long,weeknights,balanced explorer,2,laptop
U018,T005,2025-01-26,3.2,78,browse row,0,0,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Jordan,25-34,Thriller,Animation,long,weeknights,balanced explorer,2,laptop
U018,T004,2025-05-20,4.0,100,homepage banner,1,1,The Queen's Gambit,TV Show,Drama,TV-MA,2020,1,56,8.5,89,A chess prodigy battles addiction and fame.,Drama,1,short,111.7,Jordan,25-34,Thriller,Animation,long,weeknights,balanced explorer,2,laptop
U018,T012,2025-12-05,2.1,78,homepage banner,0,0,Ozark,TV Show,"Crime, Drama",TV-MA,2017,4,60,8.5,77,A family launders money for a dangerous cartel.,Crime,0,short,108.1,Jordan,25-34,Thriller,Animation,long,weeknights,balanced explorer,2,laptop
U018,T040,2025-09-06,4.4,97,email click,1,1,Guillermo del Toro's Pinocchio,Movie,"Animation, Fantasy",PG,2022,1,117,7.6,66,A wooden boy comes to life in wartime Italy.,Animation,1,medium,95.8,Jordan,25-34,Thriller,Animation,long,weeknights,balanced explorer,2,laptop
U018,T033,2025-08-15,3.8,100,homepage banner,0,1,Extraction,Movie,"Action, Thriller",R,2020,1,116,6.8,74,A mercenary attempts a dangerous rescue mission.,Action,1,medium,90.2,Jordan,25-34,Thriller,Animation,long,weeknights,balanced explorer,2,laptop
U018,T023,2025-05-20,3.4,100,search,0,1,Peaky Blinders,TV Show,"Crime, History",TV-MA,2013,6,58,8.8,83,A Birmingham gang rises after World War I.,Crime,0,short,112.9,Jordan,25-34,Thriller,Animation,long,weeknights,balanced explorer,2,laptop
U018,T019,2026-01-22,4.8,99,email click,1,1,Squid Game,TV Show,"Thriller, Drama",TV-MA,2021,1,55,8.0,97,Cash-strapped players join deadly children's games.,Thriller,1,short,109.1,Jordan,25-34,Thriller,Animation,long,weeknights,balanced explorer,2,laptop
U018,T049,2025-02-28,2.7,71,friend recommendation,0,0,Maestro in Blue,TV Show,"Drama, Romance",TV-MA,2022,1,50,7.8,59,A musician becomes entangled in island secrets.,Drama,1,short,95.7,Jordan,25-34,Thriller,Animation,long,weeknights,balanced explorer,2,laptop
U018,T016,2025-08-09,3.9,65,browse row,0,0,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Jordan,25-34,Thriller,Animation,long,weeknights,balanced explorer,2,laptop
U018,T054,2025-05-26,3.4,100,email click,0,1,Beef,TV Show,"Comedy, Drama",TV-MA,2023,1,35,8.0,73,A road-rage incident spirals into obsession.,Comedy,1,short,101.9,Jordan,25-34,Thriller,Animation,long,weeknights,balanced explorer,2,laptop
U018,T043,2025-09-07,3.1,100,email click,0,1,Army of the Dead,Movie,"Action, Horror",R,2021,1,148,5.7,58,Mercenaries enter zombie-infested Las Vegas for a heist.,Action,1,long,74.4,Jordan,25-34,Thriller,Animation,long,weeknights,balanced explorer,2,laptop
U018,T055,2025-12-08,2.7,87,friend recommendation,0,1,Blue Eye Samurai,TV Show,"Animation, Action",TV-MA,2023,1,45,8.7,70,A swordswoman seeks revenge in Edo-period Japan.,Animation,1,short,108.0,Jordan,25-34,Thriller,Animation,long,weeknights,balanced explorer,2,laptop
U018,T028,2025-01-24,4.3,84,search,1,0,Marriage Story,Movie,Drama,R,2019,1,137,7.9,68,A couple navigates a painful divorce.,Drama,0,long,99.4,Jordan,25-34,Thriller,Animation,long,weeknights,balanced explorer,2,laptop
U018,T037,2025-07-22,2.9,89,email click,0,1,To All the Boys I've Loved Before,Movie,"Romance, Comedy",PG-13,2018,1,99,7.0,76,Secret love letters create romantic chaos.,Romance,0,medium,92.8,Jordan,25-34,Thriller,Animation,long,weeknights,balanced explorer,2,laptop
U019,T046,2025-01-04,2.2,88,search,0,1,Red Notice,Movie,"Action, Comedy",PG-13,2021,1,118,6.3,92,An FBI profiler chases two rival art thieves.,Action,1,medium,90.6,Taylor,35-44,Romance,Fantasy,short,weeknights,balanced explorer,2,mobile
U019,T013,2025-06-04,1.7,67,search,0,0,Black Mirror,TV Show,"Sci-Fi, Thriller",TV-MA,2011,6,60,8.7,76,Dark anthology tales explore technology's consequences.,Sci-Fi,0,short,109.8,Taylor,35-44,Romance,Fantasy,short,weeknights,balanced explorer,2,mobile
U019,T034,2026-01-28,2.9,62,search,0,0,Enola Holmes,Movie,"Mystery, Adventure",PG-13,2020,1,123,6.6,78,Sherlock's sister searches for her missing mother.,Mystery,1,medium,89.4,Taylor,35-44,Romance,Fantasy,short,weeknights,balanced explorer,2,mobile
U019,T014,2026-01-27,3.2,64,friend recommendation,0,0,Cobra Kai,TV Show,"Comedy, Action",TV-14,2018,6,34,8.4,75,Old karate rivals reignite decades later.,Comedy,0,short,106.5,Taylor,35-44,Romance,Fantasy,short,weeknights,balanced explorer,2,mobile
U019,T011,2025-05-29,4.2,100,friend recommendation,1,1,Lupin,TV Show,"Crime, Mystery",TV-14,2021,3,44,7.5,85,A gentleman thief seeks revenge using deception.,Crime,1,short,100.5,Taylor,35-44,Romance,Fantasy,short,weeknights,balanced explorer,2,mobile
U019,T001,2025-03-03,2.9,78,browse row,0,0,Stranger Things,TV Show,"Sci-Fi, Drama",TV-14,2016,4,51,8.7,95,Supernatural mysteries unfold in a small town.,Sci-Fi,0,short,115.5,Taylor,35-44,Romance,Fantasy,short,weeknights,balanced explorer,2,mobile
U019,T052,2025-09-12,2.5,86,homepage banner,0,1,3 Body Problem,TV Show,"Sci-Fi, Mystery",TV-MA,2024,1,58,7.6,84,Scientists confront a cosmic threat from first contact.,Sci-Fi,1,short,101.2,Taylor,35-44,Romance,Fantasy,short,weeknights,balanced explorer,2,mobile
U019,T005,2025-03-31,4.5,85,search,1,1,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Taylor,35-44,Romance,Fantasy,short,weeknights,balanced explorer,2,mobile
U020,T053,2025-09-30,4.3,99,search,1,1,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Avery,45-54,Mystery,Crime,short,mixed,comfort rewatcher,4,mobile
U020,T037,2025-09-14,3.0,38,email click,0,0,To All the Boys I've Loved Before,Movie,"Romance, Comedy",PG-13,2018,1,99,7.0,76,Secret love letters create romantic chaos.,Romance,0,medium,92.8,Avery,45-54,Mystery,Crime,short,mixed,comfort rewatcher,4,mobile
U020,T013,2026-03-03,2.4,76,friend recommendation,0,0,Black Mirror,TV Show,"Sci-Fi, Thriller",TV-MA,2011,6,60,8.7,76,Dark anthology tales explore technology's consequences.,Sci-Fi,0,short,109.8,Avery,45-54,Mystery,Crime,short,mixed,comfort rewatcher,4,mobile
U020,T052,2025-02-06,3.0,79,homepage banner,0,0,3 Body Problem,TV Show,"Sci-Fi, Mystery",TV-MA,2024,1,58,7.6,84,Scientists confront a cosmic threat from first contact.,Sci-Fi,1,short,101.2,Avery,45-54,Mystery,Crime,short,mixed,comfort rewatcher,4,mobile
U020,T021,2026-01-15,3.3,79,browse row,0,0,Breaking Bad,TV Show,"Crime, Drama",TV-MA,2008,5,47,9.5,99,A chemistry teacher turns to meth production.,Crime,0,short,124.7,Avery,45-54,Mystery,Crime,short,mixed,comfort rewatcher,4,mobile
U020,T019,2025-08-12,3.3,79,browse row,0,0,Squid Game,TV Show,"Thriller, Drama",TV-MA,2021,1,55,8.0,97,Cash-strapped players join deadly children's games.,Thriller,1,short,109.1,Avery,45-54,Mystery,Crime,short,mixed,comfort rewatcher,4,mobile
U020,T024,2025-08-24,3.1,69,browse row,0,0,The Office,TV Show,Comedy,TV-14,2005,9,22,9.0,94,Office workers navigate absurd everyday routines.,Comedy,0,short,118.2,Avery,45-54,Mystery,Crime,short,mixed,comfort rewatcher,4,mobile
U020,T034,2025-06-10,3.6,88,email click,0,1,Enola Holmes,Movie,"Mystery, Adventure",PG-13,2020,1,123,6.6,78,Sherlock's sister searches for her missing mother.,Mystery,1,medium,89.4,Avery,45-54,Mystery,Crime,short,mixed,comfort rewatcher,4,mobile
U020,T049,2025-08-08,3.8,64,email click,0,0,Maestro in Blue,TV Show,"Drama, Romance",TV-MA,2022,1,50,7.8,59,A musician becomes entangled in island secrets.,Drama,1,short,95.7,Avery,45-54,Mystery,Crime,short,mixed,comfort rewatcher,4,mobile
U020,T007,2025-07-27,3.3,80,homepage banner,0,0,The Witcher,TV Show,"Fantasy, Action",TV-MA,2019,3,57,8.0,86,A monster hunter navigates destiny and politics.,Fantasy,0,short,105.8,Avery,45-54,Mystery,Crime,short,mixed,comfort rewatcher,4,mobile
U020,T035,2025-05-29,3.1,78,browse row,0,0,The Adam Project,Movie,"Sci-Fi, Adventure",PG-13,2022,1,106,6.7,73,A time-traveling pilot teams up with his younger self.,Sci-Fi,1,medium,88.9,Avery,45-54,Mystery,Crime,short,mixed,comfort rewatcher,4,mobile
U020,T044,2025-07-27,2.8,77,browse row,0,0,Project Power,Movie,"Action, Sci-Fi",R,2020,1,113,6.0,64,A pill that grants powers sparks chaos in New Orleans.,Action,1,medium,79.2,Avery,45-54,Mystery,Crime,short,mixed,comfort rewatcher,4,mobile
U020,T004,2025-06-16,3.7,84,search,0,0,The Queen's Gambit,TV Show,Drama,TV-MA,2020,1,56,8.5,89,A chess prodigy battles addiction and fame.,Drama,1,short,111.7,Avery,45-54,Mystery,Crime,short,mixed,comfort rewatcher,4,mobile
U020,T026,2026-02-15,3.6,95,email click,0,1,Seinfeld,TV Show,Comedy,TV-14,1989,9,23,8.9,81,A comedian and friends obsess over daily trivialities.,Comedy,0,short,113.3,Avery,45-54,Mystery,Crime,short,mixed,comfort rewatcher,4,mobile
U021,T046,2026-03-02,3.4,79,friend recommendation,0,0,Red Notice,Movie,"Action, Comedy",PG-13,2021,1,118,6.3,92,An FBI profiler chases two rival art thieves.,Action,1,medium,90.6,Avery,45-54,Fantasy,Animation,short,weekends,comfort rewatcher,5,laptop
U021,T047,2025-02-15,3.7,64,homepage banner,0,0,The Mitchells vs. the Machines,Movie,"Animation, Comedy",PG,2021,1,113,7.6,74,A quirky family saves the world from a robot uprising.,Animation,1,medium,98.2,Avery,45-54,Fantasy,Animation,short,weekends,comfort rewatcher,5,laptop
U021,T020,2025-02-24,3.2,52,search,0,0,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Avery,45-54,Fantasy,Animation,short,weekends,comfort rewatcher,5,laptop
U021,T005,2025-08-12,4.9,61,email click,1,0,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Avery,45-54,Fantasy,Animation,short,weekends,comfort rewatcher,5,laptop
U021,T060,2025-07-25,3.5,94,email click,0,1,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Avery,45-54,Fantasy,Animation,short,weekends,comfort rewatcher,5,laptop
U021,T058,2025-02-10,3.8,84,homepage banner,0,0,Carry-On,Movie,"Thriller, Action",PG-13,2024,1,112,6.8,90,An airport employee is blackmailed into a dangerous plot.,Thriller,1,medium,95.0,Avery,45-54,Fantasy,Animation,short,weekends,comfort rewatcher,5,laptop
U021,T049,2025-06-08,3.8,80,friend recommendation,0,0,Maestro in Blue,TV Show,"Drama, Romance",TV-MA,2022,1,50,7.8,59,A musician becomes entangled in island secrets.,Drama,1,short,95.7,Avery,45-54,Fantasy,Animation,short,weekends,comfort rewatcher,5,laptop
U021,T032,2025-04-24,2.3,90,friend recommendation,0,1,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Avery,45-54,Fantasy,Animation,short,weekends,comfort rewatcher,5,laptop
U021,T008,2026-02-03,3.2,55,search,0,0,Dark,TV Show,"Sci-Fi, Mystery",TV-MA,2017,3,52,8.7,80,Time-travel secrets emerge in a German town.,Sci-Fi,0,short,111.0,Avery,45-54,Fantasy,Animation,short,weekends,comfort rewatcher,5,laptop
U021,T014,2025-02-09,3.0,68,email click,0,0,Cobra Kai,TV Show,"Comedy, Action",TV-14,2018,6,34,8.4,75,Old karate rivals reignite decades later.,Comedy,0,short,106.5,Avery,45-54,Fantasy,Animation,short,weekends,comfort rewatcher,5,laptop
U021,T010,2025-11-21,3.6,100,browse row,0,1,Emily in Paris,TV Show,"Comedy, Romance",TV-MA,2020,4,30,6.9,72,A marketer explores work and romance in Paris.,Comedy,1,short,90.6,Avery,45-54,Fantasy,Animation,short,weekends,comfort rewatcher,5,laptop
U021,T040,2025-09-29,4.9,97,email click,1,1,Guillermo del Toro's Pinocchio,Movie,"Animation, Fantasy",PG,2022,1,117,7.6,66,A wooden boy comes to life in wartime Italy.,Animation,1,medium,95.8,Avery,45-54,Fantasy,Animation,short,weekends,comfort rewatcher,5,laptop
U021,T059,2025-04-10,4.5,100,friend recommendation,1,1,Anyone But You,Movie,"Romance, Comedy",R,2023,1,103,6.4,77,A fake-couple wedding trip reignites sparks.,Romance,1,medium,87.1,Avery,45-54,Fantasy,Animation,short,weekends,comfort rewatcher,5,laptop
U021,T003,2025-06-29,3.5,72,search,0,0,Money Heist,TV Show,"Crime, Thriller",TV-MA,2017,5,50,8.2,91,A criminal mastermind executes an ambitious heist.,Crime,0,short,109.3,Avery,45-54,Fantasy,Animation,short,weekends,comfort rewatcher,5,laptop
U021,T036,2025-05-01,3.2,76,browse row,0,0,The Gray Man,Movie,"Action, Thriller",PG-13,2022,1,122,6.5,71,A CIA asset becomes the target of a global manhunt.,Action,1,medium,86.3,Avery,45-54,Fantasy,Animation,short,weekends,comfort rewatcher,5,laptop
U022,T027,2025-05-12,3.2,75,search,0,0,The Irishman,Movie,"Crime, Drama",R,2019,1,209,7.8,70,An aging hitman reflects on loyalty and regret.,Crime,0,long,99.0,Avery,35-44,Thriller,Action,long,mixed,balanced explorer,9,mobile
U022,T006,2025-03-30,3.0,72,email click,0,0,Bridgerton,TV Show,"Romance, Drama",TV-MA,2020,3,60,7.4,84,Love and scandal shape the London social season.,Romance,1,short,99.2,Avery,35-44,Thriller,Action,long,mixed,balanced explorer,9,mobile
U022,T029,2025-03-20,4.6,100,browse row,1,1,Bird Box,Movie,"Thriller, Horror",R,2018,1,124,6.6,88,Survivors avoid a mysterious force that drives people mad.,Thriller,0,medium,92.4,Avery,35-44,Thriller,Action,long,mixed,balanced explorer,9,mobile
U022,T041,2025-04-01,3.7,61,homepage banner,0,0,The Killer,Movie,"Thriller, Crime",R,2023,1,118,6.8,60,A meticulous assassin faces unexpected consequences.,Thriller,1,medium,86.0,Avery,35-44,Thriller,Action,long,mixed,balanced explorer,9,mobile
U022,T014,2025-08-26,3.5,100,email click,0,1,Cobra Kai,TV Show,"Comedy, Action",TV-14,2018,6,34,8.4,75,Old karate rivals reignite decades later.,Comedy,0,short,106.5,Avery,35-44,Thriller,Action,long,mixed,balanced explorer,9,mobile
U022,T058,2026-01-25,4.1,100,email click,1,1,Carry-On,Movie,"Thriller, Action",PG-13,2024,1,112,6.8,90,An airport employee is blackmailed into a dangerous plot.,Thriller,1,medium,95.0,Avery,35-44,Thriller,Action,long,mixed,balanced explorer,9,mobile
U022,T012,2025-08-18,4.0,76,email click,1,0,Ozark,TV Show,"Crime, Drama",TV-MA,2017,4,60,8.5,77,A family launders money for a dangerous cartel.,Crime,0,short,108.1,Avery,35-44,Thriller,Action,long,mixed,balanced explorer,9,mobile
U022,T023,2025-11-26,3.3,100,email click,0,1,Peaky Blinders,TV Show,"Crime, History",TV-MA,2013,6,58,8.8,83,A Birmingham gang rises after World War I.,Crime,0,short,112.9,Avery,35-44,Thriller,Action,long,mixed,balanced explorer,9,mobile
U022,T033,2025-06-15,4.4,85,friend recommendation,1,1,Extraction,Movie,"Action, Thriller",R,2020,1,116,6.8,74,A mercenary attempts a dangerous rescue mission.,Action,1,medium,90.2,Avery,35-44,Thriller,Action,long,mixed,balanced explorer,9,mobile
U022,T053,2025-03-19,2.7,56,homepage banner,0,0,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Avery,35-44,Thriller,Action,long,mixed,balanced explorer,9,mobile
U023,T011,2025-08-29,4.2,81,homepage banner,1,0,Lupin,TV Show,"Crime, Mystery",TV-14,2021,3,44,7.5,85,A gentleman thief seeks revenge using deception.,Crime,1,short,100.5,Avery,18-24,Sci-Fi,Mystery,short,weekends,novelty seeker,5,laptop
U023,T009,2025-11-20,3.6,86,friend recommendation,0,1,Narcos,TV Show,"Crime, Drama",TV-MA,2015,3,49,8.7,78,The rise of Pablo Escobar and the drug wars.,Crime,0,short,110.4,Avery,18-24,Sci-Fi,Mystery,short,weekends,novelty seeker,5,laptop
U023,T047,2026-02-12,3.5,100,friend recommendation,0,1,The Mitchells vs. the Machines,Movie,"Animation, Comedy",PG,2021,1,113,7.6,74,A quirky family saves the world from a robot uprising.,Animation,1,medium,98.2,Avery,18-24,Sci-Fi,Mystery,short,weekends,novelty seeker,5,laptop
U023,T055,2025-10-30,3.5,73,browse row,0,0,Blue Eye Samurai,TV Show,"Animation, Action",TV-MA,2023,1,45,8.7,70,A swordswoman seeks revenge in Edo-period Japan.,Animation,1,short,108.0,Avery,18-24,Sci-Fi,Mystery,short,weekends,novelty seeker,5,laptop
U023,T001,2025-06-30,3.6,57,email click,0,0,Stranger Things,TV Show,"Sci-Fi, Drama",TV-14,2016,4,51,8.7,95,Supernatural mysteries unfold in a small town.,Sci-Fi,0,short,115.5,Avery,18-24,Sci-Fi,Mystery,short,weekends,novelty seeker,5,laptop
U023,T018,2025-02-07,3.0,64,friend recommendation,0,0,One Piece,TV Show,"Adventure, Fantasy",TV-14,2023,1,55,8.4,90,Pirates hunt treasure in a live-action adaptation.,Adventure,1,short,111.0,Avery,18-24,Sci-Fi,Mystery,short,weekends,novelty seeker,5,laptop
U023,T014,2025-08-25,4.1,86,homepage banner,1,1,Cobra Kai,TV Show,"Comedy, Action",TV-14,2018,6,34,8.4,75,Old karate rivals reignite decades later.,Comedy,0,short,106.5,Avery,18-24,Sci-Fi,Mystery,short,weekends,novelty seeker,5,laptop
U023,T028,2025-01-20,3.1,74,browse row,0,0,Marriage Story,Movie,Drama,R,2019,1,137,7.9,68,A couple navigates a painful divorce.,Drama,0,long,99.4,Avery,18-24,Sci-Fi,Mystery,short,weekends,novelty seeker,5,laptop
U023,T061,2025-07-08,3.9,100,friend recommendation,0,1,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Avery,18-24,Sci-Fi,Mystery,short,weekends,novelty seeker,5,laptop
U024,T041,2025-11-27,3.1,61,browse row,0,0,The Killer,Movie,"Thriller, Crime",R,2023,1,118,6.8,60,A meticulous assassin faces unexpected consequences.,Thriller,1,medium,86.0,Sam,18-24,Sci-Fi,Drama,short,mixed,comfort rewatcher,2,tv
U024,T011,2025-11-11,3.7,75,email click,0,0,Lupin,TV Show,"Crime, Mystery",TV-14,2021,3,44,7.5,85,A gentleman thief seeks revenge using deception.,Crime,1,short,100.5,Sam,18-24,Sci-Fi,Drama,short,mixed,comfort rewatcher,2,tv
U024,T028,2025-09-17,2.6,89,homepage banner,0,1,Marriage Story,Movie,Drama,R,2019,1,137,7.9,68,A couple navigates a painful divorce.,Drama,0,long,99.4,Sam,18-24,Sci-Fi,Drama,short,mixed,comfort rewatcher,2,tv
U024,T029,2025-08-25,3.7,51,email click,0,0,Bird Box,Movie,"Thriller, Horror",R,2018,1,124,6.6,88,Survivors avoid a mysterious force that drives people mad.,Thriller,0,medium,92.4,Sam,18-24,Sci-Fi,Drama,short,mixed,comfort rewatcher,2,tv
U024,T053,2025-10-11,3.0,65,browse row,0,0,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Sam,18-24,Sci-Fi,Drama,short,mixed,comfort rewatcher,2,tv
U024,T008,2025-08-19,5.0,93,email click,1,1,Dark,TV Show,"Sci-Fi, Mystery",TV-MA,2017,3,52,8.7,80,Time-travel secrets emerge in a German town.,Sci-Fi,0,short,111.0,Sam,18-24,Sci-Fi,Drama,short,mixed,comfort rewatcher,2,tv
U024,T034,2025-11-30,2.1,79,search,0,0,Enola Holmes,Movie,"Mystery, Adventure",PG-13,2020,1,123,6.6,78,Sherlock's sister searches for her missing mother.,Mystery,1,medium,89.4,Sam,18-24,Sci-Fi,Drama,short,mixed,comfort rewatcher,2,tv
U024,T026,2025-06-14,2.6,67,email click,0,0,Seinfeld,TV Show,Comedy,TV-14,1989,9,23,8.9,81,A comedian and friends obsess over daily trivialities.,Comedy,0,short,113.3,Sam,18-24,Sci-Fi,Drama,short,mixed,comfort rewatcher,2,tv
U024,T005,2025-09-01,2.8,64,email click,0,0,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Sam,18-24,Sci-Fi,Drama,short,mixed,comfort rewatcher,2,tv
U025,T041,2025-02-01,4.3,100,homepage banner,1,1,The Killer,Movie,"Thriller, Crime",R,2023,1,118,6.8,60,A meticulous assassin faces unexpected consequences.,Thriller,1,medium,86.0,Avery,45-54,Crime,Animation,short,weekends,comfort rewatcher,4,laptop
U025,T059,2025-02-22,2.8,88,friend recommendation,0,1,Anyone But You,Movie,"Romance, Comedy",R,2023,1,103,6.4,77,A fake-couple wedding trip reignites sparks.,Romance,1,medium,87.1,Avery,45-54,Crime,Animation,short,weekends,comfort rewatcher,4,laptop
U025,T008,2026-01-01,3.5,69,browse row,0,0,Dark,TV Show,"Sci-Fi, Mystery",TV-MA,2017,3,52,8.7,80,Time-travel secrets emerge in a German town.,Sci-Fi,0,short,111.0,Avery,45-54,Crime,Animation,short,weekends,comfort rewatcher,4,laptop
U025,T009,2025-09-16,4.2,81,search,1,0,Narcos,TV Show,"Crime, Drama",TV-MA,2015,3,49,8.7,78,The rise of Pablo Escobar and the drug wars.,Crime,0,short,110.4,Avery,45-54,Crime,Animation,short,weekends,comfort rewatcher,4,laptop
U025,T031,2025-01-21,2.9,76,search,0,0,Roma,Movie,Drama,R,2018,1,135,7.7,63,A domestic worker supports a family in 1970s Mexico City.,Drama,0,long,95.9,Avery,45-54,Crime,Animation,short,weekends,comfort rewatcher,4,laptop
U025,T006,2025-12-29,3.7,89,homepage banner,0,1,Bridgerton,TV Show,"Romance, Drama",TV-MA,2020,3,60,7.4,84,Love and scandal shape the London social season.,Romance,1,short,99.2,Avery,45-54,Crime,Animation,short,weekends,comfort rewatcher,4,laptop
U025,T050,2025-08-13,1.8,61,email click,0,0,Baby Reindeer,TV Show,"Drama, Thriller",TV-MA,2024,1,33,8.3,86,A comedian faces a stalking nightmare.,Drama,1,short,108.8,Avery,45-54,Crime,Animation,short,weekends,comfort rewatcher,4,laptop
U025,T020,2025-09-25,2.4,64,email click,0,0,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Avery,45-54,Crime,Animation,short,weekends,comfort rewatcher,4,laptop
U025,T046,2025-03-23,2.9,88,friend recommendation,0,1,Red Notice,Movie,"Action, Comedy",PG-13,2021,1,118,6.3,92,An FBI profiler chases two rival art thieves.,Action,1,medium,90.6,Avery,45-54,Crime,Animation,short,weekends,comfort rewatcher,4,laptop
U025,T054,2025-07-10,3.3,81,friend recommendation,0,0,Beef,TV Show,"Comedy, Drama",TV-MA,2023,1,35,8.0,73,A road-rage incident spirals into obsession.,Comedy,1,short,101.9,Avery,45-54,Crime,Animation,short,weekends,comfort rewatcher,4,laptop
U026,T042,2025-07-29,3.0,87,friend recommendation,0,1,Leave the World Behind,Movie,"Thriller, Drama",R,2023,1,141,6.4,82,A family vacation turns ominous during a blackout.,Thriller,1,long,88.6,Sam,45-54,Mystery,Fantasy,short,weekends,comfort rewatcher,3,laptop
U026,T053,2025-12-14,3.3,83,email click,0,0,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Sam,45-54,Mystery,Fantasy,short,weekends,comfort rewatcher,3,laptop
U026,T055,2025-01-27,2.8,76,friend recommendation,0,0,Blue Eye Samurai,TV Show,"Animation, Action",TV-MA,2023,1,45,8.7,70,A swordswoman seeks revenge in Edo-period Japan.,Animation,1,short,108.0,Sam,45-54,Mystery,Fantasy,short,weekends,comfort rewatcher,3,laptop
U026,T060,2025-02-03,3.5,48,friend recommendation,0,0,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Sam,45-54,Mystery,Fantasy,short,weekends,comfort rewatcher,3,laptop
U026,T012,2025-02-18,2.6,65,email click,0,0,Ozark,TV Show,"Crime, Drama",TV-MA,2017,4,60,8.5,77,A family launders money for a dangerous cartel.,Crime,0,short,108.1,Sam,45-54,Mystery,Fantasy,short,weekends,comfort rewatcher,3,laptop
U026,T047,2025-12-14,3.2,74,homepage banner,0,0,The Mitchells vs. the Machines,Movie,"Animation, Comedy",PG,2021,1,113,7.6,74,A quirky family saves the world from a robot uprising.,Animation,1,medium,98.2,Sam,45-54,Mystery,Fantasy,short,weekends,comfort rewatcher,3,laptop
U026,T025,2025-05-26,3.3,100,friend recommendation,0,1,Friends,TV Show,"Comedy, Romance",TV-14,1994,10,22,8.9,92,Six friends face life and love in New York.,Comedy,0,short,116.6,Sam,45-54,Mystery,Fantasy,short,weekends,comfort rewatcher,3,laptop
U026,T054,2026-01-06,2.6,88,email click,0,1,Beef,TV Show,"Comedy, Drama",TV-MA,2023,1,35,8.0,73,A road-rage incident spirals into obsession.,Comedy,1,short,101.9,Sam,45-54,Mystery,Fantasy,short,weekends,comfort rewatcher,3,laptop
U026,T056,2025-03-18,3.4,87,friend recommendation,0,1,Damsel,Movie,"Fantasy, Adventure",PG-13,2024,1,109,6.1,89,A princess fights to survive a dragon-filled cave.,Fantasy,1,medium,87.7,Sam,45-54,Mystery,Fantasy,short,weekends,comfort rewatcher,3,laptop
U026,T058,2025-02-11,4.3,98,email click,1,1,Carry-On,Movie,"Thriller, Action",PG-13,2024,1,112,6.8,90,An airport employee is blackmailed into a dangerous plot.,Thriller,1,medium,95.0,Sam,45-54,Mystery,Fantasy,short,weekends,comfort rewatcher,3,laptop
U026,T039,2025-12-06,3.2,100,search,0,1,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Sam,45-54,Mystery,Fantasy,short,weekends,comfort rewatcher,3,laptop
U026,T044,2025-06-29,3.7,70,friend recommendation,0,0,Project Power,Movie,"Action, Sci-Fi",R,2020,1,113,6.0,64,A pill that grants powers sparks chaos in New Orleans.,Action,1,medium,79.2,Sam,45-54,Mystery,Fantasy,short,weekends,comfort rewatcher,3,laptop
U026,T038,2025-12-02,3.8,57,homepage banner,0,0,The Old Guard,Movie,"Action, Fantasy",R,2020,1,125,6.7,67,Immortal mercenaries fight to protect their secret.,Action,1,medium,87.1,Sam,45-54,Mystery,Fantasy,short,weekends,comfort rewatcher,3,laptop
U026,T022,2025-03-08,3.0,79,email click,0,0,Better Call Saul,TV Show,"Crime, Drama",TV-MA,2015,6,46,9.0,96,The morally flexible lawyer begins his transformation.,Crime,0,short,118.8,Sam,45-54,Mystery,Fantasy,short,weekends,comfort rewatcher,3,laptop
U027,T042,2025-06-08,4.1,97,email click,1,1,Leave the World Behind,Movie,"Thriller, Drama",R,2023,1,141,6.4,82,A family vacation turns ominous during a blackout.,Thriller,1,long,88.6,Alex,45-54,Action,Romance,medium,weekends,novelty seeker,3,mobile
U027,T028,2025-07-12,2.9,92,friend recommendation,0,1,Marriage Story,Movie,Drama,R,2019,1,137,7.9,68,A couple navigates a painful divorce.,Drama,0,long,99.4,Alex,45-54,Action,Romance,medium,weekends,novelty seeker,3,mobile
U027,T046,2026-02-21,3.8,83,search,0,0,Red Notice,Movie,"Action, Comedy",PG-13,2021,1,118,6.3,92,An FBI profiler chases two rival art thieves.,Action,1,medium,90.6,Alex,45-54,Action,Romance,medium,weekends,novelty seeker,3,mobile
U027,T020,2025-12-10,3.9,65,email click,0,0,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Alex,45-54,Action,Romance,medium,weekends,novelty seeker,3,mobile
U027,T048,2025-02-17,2.6,81,homepage banner,0,0,Klaus,Movie,"Animation, Family",PG,2019,1,96,8.2,69,A postman and a toymaker spark a holiday tradition.,Animation,0,medium,102.7,Alex,45-54,Action,Romance,medium,weekends,novelty seeker,3,mobile
U027,T018,2025-09-18,3.6,67,friend recommendation,0,0,One Piece,TV Show,"Adventure, Fantasy",TV-14,2023,1,55,8.4,90,Pirates hunt treasure in a live-action adaptation.,Adventure,1,short,111.0,Alex,45-54,Action,Romance,medium,weekends,novelty seeker,3,mobile
U027,T056,2025-01-10,3.2,59,friend recommendation,0,0,Damsel,Movie,"Fantasy, Adventure",PG-13,2024,1,109,6.1,89,A princess fights to survive a dragon-filled cave.,Fantasy,1,medium,87.7,Alex,45-54,Action,Romance,medium,weekends,novelty seeker,3,mobile
U027,T049,2025-06-08,4.6,87,search,1,1,Maestro in Blue,TV Show,"Drama, Romance",TV-MA,2022,1,50,7.8,59,A musician becomes entangled in island secrets.,Drama,1,short,95.7,Alex,45-54,Action,Romance,medium,weekends,novelty seeker,3,mobile
U027,T017,2025-04-20,5.0,96,friend recommendation,1,1,The Night Agent,TV Show,"Action, Thriller",TV-MA,2023,1,45,7.5,83,An FBI agent uncovers a conspiracy from a late-night call.,Action,1,short,99.9,Alex,45-54,Action,Romance,medium,weekends,novelty seeker,3,mobile
U028,T023,2025-04-09,3.4,52,search,0,0,Peaky Blinders,TV Show,"Crime, History",TV-MA,2013,6,58,8.8,83,A Birmingham gang rises after World War I.,Crime,0,short,112.9,Avery,25-34,Action,Romance,short,weeknights,comfort rewatcher,9,mobile
U028,T045,2025-03-12,3.5,77,search,0,0,Murder Mystery,Movie,"Comedy, Mystery",PG-13,2019,1,97,6.0,81,A couple becomes entangled in a murder case on a yacht.,Comedy,0,medium,84.3,Avery,25-34,Action,Romance,short,weeknights,comfort rewatcher,9,mobile
U028,T027,2025-02-09,2.7,48,friend recommendation,0,0,The Irishman,Movie,"Crime, Drama",R,2019,1,209,7.8,70,An aging hitman reflects on loyalty and regret.,Crime,0,long,99.0,Avery,25-34,Action,Romance,short,weeknights,comfort rewatcher,9,mobile
U028,T044,2026-02-08,4.3,80,browse row,1,0,Project Power,Movie,"Action, Sci-Fi",R,2020,1,113,6.0,64,A pill that grants powers sparks chaos in New Orleans.,Action,1,medium,79.2,Avery,25-34,Action,Romance,short,weeknights,comfort rewatcher,9,mobile
U028,T041,2025-09-17,2.3,35,email click,0,0,The Killer,Movie,"Thriller, Crime",R,2023,1,118,6.8,60,A meticulous assassin faces unexpected consequences.,Thriller,1,medium,86.0,Avery,25-34,Action,Romance,short,weeknights,comfort rewatcher,9,mobile
U028,T008,2026-03-04,3.3,100,email click,0,1,Dark,TV Show,"Sci-Fi, Mystery",TV-MA,2017,3,52,8.7,80,Time-travel secrets emerge in a German town.,Sci-Fi,0,short,111.0,Avery,25-34,Action,Romance,short,weeknights,comfort rewatcher,9,mobile
U028,T029,2025-01-20,4.0,78,friend recommendation,1,0,Bird Box,Movie,"Thriller, Horror",R,2018,1,124,6.6,88,Survivors avoid a mysterious force that drives people mad.,Thriller,0,medium,92.4,Avery,25-34,Action,Romance,short,weeknights,comfort rewatcher,9,mobile
U028,T003,2026-01-28,2.9,81,email click,0,0,Money Heist,TV Show,"Crime, Thriller",TV-MA,2017,5,50,8.2,91,A criminal mastermind executes an ambitious heist.,Crime,0,short,109.3,Avery,25-34,Action,Romance,short,weeknights,comfort rewatcher,9,mobile
U028,T002,2025-03-09,2.7,76,email click,0,0,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Avery,25-34,Action,Romance,short,weeknights,comfort rewatcher,9,mobile
U028,T035,2025-07-12,3.5,98,search,0,1,The Adam Project,Movie,"Sci-Fi, Adventure",PG-13,2022,1,106,6.7,73,A time-traveling pilot teams up with his younger self.,Sci-Fi,1,medium,88.9,Avery,25-34,Action,Romance,short,weeknights,comfort rewatcher,9,mobile
U028,T032,2025-03-25,2.9,70,search,0,0,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Avery,25-34,Action,Romance,short,weeknights,comfort rewatcher,9,mobile
U028,T039,2026-03-02,2.5,57,email click,0,0,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Avery,25-34,Action,Romance,short,weeknights,comfort rewatcher,9,mobile
U028,T005,2026-02-19,3.2,82,search,0,0,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Avery,25-34,Action,Romance,short,weeknights,comfort rewatcher,9,mobile
U028,T010,2026-01-05,4.4,76,homepage banner,1,0,Emily in Paris,TV Show,"Comedy, Romance",TV-MA,2020,4,30,6.9,72,A marketer explores work and romance in Paris.,Comedy,1,short,90.6,Avery,25-34,Action,Romance,short,weeknights,comfort rewatcher,9,mobile
U028,T009,2025-01-23,4.2,82,homepage banner,1,0,Narcos,TV Show,"Crime, Drama",TV-MA,2015,3,49,8.7,78,The rise of Pablo Escobar and the drug wars.,Crime,0,short,110.4,Avery,25-34,Action,Romance,short,weeknights,comfort rewatcher,9,mobile
U029,T029,2025-12-13,2.5,71,search,0,0,Bird Box,Movie,"Thriller, Horror",R,2018,1,124,6.6,88,Survivors avoid a mysterious force that drives people mad.,Thriller,0,medium,92.4,Riley,25-34,Action,Comedy,medium,weekends,comfort rewatcher,3,mobile
U029,T028,2025-08-16,2.4,35,email click,0,0,Marriage Story,Movie,Drama,R,2019,1,137,7.9,68,A couple navigates a painful divorce.,Drama,0,long,99.4,Riley,25-34,Action,Comedy,medium,weekends,comfort rewatcher,3,mobile
U029,T013,2025-05-26,3.3,91,homepage banner,0,1,Black Mirror,TV Show,"Sci-Fi, Thriller",TV-MA,2011,6,60,8.7,76,Dark anthology tales explore technology's consequences.,Sci-Fi,0,short,109.8,Riley,25-34,Action,Comedy,medium,weekends,comfort rewatcher,3,mobile
U029,T035,2025-04-30,1.6,45,email click,0,0,The Adam Project,Movie,"Sci-Fi, Adventure",PG-13,2022,1,106,6.7,73,A time-traveling pilot teams up with his younger self.,Sci-Fi,1,medium,88.9,Riley,25-34,Action,Comedy,medium,weekends,comfort rewatcher,3,mobile
U029,T042,2025-05-03,3.4,100,friend recommendation,0,1,Leave the World Behind,Movie,"Thriller, Drama",R,2023,1,141,6.4,82,A family vacation turns ominous during a blackout.,Thriller,1,long,88.6,Riley,25-34,Action,Comedy,medium,weekends,comfort rewatcher,3,mobile
U029,T031,2026-02-19,3.0,64,homepage banner,0,0,Roma,Movie,Drama,R,2018,1,135,7.7,63,A domestic worker supports a family in 1970s Mexico City.,Drama,0,long,95.9,Riley,25-34,Action,Comedy,medium,weekends,comfort rewatcher,3,mobile
U029,T016,2026-03-04,2.9,94,search,0,1,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Riley,25-34,Action,Comedy,medium,weekends,comfort rewatcher,3,mobile
U029,T048,2025-07-08,2.6,59,email click,0,0,Klaus,Movie,"Animation, Family",PG,2019,1,96,8.2,69,A postman and a toymaker spark a holiday tradition.,Animation,0,medium,102.7,Riley,25-34,Action,Comedy,medium,weekends,comfort rewatcher,3,mobile
U029,T002,2025-08-14,2.7,57,homepage banner,0,0,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Riley,25-34,Action,Comedy,medium,weekends,comfort rewatcher,3,mobile
U029,T008,2026-01-29,3.1,100,friend recommendation,0,1,Dark,TV Show,"Sci-Fi, Mystery",TV-MA,2017,3,52,8.7,80,Time-travel secrets emerge in a German town.,Sci-Fi,0,short,111.0,Riley,25-34,Action,Comedy,medium,weekends,comfort rewatcher,3,mobile
U029,T022,2026-02-03,3.2,73,homepage banner,0,0,Better Call Saul,TV Show,"Crime, Drama",TV-MA,2015,6,46,9.0,96,The morally flexible lawyer begins his transformation.,Crime,0,short,118.8,Riley,25-34,Action,Comedy,medium,weekends,comfort rewatcher,3,mobile
U029,T041,2025-09-15,2.8,49,email click,0,0,The Killer,Movie,"Thriller, Crime",R,2023,1,118,6.8,60,A meticulous assassin faces unexpected consequences.,Thriller,1,medium,86.0,Riley,25-34,Action,Comedy,medium,weekends,comfort rewatcher,3,mobile
U029,T039,2025-08-03,3.5,78,search,0,0,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Riley,25-34,Action,Comedy,medium,weekends,comfort rewatcher,3,mobile
U030,T017,2026-02-15,3.5,68,email click,0,0,The Night Agent,TV Show,"Action, Thriller",TV-MA,2023,1,45,7.5,83,An FBI agent uncovers a conspiracy from a late-night call.,Action,1,short,99.9,Riley,25-34,Animation,Drama,short,weeknights,balanced explorer,9,mobile
U030,T014,2025-03-12,3.0,83,friend recommendation,0,0,Cobra Kai,TV Show,"Comedy, Action",TV-14,2018,6,34,8.4,75,Old karate rivals reignite decades later.,Comedy,0,short,106.5,Riley,25-34,Animation,Drama,short,weeknights,balanced explorer,9,mobile
U030,T031,2025-01-27,3.8,81,homepage banner,0,0,Roma,Movie,Drama,R,2018,1,135,7.7,63,A domestic worker supports a family in 1970s Mexico City.,Drama,0,long,95.9,Riley,25-34,Animation,Drama,short,weeknights,balanced explorer,9,mobile
U030,T046,2025-07-10,2.2,51,email click,0,0,Red Notice,Movie,"Action, Comedy",PG-13,2021,1,118,6.3,92,An FBI profiler chases two rival art thieves.,Action,1,medium,90.6,Riley,25-34,Animation,Drama,short,weeknights,balanced explorer,9,mobile
U030,T032,2025-02-22,3.2,87,email click,0,1,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Riley,25-34,Animation,Drama,short,weeknights,balanced explorer,9,mobile
U030,T060,2025-03-05,2.9,61,friend recommendation,0,0,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Riley,25-34,Animation,Drama,short,weeknights,balanced explorer,9,mobile
U030,T034,2025-02-12,3.1,77,search,0,0,Enola Holmes,Movie,"Mystery, Adventure",PG-13,2020,1,123,6.6,78,Sherlock's sister searches for her missing mother.,Mystery,1,medium,89.4,Riley,25-34,Animation,Drama,short,weeknights,balanced explorer,9,mobile
U030,T055,2025-05-20,3.3,80,homepage banner,0,0,Blue Eye Samurai,TV Show,"Animation, Action",TV-MA,2023,1,45,8.7,70,A swordswoman seeks revenge in Edo-period Japan.,Animation,1,short,108.0,Riley,25-34,Animation,Drama,short,weeknights,balanced explorer,9,mobile
U030,T030,2025-09-20,2.6,95,search,0,1,Glass Onion,Movie,"Mystery, Comedy",PG-13,2022,1,139,7.1,85,A detective untangles a billionaire's island murder game.,Mystery,1,long,96.5,Riley,25-34,Animation,Drama,short,weeknights,balanced explorer,9,mobile
U030,T040,2026-03-02,4.1,92,homepage banner,1,1,Guillermo del Toro's Pinocchio,Movie,"Animation, Fantasy",PG,2022,1,117,7.6,66,A wooden boy comes to life in wartime Italy.,Animation,1,medium,95.8,Riley,25-34,Animation,Drama,short,weeknights,balanced explorer,9,mobile
U030,T026,2025-02-16,3.6,62,search,0,0,Seinfeld,TV Show,Comedy,TV-14,1989,9,23,8.9,81,A comedian and friends obsess over daily trivialities.,Comedy,0,short,113.3,Riley,25-34,Animation,Drama,short,weeknights,balanced explorer,9,mobile
U031,T019,2025-06-28,4.7,86,browse row,1,1,Squid Game,TV Show,"Thriller, Drama",TV-MA,2021,1,55,8.0,97,Cash-strapped players join deadly children's games.,Thriller,1,short,109.1,Casey,18-24,Action,Drama,short,weekends,balanced explorer,9,tv
U031,T057,2025-08-01,3.8,82,browse row,0,0,Rebel Moon,Movie,"Sci-Fi, Action",PG-13,2023,1,134,5.6,87,A former soldier gathers warriors to fight an empire.,Sci-Fi,1,long,82.1,Casey,18-24,Action,Drama,short,weekends,balanced explorer,9,tv
U031,T010,2025-07-22,3.1,74,email click,0,0,Emily in Paris,TV Show,"Comedy, Romance",TV-MA,2020,4,30,6.9,72,A marketer explores work and romance in Paris.,Comedy,1,short,90.6,Casey,18-24,Action,Drama,short,weekends,balanced explorer,9,tv
U031,T055,2025-07-11,4.6,100,search,1,1,Blue Eye Samurai,TV Show,"Animation, Action",TV-MA,2023,1,45,8.7,70,A swordswoman seeks revenge in Edo-period Japan.,Animation,1,short,108.0,Casey,18-24,Action,Drama,short,weekends,balanced explorer,9,tv
U031,T052,2025-07-17,3.9,100,browse row,0,1,3 Body Problem,TV Show,"Sci-Fi, Mystery",TV-MA,2024,1,58,7.6,84,Scientists confront a cosmic threat from first contact.,Sci-Fi,1,short,101.2,Casey,18-24,Action,Drama,short,weekends,balanced explorer,9,tv
U031,T059,2025-07-11,3.3,100,search,0,1,Anyone But You,Movie,"Romance, Comedy",R,2023,1,103,6.4,77,A fake-couple wedding trip reignites sparks.,Romance,1,medium,87.1,Casey,18-24,Action,Drama,short,weekends,balanced explorer,9,tv
U031,T037,2025-01-15,2.8,100,friend recommendation,0,1,To All the Boys I've Loved Before,Movie,"Romance, Comedy",PG-13,2018,1,99,7.0,76,Secret love letters create romantic chaos.,Romance,0,medium,92.8,Casey,18-24,Action,Drama,short,weekends,balanced explorer,9,tv
U031,T054,2025-02-20,3.7,77,friend recommendation,0,0,Beef,TV Show,"Comedy, Drama",TV-MA,2023,1,35,8.0,73,A road-rage incident spirals into obsession.,Comedy,1,short,101.9,Casey,18-24,Action,Drama,short,weekends,balanced explorer,9,tv
U031,T018,2026-02-10,3.2,73,search,0,0,One Piece,TV Show,"Adventure, Fantasy",TV-14,2023,1,55,8.4,90,Pirates hunt treasure in a live-action adaptation.,Adventure,1,short,111.0,Casey,18-24,Action,Drama,short,weekends,balanced explorer,9,tv
U031,T031,2025-03-12,3.7,73,browse row,0,0,Roma,Movie,Drama,R,2018,1,135,7.7,63,A domestic worker supports a family in 1970s Mexico City.,Drama,0,long,95.9,Casey,18-24,Action,Drama,short,weekends,balanced explorer,9,tv
U031,T038,2025-05-27,4.5,81,homepage banner,1,0,The Old Guard,Movie,"Action, Fantasy",R,2020,1,125,6.7,67,Immortal mercenaries fight to protect their secret.,Action,1,medium,87.1,Casey,18-24,Action,Drama,short,weekends,balanced explorer,9,tv
U031,T060,2025-12-23,4.0,100,search,1,1,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Casey,18-24,Action,Drama,short,weekends,balanced explorer,9,tv
U031,T046,2026-01-24,3.8,94,homepage banner,0,1,Red Notice,Movie,"Action, Comedy",PG-13,2021,1,118,6.3,92,An FBI profiler chases two rival art thieves.,Action,1,medium,90.6,Casey,18-24,Action,Drama,short,weekends,balanced explorer,9,tv
U031,T013,2025-08-18,3.6,100,email click,0,1,Black Mirror,TV Show,"Sci-Fi, Thriller",TV-MA,2011,6,60,8.7,76,Dark anthology tales explore technology's consequences.,Sci-Fi,0,short,109.8,Casey,18-24,Action,Drama,short,weekends,balanced explorer,9,tv
U031,T036,2025-01-03,3.7,93,browse row,0,1,The Gray Man,Movie,"Action, Thriller",PG-13,2022,1,122,6.5,71,A CIA asset becomes the target of a global manhunt.,Action,1,medium,86.3,Casey,18-24,Action,Drama,short,weekends,balanced explorer,9,tv
U032,T041,2025-05-12,2.6,70,search,0,0,The Killer,Movie,"Thriller, Crime",R,2023,1,118,6.8,60,A meticulous assassin faces unexpected consequences.,Thriller,1,medium,86.0,Taylor,45-54,Action,Animation,long,mixed,comfort rewatcher,6,mobile
U032,T043,2026-03-04,4.0,74,search,1,0,Army of the Dead,Movie,"Action, Horror",R,2021,1,148,5.7,58,Mercenaries enter zombie-infested Las Vegas for a heist.,Action,1,long,74.4,Taylor,45-54,Action,Animation,long,mixed,comfort rewatcher,6,mobile
U032,T054,2025-10-08,2.2,65,email click,0,0,Beef,TV Show,"Comedy, Drama",TV-MA,2023,1,35,8.0,73,A road-rage incident spirals into obsession.,Comedy,1,short,101.9,Taylor,45-54,Action,Animation,long,mixed,comfort rewatcher,6,mobile
U032,T042,2025-09-28,2.4,80,homepage banner,0,0,Leave the World Behind,Movie,"Thriller, Drama",R,2023,1,141,6.4,82,A family vacation turns ominous during a blackout.,Thriller,1,long,88.6,Taylor,45-54,Action,Animation,long,mixed,comfort rewatcher,6,mobile
U032,T018,2025-02-26,3.0,53,friend recommendation,0,0,One Piece,TV Show,"Adventure, Fantasy",TV-14,2023,1,55,8.4,90,Pirates hunt treasure in a live-action adaptation.,Adventure,1,short,111.0,Taylor,45-54,Action,Animation,long,mixed,comfort rewatcher,6,mobile
U032,T016,2025-05-02,2.8,61,friend recommendation,0,0,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Taylor,45-54,Action,Animation,long,mixed,comfort rewatcher,6,mobile
U032,T010,2025-03-04,3.2,97,browse row,0,1,Emily in Paris,TV Show,"Comedy, Romance",TV-MA,2020,4,30,6.9,72,A marketer explores work and romance in Paris.,Comedy,1,short,90.6,Taylor,45-54,Action,Animation,long,mixed,comfort rewatcher,6,mobile
U032,T039,2025-05-03,1.9,65,homepage banner,0,0,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Taylor,45-54,Action,Animation,long,mixed,comfort rewatcher,6,mobile
U033,T044,2026-02-11,2.7,94,email click,0,1,Project Power,Movie,"Action, Sci-Fi",R,2020,1,113,6.0,64,A pill that grants powers sparks chaos in New Orleans.,Action,1,medium,79.2,Alex,35-44,Drama,Animation,short,mixed,comfort rewatcher,9,laptop
U033,T006,2025-08-23,5.0,100,browse row,1,1,Bridgerton,TV Show,"Romance, Drama",TV-MA,2020,3,60,7.4,84,Love and scandal shape the London social season.,Romance,1,short,99.2,Alex,35-44,Drama,Animation,short,mixed,comfort rewatcher,9,laptop
U033,T010,2025-02-26,3.4,92,homepage banner,0,1,Emily in Paris,TV Show,"Comedy, Romance",TV-MA,2020,4,30,6.9,72,A marketer explores work and romance in Paris.,Comedy,1,short,90.6,Alex,35-44,Drama,Animation,short,mixed,comfort rewatcher,9,laptop
U033,T036,2025-11-02,2.3,68,email click,0,0,The Gray Man,Movie,"Action, Thriller",PG-13,2022,1,122,6.5,71,A CIA asset becomes the target of a global manhunt.,Action,1,medium,86.3,Alex,35-44,Drama,Animation,short,mixed,comfort rewatcher,9,laptop
U033,T060,2025-01-09,4.3,71,email click,1,0,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Alex,35-44,Drama,Animation,short,mixed,comfort rewatcher,9,laptop
U033,T007,2025-10-22,3.4,100,search,0,1,The Witcher,TV Show,"Fantasy, Action",TV-MA,2019,3,57,8.0,86,A monster hunter navigates destiny and politics.,Fantasy,0,short,105.8,Alex,35-44,Drama,Animation,short,mixed,comfort rewatcher,9,laptop
U033,T053,2026-01-03,3.6,94,search,0,1,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Alex,35-44,Drama,Animation,short,mixed,comfort rewatcher,9,laptop
U033,T029,2025-05-30,1.5,83,homepage banner,0,0,Bird Box,Movie,"Thriller, Horror",R,2018,1,124,6.6,88,Survivors avoid a mysterious force that drives people mad.,Thriller,0,medium,92.4,Alex,35-44,Drama,Animation,short,mixed,comfort rewatcher,9,laptop
U033,T030,2025-01-01,2.9,62,email click,0,0,Glass Onion,Movie,"Mystery, Comedy",PG-13,2022,1,139,7.1,85,A detective untangles a billionaire's island murder game.,Mystery,1,long,96.5,Alex,35-44,Drama,Animation,short,mixed,comfort rewatcher,9,laptop
U033,T003,2025-06-30,3.2,54,search,0,0,Money Heist,TV Show,"Crime, Thriller",TV-MA,2017,5,50,8.2,91,A criminal mastermind executes an ambitious heist.,Crime,0,short,109.3,Alex,35-44,Drama,Animation,short,mixed,comfort rewatcher,9,laptop
U033,T031,2025-10-20,4.6,85,homepage banner,1,1,Roma,Movie,Drama,R,2018,1,135,7.7,63,A domestic worker supports a family in 1970s Mexico City.,Drama,0,long,95.9,Alex,35-44,Drama,Animation,short,mixed,comfort rewatcher,9,laptop
U033,T022,2025-04-06,3.9,81,browse row,0,0,Better Call Saul,TV Show,"Crime, Drama",TV-MA,2015,6,46,9.0,96,The morally flexible lawyer begins his transformation.,Crime,0,short,118.8,Alex,35-44,Drama,Animation,short,mixed,comfort rewatcher,9,laptop
U033,T016,2025-09-26,5.0,96,friend recommendation,1,1,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Alex,35-44,Drama,Animation,short,mixed,comfort rewatcher,9,laptop
U033,T042,2025-02-04,3.2,83,email click,0,0,Leave the World Behind,Movie,"Thriller, Drama",R,2023,1,141,6.4,82,A family vacation turns ominous during a blackout.,Thriller,1,long,88.6,Alex,35-44,Drama,Animation,short,mixed,comfort rewatcher,9,laptop
U033,T035,2025-10-06,2.4,36,email click,0,0,The Adam Project,Movie,"Sci-Fi, Adventure",PG-13,2022,1,106,6.7,73,A time-traveling pilot teams up with his younger self.,Sci-Fi,1,medium,88.9,Alex,35-44,Drama,Animation,short,mixed,comfort rewatcher,9,laptop
U033,T004,2026-02-07,5.0,100,email click,1,1,The Queen's Gambit,TV Show,Drama,TV-MA,2020,1,56,8.5,89,A chess prodigy battles addiction and fame.,Drama,1,short,111.7,Alex,35-44,Drama,Animation,short,mixed,comfort rewatcher,9,laptop
U033,T002,2025-10-11,4.3,82,browse row,1,0,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Alex,35-44,Drama,Animation,short,mixed,comfort rewatcher,9,laptop
U033,T050,2025-07-19,5.0,100,homepage banner,1,1,Baby Reindeer,TV Show,"Drama, Thriller",TV-MA,2024,1,33,8.3,86,A comedian faces a stalking nightmare.,Drama,1,short,108.8,Alex,35-44,Drama,Animation,short,mixed,comfort rewatcher,9,laptop
U034,T009,2025-11-22,3.4,67,homepage banner,0,0,Narcos,TV Show,"Crime, Drama",TV-MA,2015,3,49,8.7,78,The rise of Pablo Escobar and the drug wars.,Crime,0,short,110.4,Sam,18-24,Animation,Comedy,short,mixed,comfort rewatcher,3,laptop
U034,T039,2025-07-11,3.0,80,friend recommendation,0,0,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Sam,18-24,Animation,Comedy,short,mixed,comfort rewatcher,3,laptop
U034,T036,2026-01-18,2.2,68,browse row,0,0,The Gray Man,Movie,"Action, Thriller",PG-13,2022,1,122,6.5,71,A CIA asset becomes the target of a global manhunt.,Action,1,medium,86.3,Sam,18-24,Animation,Comedy,short,mixed,comfort rewatcher,3,laptop
U034,T002,2025-07-02,3.7,74,browse row,0,0,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Sam,18-24,Animation,Comedy,short,mixed,comfort rewatcher,3,laptop
U034,T025,2025-06-26,4.5,82,search,1,0,Friends,TV Show,"Comedy, Romance",TV-14,1994,10,22,8.9,92,Six friends face life and love in New York.,Comedy,0,short,116.6,Sam,18-24,Animation,Comedy,short,mixed,comfort rewatcher,3,laptop
U034,T052,2026-01-11,2.8,81,browse row,0,0,3 Body Problem,TV Show,"Sci-Fi, Mystery",TV-MA,2024,1,58,7.6,84,Scientists confront a cosmic threat from first contact.,Sci-Fi,1,short,101.2,Sam,18-24,Animation,Comedy,short,mixed,comfort rewatcher,3,laptop
U034,T059,2026-01-31,4.8,94,email click,1,1,Anyone But You,Movie,"Romance, Comedy",R,2023,1,103,6.4,77,A fake-couple wedding trip reignites sparks.,Romance,1,medium,87.1,Sam,18-24,Animation,Comedy,short,mixed,comfort rewatcher,3,laptop
U034,T053,2026-01-12,3.7,74,friend recommendation,0,0,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Sam,18-24,Animation,Comedy,short,mixed,comfort rewatcher,3,laptop
U035,T053,2025-01-23,4.9,76,friend recommendation,1,0,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Quinn,25-34,Sci-Fi,Action,short,mixed,novelty seeker,2,laptop
U035,T023,2025-10-07,3.2,87,friend recommendation,0,1,Peaky Blinders,TV Show,"Crime, History",TV-MA,2013,6,58,8.8,83,A Birmingham gang rises after World War I.,Crime,0,short,112.9,Quinn,25-34,Sci-Fi,Action,short,mixed,novelty seeker,2,laptop
U035,T054,2026-02-21,4.0,89,search,1,1,Beef,TV Show,"Comedy, Drama",TV-MA,2023,1,35,8.0,73,A road-rage incident spirals into obsession.,Comedy,1,short,101.9,Quinn,25-34,Sci-Fi,Action,short,mixed,novelty seeker,2,laptop
U035,T016,2026-03-02,2.0,39,homepage banner,0,0,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Quinn,25-34,Sci-Fi,Action,short,mixed,novelty seeker,2,laptop
U035,T049,2025-12-23,4.6,100,homepage banner,1,1,Maestro in Blue,TV Show,"Drama, Romance",TV-MA,2022,1,50,7.8,59,A musician becomes entangled in island secrets.,Drama,1,short,95.7,Quinn,25-34,Sci-Fi,Action,short,mixed,novelty seeker,2,laptop
U035,T031,2025-11-20,2.9,94,search,0,1,Roma,Movie,Drama,R,2018,1,135,7.7,63,A domestic worker supports a family in 1970s Mexico City.,Drama,0,long,95.9,Quinn,25-34,Sci-Fi,Action,short,mixed,novelty seeker,2,laptop
U035,T025,2026-02-20,2.7,60,search,0,0,Friends,TV Show,"Comedy, Romance",TV-14,1994,10,22,8.9,92,Six friends face life and love in New York.,Comedy,0,short,116.6,Quinn,25-34,Sci-Fi,Action,short,mixed,novelty seeker,2,laptop
U035,T002,2025-02-02,2.6,58,homepage banner,0,0,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Quinn,25-34,Sci-Fi,Action,short,mixed,novelty seeker,2,laptop
U035,T045,2025-01-19,3.7,69,friend recommendation,0,0,Murder Mystery,Movie,"Comedy, Mystery",PG-13,2019,1,97,6.0,81,A couple becomes entangled in a murder case on a yacht.,Comedy,0,medium,84.3,Quinn,25-34,Sci-Fi,Action,short,mixed,novelty seeker,2,laptop
U035,T026,2025-04-14,4.6,97,browse row,1,1,Seinfeld,TV Show,Comedy,TV-14,1989,9,23,8.9,81,A comedian and friends obsess over daily trivialities.,Comedy,0,short,113.3,Quinn,25-34,Sci-Fi,Action,short,mixed,novelty seeker,2,laptop
U036,T044,2025-01-22,3.9,72,friend recommendation,0,0,Project Power,Movie,"Action, Sci-Fi",R,2020,1,113,6.0,64,A pill that grants powers sparks chaos in New Orleans.,Action,1,medium,79.2,Taylor,35-44,Crime,Action,long,mixed,balanced explorer,7,mobile
U036,T050,2025-06-08,2.3,77,email click,0,0,Baby Reindeer,TV Show,"Drama, Thriller",TV-MA,2024,1,33,8.3,86,A comedian faces a stalking nightmare.,Drama,1,short,108.8,Taylor,35-44,Crime,Action,long,mixed,balanced explorer,7,mobile
U036,T034,2025-07-23,2.8,88,email click,0,1,Enola Holmes,Movie,"Mystery, Adventure",PG-13,2020,1,123,6.6,78,Sherlock's sister searches for her missing mother.,Mystery,1,medium,89.4,Taylor,35-44,Crime,Action,long,mixed,balanced explorer,7,mobile
U036,T061,2025-08-31,3.5,72,friend recommendation,0,0,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Taylor,35-44,Crime,Action,long,mixed,balanced explorer,7,mobile
U036,T010,2025-01-19,3.7,86,search,0,1,Emily in Paris,TV Show,"Comedy, Romance",TV-MA,2020,4,30,6.9,72,A marketer explores work and romance in Paris.,Comedy,1,short,90.6,Taylor,35-44,Crime,Action,long,mixed,balanced explorer,7,mobile
U036,T052,2025-05-27,2.1,69,friend recommendation,0,0,3 Body Problem,TV Show,"Sci-Fi, Mystery",TV-MA,2024,1,58,7.6,84,Scientists confront a cosmic threat from first contact.,Sci-Fi,1,short,101.2,Taylor,35-44,Crime,Action,long,mixed,balanced explorer,7,mobile
U036,T032,2026-02-04,4.2,79,browse row,1,0,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Taylor,35-44,Crime,Action,long,mixed,balanced explorer,7,mobile
U036,T017,2025-12-02,4.0,72,friend recommendation,1,0,The Night Agent,TV Show,"Action, Thriller",TV-MA,2023,1,45,7.5,83,An FBI agent uncovers a conspiracy from a late-night call.,Action,1,short,99.9,Taylor,35-44,Crime,Action,long,mixed,balanced explorer,7,mobile
U036,T039,2025-05-20,2.9,90,browse row,0,1,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Taylor,35-44,Crime,Action,long,mixed,balanced explorer,7,mobile
U036,T020,2026-02-14,3.1,95,friend recommendation,0,1,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Taylor,35-44,Crime,Action,long,mixed,balanced explorer,7,mobile
U036,T060,2025-08-12,3.6,100,homepage banner,0,1,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Taylor,35-44,Crime,Action,long,mixed,balanced explorer,7,mobile
U037,T060,2025-07-17,1.5,57,friend recommendation,0,0,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Jamie,35-44,Thriller,Action,short,mixed,balanced explorer,3,mobile
U037,T007,2025-04-06,4.8,100,homepage banner,1,1,The Witcher,TV Show,"Fantasy, Action",TV-MA,2019,3,57,8.0,86,A monster hunter navigates destiny and politics.,Fantasy,0,short,105.8,Jamie,35-44,Thriller,Action,short,mixed,balanced explorer,3,mobile
U037,T051,2025-12-21,4.9,100,homepage banner,1,1,Ripley,TV Show,"Thriller, Drama",TV-MA,2024,1,55,8.1,67,"A grifter is drawn into wealth, deception, and murder.",Thriller,1,short,101.1,Jamie,35-44,Thriller,Action,short,mixed,balanced explorer,3,mobile
U037,T010,2025-07-08,3.4,81,email click,0,0,Emily in Paris,TV Show,"Comedy, Romance",TV-MA,2020,4,30,6.9,72,A marketer explores work and romance in Paris.,Comedy,1,short,90.6,Jamie,35-44,Thriller,Action,short,mixed,balanced explorer,3,mobile
U037,T037,2025-05-17,2.9,69,browse row,0,0,To All the Boys I've Loved Before,Movie,"Romance, Comedy",PG-13,2018,1,99,7.0,76,Secret love letters create romantic chaos.,Romance,0,medium,92.8,Jamie,35-44,Thriller,Action,short,mixed,balanced explorer,3,mobile
U037,T020,2026-01-08,3.7,100,homepage banner,0,1,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Jamie,35-44,Thriller,Action,short,mixed,balanced explorer,3,mobile
U037,T045,2025-02-10,3.2,70,homepage banner,0,0,Murder Mystery,Movie,"Comedy, Mystery",PG-13,2019,1,97,6.0,81,A couple becomes entangled in a murder case on a yacht.,Comedy,0,medium,84.3,Jamie,35-44,Thriller,Action,short,mixed,balanced explorer,3,mobile
U037,T027,2025-11-05,3.0,84,search,0,0,The Irishman,Movie,"Crime, Drama",R,2019,1,209,7.8,70,An aging hitman reflects on loyalty and regret.,Crime,0,long,99.0,Jamie,35-44,Thriller,Action,short,mixed,balanced explorer,3,mobile
U037,T025,2025-10-07,2.4,35,friend recommendation,0,0,Friends,TV Show,"Comedy, Romance",TV-14,1994,10,22,8.9,92,Six friends face life and love in New York.,Comedy,0,short,116.6,Jamie,35-44,Thriller,Action,short,mixed,balanced explorer,3,mobile
U037,T021,2025-06-14,3.0,56,browse row,0,0,Breaking Bad,TV Show,"Crime, Drama",TV-MA,2008,5,47,9.5,99,A chemistry teacher turns to meth production.,Crime,0,short,124.7,Jamie,35-44,Thriller,Action,short,mixed,balanced explorer,3,mobile
U037,T016,2025-02-10,4.0,82,friend recommendation,1,0,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Jamie,35-44,Thriller,Action,short,mixed,balanced explorer,3,mobile
U037,T003,2025-12-05,4.0,100,friend recommendation,1,1,Money Heist,TV Show,"Crime, Thriller",TV-MA,2017,5,50,8.2,91,A criminal mastermind executes an ambitious heist.,Crime,0,short,109.3,Jamie,35-44,Thriller,Action,short,mixed,balanced explorer,3,mobile
U037,T038,2025-06-06,3.8,87,homepage banner,0,1,The Old Guard,Movie,"Action, Fantasy",R,2020,1,125,6.7,67,Immortal mercenaries fight to protect their secret.,Action,1,medium,87.1,Jamie,35-44,Thriller,Action,short,mixed,balanced explorer,3,mobile
U037,T039,2025-11-05,3.4,61,homepage banner,0,0,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Jamie,35-44,Thriller,Action,short,mixed,balanced explorer,3,mobile
U037,T058,2025-03-27,5.0,93,homepage banner,1,1,Carry-On,Movie,"Thriller, Action",PG-13,2024,1,112,6.8,90,An airport employee is blackmailed into a dangerous plot.,Thriller,1,medium,95.0,Jamie,35-44,Thriller,Action,short,mixed,balanced explorer,3,mobile
U038,T019,2025-08-17,3.6,83,browse row,0,0,Squid Game,TV Show,"Thriller, Drama",TV-MA,2021,1,55,8.0,97,Cash-strapped players join deadly children's games.,Thriller,1,short,109.1,Casey,25-34,Fantasy,Crime,short,mixed,novelty seeker,4,tv
U038,T032,2026-01-08,4.0,73,friend recommendation,1,0,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Casey,25-34,Fantasy,Crime,short,mixed,novelty seeker,4,tv
U038,T042,2025-11-11,2.1,69,homepage banner,0,0,Leave the World Behind,Movie,"Thriller, Drama",R,2023,1,141,6.4,82,A family vacation turns ominous during a blackout.,Thriller,1,long,88.6,Casey,25-34,Fantasy,Crime,short,mixed,novelty seeker,4,tv
U038,T029,2025-05-21,3.6,60,browse row,0,0,Bird Box,Movie,"Thriller, Horror",R,2018,1,124,6.6,88,Survivors avoid a mysterious force that drives people mad.,Thriller,0,medium,92.4,Casey,25-34,Fantasy,Crime,short,mixed,novelty seeker,4,tv
U038,T052,2025-02-08,4.1,96,homepage banner,1,1,3 Body Problem,TV Show,"Sci-Fi, Mystery",TV-MA,2024,1,58,7.6,84,Scientists confront a cosmic threat from first contact.,Sci-Fi,1,short,101.2,Casey,25-34,Fantasy,Crime,short,mixed,novelty seeker,4,tv
U038,T061,2025-07-06,2.9,59,email click,0,0,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Casey,25-34,Fantasy,Crime,short,mixed,novelty seeker,4,tv
U038,T016,2026-02-15,3.1,73,search,0,0,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Casey,25-34,Fantasy,Crime,short,mixed,novelty seeker,4,tv
U038,T051,2025-01-16,3.3,66,search,0,0,Ripley,TV Show,"Thriller, Drama",TV-MA,2024,1,55,8.1,67,"A grifter is drawn into wealth, deception, and murder.",Thriller,1,short,101.1,Casey,25-34,Fantasy,Crime,short,mixed,novelty seeker,4,tv
U038,T038,2025-11-08,5.0,93,homepage banner,1,1,The Old Guard,Movie,"Action, Fantasy",R,2020,1,125,6.7,67,Immortal mercenaries fight to protect their secret.,Action,1,medium,87.1,Casey,25-34,Fantasy,Crime,short,mixed,novelty seeker,4,tv
U038,T041,2025-01-18,3.6,80,search,0,0,The Killer,Movie,"Thriller, Crime",R,2023,1,118,6.8,60,A meticulous assassin faces unexpected consequences.,Thriller,1,medium,86.0,Casey,25-34,Fantasy,Crime,short,mixed,novelty seeker,4,tv
U038,T020,2025-02-04,3.6,81,search,0,0,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Casey,25-34,Fantasy,Crime,short,mixed,novelty seeker,4,tv
U038,T025,2026-02-03,3.2,67,friend recommendation,0,0,Friends,TV Show,"Comedy, Romance",TV-14,1994,10,22,8.9,92,Six friends face life and love in New York.,Comedy,0,short,116.6,Casey,25-34,Fantasy,Crime,short,mixed,novelty seeker,4,tv
U038,T049,2025-07-05,3.3,69,homepage banner,0,0,Maestro in Blue,TV Show,"Drama, Romance",TV-MA,2022,1,50,7.8,59,A musician becomes entangled in island secrets.,Drama,1,short,95.7,Casey,25-34,Fantasy,Crime,short,mixed,novelty seeker,4,tv
U039,T036,2025-01-17,3.0,100,email click,0,1,The Gray Man,Movie,"Action, Thriller",PG-13,2022,1,122,6.5,71,A CIA asset becomes the target of a global manhunt.,Action,1,medium,86.3,Avery,25-34,Crime,Sci-Fi,medium,weekends,balanced explorer,6,laptop
U039,T035,2025-03-20,3.9,82,homepage banner,0,0,The Adam Project,Movie,"Sci-Fi, Adventure",PG-13,2022,1,106,6.7,73,A time-traveling pilot teams up with his younger self.,Sci-Fi,1,medium,88.9,Avery,25-34,Crime,Sci-Fi,medium,weekends,balanced explorer,6,laptop
U039,T041,2025-07-09,3.1,77,friend recommendation,0,0,The Killer,Movie,"Thriller, Crime",R,2023,1,118,6.8,60,A meticulous assassin faces unexpected consequences.,Thriller,1,medium,86.0,Avery,25-34,Crime,Sci-Fi,medium,weekends,balanced explorer,6,laptop
U039,T009,2025-08-16,4.5,88,browse row,1,1,Narcos,TV Show,"Crime, Drama",TV-MA,2015,3,49,8.7,78,The rise of Pablo Escobar and the drug wars.,Crime,0,short,110.4,Avery,25-34,Crime,Sci-Fi,medium,weekends,balanced explorer,6,laptop
U039,T017,2025-10-21,2.7,63,search,0,0,The Night Agent,TV Show,"Action, Thriller",TV-MA,2023,1,45,7.5,83,An FBI agent uncovers a conspiracy from a late-night call.,Action,1,short,99.9,Avery,25-34,Crime,Sci-Fi,medium,weekends,balanced explorer,6,laptop
U039,T050,2025-09-29,3.3,89,friend recommendation,0,1,Baby Reindeer,TV Show,"Drama, Thriller",TV-MA,2024,1,33,8.3,86,A comedian faces a stalking nightmare.,Drama,1,short,108.8,Avery,25-34,Crime,Sci-Fi,medium,weekends,balanced explorer,6,laptop
U039,T007,2025-07-23,3.8,68,friend recommendation,0,0,The Witcher,TV Show,"Fantasy, Action",TV-MA,2019,3,57,8.0,86,A monster hunter navigates destiny and politics.,Fantasy,0,short,105.8,Avery,25-34,Crime,Sci-Fi,medium,weekends,balanced explorer,6,laptop
U039,T023,2025-11-29,4.3,86,friend recommendation,1,1,Peaky Blinders,TV Show,"Crime, History",TV-MA,2013,6,58,8.8,83,A Birmingham gang rises after World War I.,Crime,0,short,112.9,Avery,25-34,Crime,Sci-Fi,medium,weekends,balanced explorer,6,laptop
U039,T002,2025-05-08,2.9,80,browse row,0,0,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Avery,25-34,Crime,Sci-Fi,medium,weekends,balanced explorer,6,laptop
U039,T056,2025-01-14,3.2,84,search,0,0,Damsel,Movie,"Fantasy, Adventure",PG-13,2024,1,109,6.1,89,A princess fights to survive a dragon-filled cave.,Fantasy,1,medium,87.7,Avery,25-34,Crime,Sci-Fi,medium,weekends,balanced explorer,6,laptop
U039,T044,2025-09-13,3.0,63,email click,0,0,Project Power,Movie,"Action, Sci-Fi",R,2020,1,113,6.0,64,A pill that grants powers sparks chaos in New Orleans.,Action,1,medium,79.2,Avery,25-34,Crime,Sci-Fi,medium,weekends,balanced explorer,6,laptop
U039,T037,2025-07-18,3.9,80,email click,0,0,To All the Boys I've Loved Before,Movie,"Romance, Comedy",PG-13,2018,1,99,7.0,76,Secret love letters create romantic chaos.,Romance,0,medium,92.8,Avery,25-34,Crime,Sci-Fi,medium,weekends,balanced explorer,6,laptop
U039,T016,2025-03-02,3.2,92,friend recommendation,0,1,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Avery,25-34,Crime,Sci-Fi,medium,weekends,balanced explorer,6,laptop
U039,T012,2026-02-01,4.3,96,friend recommendation,1,1,Ozark,TV Show,"Crime, Drama",TV-MA,2017,4,60,8.5,77,A family launders money for a dangerous cartel.,Crime,0,short,108.1,Avery,25-34,Crime,Sci-Fi,medium,weekends,balanced explorer,6,laptop
U039,T052,2025-12-27,4.1,54,homepage banner,1,0,3 Body Problem,TV Show,"Sci-Fi, Mystery",TV-MA,2024,1,58,7.6,84,Scientists confront a cosmic threat from first contact.,Sci-Fi,1,short,101.2,Avery,25-34,Crime,Sci-Fi,medium,weekends,balanced explorer,6,laptop
U039,T055,2025-04-20,2.7,79,email click,0,0,Blue Eye Samurai,TV Show,"Animation, Action",TV-MA,2023,1,45,8.7,70,A swordswoman seeks revenge in Edo-period Japan.,Animation,1,short,108.0,Avery,25-34,Crime,Sci-Fi,medium,weekends,balanced explorer,6,laptop
U039,T058,2025-05-27,3.8,83,homepage banner,0,0,Carry-On,Movie,"Thriller, Action",PG-13,2024,1,112,6.8,90,An airport employee is blackmailed into a dangerous plot.,Thriller,1,medium,95.0,Avery,25-34,Crime,Sci-Fi,medium,weekends,balanced explorer,6,laptop
U040,T023,2025-03-04,3.3,100,search,0,1,Peaky Blinders,TV Show,"Crime, History",TV-MA,2013,6,58,8.8,83,A Birmingham gang rises after World War I.,Crime,0,short,112.9,Sam,35-44,Animation,Drama,long,mixed,novelty seeker,4,tv
U040,T048,2025-02-07,3.5,94,homepage banner,0,1,Klaus,Movie,"Animation, Family",PG,2019,1,96,8.2,69,A postman and a toymaker spark a holiday tradition.,Animation,0,medium,102.7,Sam,35-44,Animation,Drama,long,mixed,novelty seeker,4,tv
U040,T042,2025-03-30,4.8,88,homepage banner,1,1,Leave the World Behind,Movie,"Thriller, Drama",R,2023,1,141,6.4,82,A family vacation turns ominous during a blackout.,Thriller,1,long,88.6,Sam,35-44,Animation,Drama,long,mixed,novelty seeker,4,tv
U040,T043,2025-02-14,4.5,83,friend recommendation,1,0,Army of the Dead,Movie,"Action, Horror",R,2021,1,148,5.7,58,Mercenaries enter zombie-infested Las Vegas for a heist.,Action,1,long,74.4,Sam,35-44,Animation,Drama,long,mixed,novelty seeker,4,tv
U040,T053,2025-12-08,3.2,35,friend recommendation,0,0,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Sam,35-44,Animation,Drama,long,mixed,novelty seeker,4,tv
U040,T016,2025-12-30,3.8,63,browse row,0,0,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Sam,35-44,Animation,Drama,long,mixed,novelty seeker,4,tv
U040,T012,2025-10-09,3.3,62,email click,0,0,Ozark,TV Show,"Crime, Drama",TV-MA,2017,4,60,8.5,77,A family launders money for a dangerous cartel.,Crime,0,short,108.1,Sam,35-44,Animation,Drama,long,mixed,novelty seeker,4,tv
U040,T015,2025-05-29,3.2,83,friend recommendation,0,0,Heartstopper,TV Show,"Romance, Teen",TV-14,2022,2,31,8.5,87,"Two students navigate identity, friendship, and love.",Romance,1,short,111.1,Sam,35-44,Animation,Drama,long,mixed,novelty seeker,4,tv
U040,T008,2025-03-22,3.0,85,search,0,1,Dark,TV Show,"Sci-Fi, Mystery",TV-MA,2017,3,52,8.7,80,Time-travel secrets emerge in a German town.,Sci-Fi,0,short,111.0,Sam,35-44,Animation,Drama,long,mixed,novelty seeker,4,tv
U040,T002,2026-02-11,4.4,83,friend recommendation,1,0,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Sam,35-44,Animation,Drama,long,mixed,novelty seeker,4,tv
U040,T006,2025-09-18,3.3,92,search,0,1,Bridgerton,TV Show,"Romance, Drama",TV-MA,2020,3,60,7.4,84,Love and scandal shape the London social season.,Romance,1,short,99.2,Sam,35-44,Animation,Drama,long,mixed,novelty seeker,4,tv
U041,T054,2025-04-13,3.3,99,search,0,1,Beef,TV Show,"Comedy, Drama",TV-MA,2023,1,35,8.0,73,A road-rage incident spirals into obsession.,Comedy,1,short,101.9,Casey,25-34,Crime,Mystery,long,mixed,balanced explorer,5,laptop
U041,T011,2025-05-02,5.0,72,homepage banner,1,0,Lupin,TV Show,"Crime, Mystery",TV-14,2021,3,44,7.5,85,A gentleman thief seeks revenge using deception.,Crime,1,short,100.5,Casey,25-34,Crime,Mystery,long,mixed,balanced explorer,5,laptop
U041,T047,2025-01-14,3.6,66,friend recommendation,0,0,The Mitchells vs. the Machines,Movie,"Animation, Comedy",PG,2021,1,113,7.6,74,A quirky family saves the world from a robot uprising.,Animation,1,medium,98.2,Casey,25-34,Crime,Mystery,long,mixed,balanced explorer,5,laptop
U041,T017,2025-10-11,2.8,76,email click,0,0,The Night Agent,TV Show,"Action, Thriller",TV-MA,2023,1,45,7.5,83,An FBI agent uncovers a conspiracy from a late-night call.,Action,1,short,99.9,Casey,25-34,Crime,Mystery,long,mixed,balanced explorer,5,laptop
U041,T033,2025-07-08,4.2,100,homepage banner,1,1,Extraction,Movie,"Action, Thriller",R,2020,1,116,6.8,74,A mercenary attempts a dangerous rescue mission.,Action,1,medium,90.2,Casey,25-34,Crime,Mystery,long,mixed,balanced explorer,5,laptop
U041,T002,2026-02-16,3.4,76,email click,0,0,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Casey,25-34,Crime,Mystery,long,mixed,balanced explorer,5,laptop
U041,T050,2025-03-08,3.3,91,email click,0,1,Baby Reindeer,TV Show,"Drama, Thriller",TV-MA,2024,1,33,8.3,86,A comedian faces a stalking nightmare.,Drama,1,short,108.8,Casey,25-34,Crime,Mystery,long,mixed,balanced explorer,5,laptop
U041,T044,2025-02-14,2.8,99,browse row,0,1,Project Power,Movie,"Action, Sci-Fi",R,2020,1,113,6.0,64,A pill that grants powers sparks chaos in New Orleans.,Action,1,medium,79.2,Casey,25-34,Crime,Mystery,long,mixed,balanced explorer,5,laptop
U041,T001,2025-06-08,3.1,83,homepage banner,0,0,Stranger Things,TV Show,"Sci-Fi, Drama",TV-14,2016,4,51,8.7,95,Supernatural mysteries unfold in a small town.,Sci-Fi,0,short,115.5,Casey,25-34,Crime,Mystery,long,mixed,balanced explorer,5,laptop
U042,T051,2025-09-27,3.4,99,homepage banner,0,1,Ripley,TV Show,"Thriller, Drama",TV-MA,2024,1,55,8.1,67,"A grifter is drawn into wealth, deception, and murder.",Thriller,1,short,101.1,Riley,35-44,Romance,Sci-Fi,long,mixed,novelty seeker,6,mobile
U042,T021,2026-01-29,2.9,66,homepage banner,0,0,Breaking Bad,TV Show,"Crime, Drama",TV-MA,2008,5,47,9.5,99,A chemistry teacher turns to meth production.,Crime,0,short,124.7,Riley,35-44,Romance,Sci-Fi,long,mixed,novelty seeker,6,mobile
U042,T031,2026-02-26,3.3,79,email click,0,0,Roma,Movie,Drama,R,2018,1,135,7.7,63,A domestic worker supports a family in 1970s Mexico City.,Drama,0,long,95.9,Riley,35-44,Romance,Sci-Fi,long,mixed,novelty seeker,6,mobile
U042,T048,2025-02-07,2.6,63,search,0,0,Klaus,Movie,"Animation, Family",PG,2019,1,96,8.2,69,A postman and a toymaker spark a holiday tradition.,Animation,0,medium,102.7,Riley,35-44,Romance,Sci-Fi,long,mixed,novelty seeker,6,mobile
U042,T030,2025-06-12,3.0,68,browse row,0,0,Glass Onion,Movie,"Mystery, Comedy",PG-13,2022,1,139,7.1,85,A detective untangles a billionaire's island murder game.,Mystery,1,long,96.5,Riley,35-44,Romance,Sci-Fi,long,mixed,novelty seeker,6,mobile
U042,T040,2025-08-19,3.8,80,homepage banner,0,0,Guillermo del Toro's Pinocchio,Movie,"Animation, Fantasy",PG,2022,1,117,7.6,66,A wooden boy comes to life in wartime Italy.,Animation,1,medium,95.8,Riley,35-44,Romance,Sci-Fi,long,mixed,novelty seeker,6,mobile
U042,T007,2025-12-15,3.6,78,email click,0,0,The Witcher,TV Show,"Fantasy, Action",TV-MA,2019,3,57,8.0,86,A monster hunter navigates destiny and politics.,Fantasy,0,short,105.8,Riley,35-44,Romance,Sci-Fi,long,mixed,novelty seeker,6,mobile
U042,T028,2025-06-26,2.4,77,search,0,0,Marriage Story,Movie,Drama,R,2019,1,137,7.9,68,A couple navigates a painful divorce.,Drama,0,long,99.4,Riley,35-44,Romance,Sci-Fi,long,mixed,novelty seeker,6,mobile
U042,T055,2026-03-01,3.0,71,email click,0,0,Blue Eye Samurai,TV Show,"Animation, Action",TV-MA,2023,1,45,8.7,70,A swordswoman seeks revenge in Edo-period Japan.,Animation,1,short,108.0,Riley,35-44,Romance,Sci-Fi,long,mixed,novelty seeker,6,mobile
U042,T010,2025-11-24,4.7,74,email click,1,0,Emily in Paris,TV Show,"Comedy, Romance",TV-MA,2020,4,30,6.9,72,A marketer explores work and romance in Paris.,Comedy,1,short,90.6,Riley,35-44,Romance,Sci-Fi,long,mixed,novelty seeker,6,mobile
U042,T011,2025-04-04,3.5,79,search,0,0,Lupin,TV Show,"Crime, Mystery",TV-14,2021,3,44,7.5,85,A gentleman thief seeks revenge using deception.,Crime,1,short,100.5,Riley,35-44,Romance,Sci-Fi,long,mixed,novelty seeker,6,mobile
U042,T060,2025-08-10,4.1,98,email click,1,1,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Riley,35-44,Romance,Sci-Fi,long,mixed,novelty seeker,6,mobile
U042,T043,2025-01-29,3.9,78,browse row,0,0,Army of the Dead,Movie,"Action, Horror",R,2021,1,148,5.7,58,Mercenaries enter zombie-infested Las Vegas for a heist.,Action,1,long,74.4,Riley,35-44,Romance,Sci-Fi,long,mixed,novelty seeker,6,mobile
U042,T038,2025-09-23,3.3,98,search,0,1,The Old Guard,Movie,"Action, Fantasy",R,2020,1,125,6.7,67,Immortal mercenaries fight to protect their secret.,Action,1,medium,87.1,Riley,35-44,Romance,Sci-Fi,long,mixed,novelty seeker,6,mobile
U042,T054,2025-06-05,3.4,74,search,0,0,Beef,TV Show,"Comedy, Drama",TV-MA,2023,1,35,8.0,73,A road-rage incident spirals into obsession.,Comedy,1,short,101.9,Riley,35-44,Romance,Sci-Fi,long,mixed,novelty seeker,6,mobile
U043,T040,2025-06-15,2.9,78,search,0,0,Guillermo del Toro's Pinocchio,Movie,"Animation, Fantasy",PG,2022,1,117,7.6,66,A wooden boy comes to life in wartime Italy.,Animation,1,medium,95.8,Jordan,18-24,Crime,Action,medium,weeknights,balanced explorer,6,mobile
U043,T008,2025-06-27,4.0,95,email click,1,1,Dark,TV Show,"Sci-Fi, Mystery",TV-MA,2017,3,52,8.7,80,Time-travel secrets emerge in a German town.,Sci-Fi,0,short,111.0,Jordan,18-24,Crime,Action,medium,weeknights,balanced explorer,6,mobile
U043,T042,2025-05-26,2.5,95,browse row,0,1,Leave the World Behind,Movie,"Thriller, Drama",R,2023,1,141,6.4,82,A family vacation turns ominous during a blackout.,Thriller,1,long,88.6,Jordan,18-24,Crime,Action,medium,weeknights,balanced explorer,6,mobile
U043,T046,2025-05-09,3.6,77,search,0,0,Red Notice,Movie,"Action, Comedy",PG-13,2021,1,118,6.3,92,An FBI profiler chases two rival art thieves.,Action,1,medium,90.6,Jordan,18-24,Crime,Action,medium,weeknights,balanced explorer,6,mobile
U043,T054,2025-11-22,2.8,48,email click,0,0,Beef,TV Show,"Comedy, Drama",TV-MA,2023,1,35,8.0,73,A road-rage incident spirals into obsession.,Comedy,1,short,101.9,Jordan,18-24,Crime,Action,medium,weeknights,balanced explorer,6,mobile
U043,T038,2025-05-21,3.5,87,search,0,1,The Old Guard,Movie,"Action, Fantasy",R,2020,1,125,6.7,67,Immortal mercenaries fight to protect their secret.,Action,1,medium,87.1,Jordan,18-24,Crime,Action,medium,weeknights,balanced explorer,6,mobile
U043,T014,2025-11-17,3.4,85,friend recommendation,0,1,Cobra Kai,TV Show,"Comedy, Action",TV-14,2018,6,34,8.4,75,Old karate rivals reignite decades later.,Comedy,0,short,106.5,Jordan,18-24,Crime,Action,medium,weeknights,balanced explorer,6,mobile
U043,T053,2025-11-11,2.5,67,email click,0,0,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Jordan,18-24,Crime,Action,medium,weeknights,balanced explorer,6,mobile
U043,T004,2025-02-17,3.2,79,email click,0,0,The Queen's Gambit,TV Show,Drama,TV-MA,2020,1,56,8.5,89,A chess prodigy battles addiction and fame.,Drama,1,short,111.7,Jordan,18-24,Crime,Action,medium,weeknights,balanced explorer,6,mobile
U043,T013,2025-11-25,2.0,58,search,0,0,Black Mirror,TV Show,"Sci-Fi, Thriller",TV-MA,2011,6,60,8.7,76,Dark anthology tales explore technology's consequences.,Sci-Fi,0,short,109.8,Jordan,18-24,Crime,Action,medium,weeknights,balanced explorer,6,mobile
U044,T036,2025-10-25,3.6,77,search,0,0,The Gray Man,Movie,"Action, Thriller",PG-13,2022,1,122,6.5,71,A CIA asset becomes the target of a global manhunt.,Action,1,medium,86.3,Sam,18-24,Fantasy,Animation,long,weekends,comfort rewatcher,4,laptop
U044,T044,2025-03-29,3.6,87,email click,0,1,Project Power,Movie,"Action, Sci-Fi",R,2020,1,113,6.0,64,A pill that grants powers sparks chaos in New Orleans.,Action,1,medium,79.2,Sam,18-24,Fantasy,Animation,long,weekends,comfort rewatcher,4,laptop
U044,T051,2026-01-04,5.0,94,email click,1,1,Ripley,TV Show,"Thriller, Drama",TV-MA,2024,1,55,8.1,67,"A grifter is drawn into wealth, deception, and murder.",Thriller,1,short,101.1,Sam,18-24,Fantasy,Animation,long,weekends,comfort rewatcher,4,laptop
U044,T002,2025-06-22,3.2,69,email click,0,0,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Sam,18-24,Fantasy,Animation,long,weekends,comfort rewatcher,4,laptop
U044,T054,2025-01-22,3.0,35,browse row,0,0,Beef,TV Show,"Comedy, Drama",TV-MA,2023,1,35,8.0,73,A road-rage incident spirals into obsession.,Comedy,1,short,101.9,Sam,18-24,Fantasy,Animation,long,weekends,comfort rewatcher,4,laptop
U044,T015,2025-02-11,3.3,98,browse row,0,1,Heartstopper,TV Show,"Romance, Teen",TV-14,2022,2,31,8.5,87,"Two students navigate identity, friendship, and love.",Romance,1,short,111.1,Sam,18-24,Fantasy,Animation,long,weekends,comfort rewatcher,4,laptop
U044,T057,2025-11-25,3.5,60,email click,0,0,Rebel Moon,Movie,"Sci-Fi, Action",PG-13,2023,1,134,5.6,87,A former soldier gathers warriors to fight an empire.,Sci-Fi,1,long,82.1,Sam,18-24,Fantasy,Animation,long,weekends,comfort rewatcher,4,laptop
U044,T025,2025-05-16,2.5,35,search,0,0,Friends,TV Show,"Comedy, Romance",TV-14,1994,10,22,8.9,92,Six friends face life and love in New York.,Comedy,0,short,116.6,Sam,18-24,Fantasy,Animation,long,weekends,comfort rewatcher,4,laptop
U044,T007,2026-01-28,4.6,75,email click,1,0,The Witcher,TV Show,"Fantasy, Action",TV-MA,2019,3,57,8.0,86,A monster hunter navigates destiny and politics.,Fantasy,0,short,105.8,Sam,18-24,Fantasy,Animation,long,weekends,comfort rewatcher,4,laptop
U044,T012,2025-08-02,3.0,72,email click,0,0,Ozark,TV Show,"Crime, Drama",TV-MA,2017,4,60,8.5,77,A family launders money for a dangerous cartel.,Crime,0,short,108.1,Sam,18-24,Fantasy,Animation,long,weekends,comfort rewatcher,4,laptop
U044,T049,2025-11-24,3.9,85,browse row,0,1,Maestro in Blue,TV Show,"Drama, Romance",TV-MA,2022,1,50,7.8,59,A musician becomes entangled in island secrets.,Drama,1,short,95.7,Sam,18-24,Fantasy,Animation,long,weekends,comfort rewatcher,4,laptop
U044,T060,2025-09-12,3.8,91,email click,0,1,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Sam,18-24,Fantasy,Animation,long,weekends,comfort rewatcher,4,laptop
U044,T058,2025-05-29,3.8,79,friend recommendation,0,0,Carry-On,Movie,"Thriller, Action",PG-13,2024,1,112,6.8,90,An airport employee is blackmailed into a dangerous plot.,Thriller,1,medium,95.0,Sam,18-24,Fantasy,Animation,long,weekends,comfort rewatcher,4,laptop
U044,T021,2025-09-05,4.1,56,search,1,0,Breaking Bad,TV Show,"Crime, Drama",TV-MA,2008,5,47,9.5,99,A chemistry teacher turns to meth production.,Crime,0,short,124.7,Sam,18-24,Fantasy,Animation,long,weekends,comfort rewatcher,4,laptop
U044,T061,2026-02-17,3.5,67,homepage banner,0,0,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Sam,18-24,Fantasy,Animation,long,weekends,comfort rewatcher,4,laptop
U044,T022,2025-06-02,2.7,80,homepage banner,0,0,Better Call Saul,TV Show,"Crime, Drama",TV-MA,2015,6,46,9.0,96,The morally flexible lawyer begins his transformation.,Crime,0,short,118.8,Sam,18-24,Fantasy,Animation,long,weekends,comfort rewatcher,4,laptop
U044,T008,2025-02-07,3.3,87,browse row,0,1,Dark,TV Show,"Sci-Fi, Mystery",TV-MA,2017,3,52,8.7,80,Time-travel secrets emerge in a German town.,Sci-Fi,0,short,111.0,Sam,18-24,Fantasy,Animation,long,weekends,comfort rewatcher,4,laptop
U045,T019,2025-08-14,3.7,72,homepage banner,0,0,Squid Game,TV Show,"Thriller, Drama",TV-MA,2021,1,55,8.0,97,Cash-strapped players join deadly children's games.,Thriller,1,short,109.1,Jordan,25-34,Drama,Romance,long,mixed,balanced explorer,2,tv
U045,T037,2025-09-05,3.1,57,homepage banner,0,0,To All the Boys I've Loved Before,Movie,"Romance, Comedy",PG-13,2018,1,99,7.0,76,Secret love letters create romantic chaos.,Romance,0,medium,92.8,Jordan,25-34,Drama,Romance,long,mixed,balanced explorer,2,tv
U045,T054,2025-04-15,4.3,100,friend recommendation,1,1,Beef,TV Show,"Comedy, Drama",TV-MA,2023,1,35,8.0,73,A road-rage incident spirals into obsession.,Comedy,1,short,101.9,Jordan,25-34,Drama,Romance,long,mixed,balanced explorer,2,tv
U045,T024,2025-11-07,3.0,78,search,0,0,The Office,TV Show,Comedy,TV-14,2005,9,22,9.0,94,Office workers navigate absurd everyday routines.,Comedy,0,short,118.2,Jordan,25-34,Drama,Romance,long,mixed,balanced explorer,2,tv
U045,T007,2025-06-10,3.3,83,friend recommendation,0,0,The Witcher,TV Show,"Fantasy, Action",TV-MA,2019,3,57,8.0,86,A monster hunter navigates destiny and politics.,Fantasy,0,short,105.8,Jordan,25-34,Drama,Romance,long,mixed,balanced explorer,2,tv
U045,T034,2026-01-11,2.5,95,friend recommendation,0,1,Enola Holmes,Movie,"Mystery, Adventure",PG-13,2020,1,123,6.6,78,Sherlock's sister searches for her missing mother.,Mystery,1,medium,89.4,Jordan,25-34,Drama,Romance,long,mixed,balanced explorer,2,tv
U045,T036,2025-07-24,2.5,79,search,0,0,The Gray Man,Movie,"Action, Thriller",PG-13,2022,1,122,6.5,71,A CIA asset becomes the target of a global manhunt.,Action,1,medium,86.3,Jordan,25-34,Drama,Romance,long,mixed,balanced explorer,2,tv
U045,T004,2026-01-25,4.3,58,friend recommendation,1,0,The Queen's Gambit,TV Show,Drama,TV-MA,2020,1,56,8.5,89,A chess prodigy battles addiction and fame.,Drama,1,short,111.7,Jordan,25-34,Drama,Romance,long,mixed,balanced explorer,2,tv
U045,T026,2025-09-21,2.8,73,email click,0,0,Seinfeld,TV Show,Comedy,TV-14,1989,9,23,8.9,81,A comedian and friends obsess over daily trivialities.,Comedy,0,short,113.3,Jordan,25-34,Drama,Romance,long,mixed,balanced explorer,2,tv
U045,T018,2025-02-24,3.1,80,friend recommendation,0,0,One Piece,TV Show,"Adventure, Fantasy",TV-14,2023,1,55,8.4,90,Pirates hunt treasure in a live-action adaptation.,Adventure,1,short,111.0,Jordan,25-34,Drama,Romance,long,mixed,balanced explorer,2,tv
U046,T046,2025-08-27,3.0,78,browse row,0,0,Red Notice,Movie,"Action, Comedy",PG-13,2021,1,118,6.3,92,An FBI profiler chases two rival art thieves.,Action,1,medium,90.6,Sam,25-34,Romance,Drama,medium,weeknights,novelty seeker,7,laptop
U046,T023,2025-05-17,3.7,74,homepage banner,0,0,Peaky Blinders,TV Show,"Crime, History",TV-MA,2013,6,58,8.8,83,A Birmingham gang rises after World War I.,Crime,0,short,112.9,Sam,25-34,Romance,Drama,medium,weeknights,novelty seeker,7,laptop
U046,T034,2025-05-07,1.9,73,search,0,0,Enola Holmes,Movie,"Mystery, Adventure",PG-13,2020,1,123,6.6,78,Sherlock's sister searches for her missing mother.,Mystery,1,medium,89.4,Sam,25-34,Romance,Drama,medium,weeknights,novelty seeker,7,laptop
U046,T027,2025-02-19,3.2,59,browse row,0,0,The Irishman,Movie,"Crime, Drama",R,2019,1,209,7.8,70,An aging hitman reflects on loyalty and regret.,Crime,0,long,99.0,Sam,25-34,Romance,Drama,medium,weeknights,novelty seeker,7,laptop
U046,T004,2025-05-29,3.2,74,homepage banner,0,0,The Queen's Gambit,TV Show,Drama,TV-MA,2020,1,56,8.5,89,A chess prodigy battles addiction and fame.,Drama,1,short,111.7,Sam,25-34,Romance,Drama,medium,weeknights,novelty seeker,7,laptop
U046,T006,2025-11-12,4.2,53,homepage banner,1,0,Bridgerton,TV Show,"Romance, Drama",TV-MA,2020,3,60,7.4,84,Love and scandal shape the London social season.,Romance,1,short,99.2,Sam,25-34,Romance,Drama,medium,weeknights,novelty seeker,7,laptop
U046,T010,2025-05-08,4.5,100,search,1,1,Emily in Paris,TV Show,"Comedy, Romance",TV-MA,2020,4,30,6.9,72,A marketer explores work and romance in Paris.,Comedy,1,short,90.6,Sam,25-34,Romance,Drama,medium,weeknights,novelty seeker,7,laptop
U046,T040,2026-02-21,3.8,65,friend recommendation,0,0,Guillermo del Toro's Pinocchio,Movie,"Animation, Fantasy",PG,2022,1,117,7.6,66,A wooden boy comes to life in wartime Italy.,Animation,1,medium,95.8,Sam,25-34,Romance,Drama,medium,weeknights,novelty seeker,7,laptop
U046,T030,2025-10-23,3.3,77,friend recommendation,0,0,Glass Onion,Movie,"Mystery, Comedy",PG-13,2022,1,139,7.1,85,A detective untangles a billionaire's island murder game.,Mystery,1,long,96.5,Sam,25-34,Romance,Drama,medium,weeknights,novelty seeker,7,laptop
U046,T020,2025-04-08,4.0,95,search,1,1,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Sam,25-34,Romance,Drama,medium,weeknights,novelty seeker,7,laptop
U046,T008,2025-09-13,2.6,72,email click,0,0,Dark,TV Show,"Sci-Fi, Mystery",TV-MA,2017,3,52,8.7,80,Time-travel secrets emerge in a German town.,Sci-Fi,0,short,111.0,Sam,25-34,Romance,Drama,medium,weeknights,novelty seeker,7,laptop
U047,T054,2025-09-13,3.5,92,friend recommendation,0,1,Beef,TV Show,"Comedy, Drama",TV-MA,2023,1,35,8.0,73,A road-rage incident spirals into obsession.,Comedy,1,short,101.9,Alex,25-34,Action,Comedy,short,weeknights,balanced explorer,4,laptop
U047,T055,2025-09-12,3.6,94,browse row,0,1,Blue Eye Samurai,TV Show,"Animation, Action",TV-MA,2023,1,45,8.7,70,A swordswoman seeks revenge in Edo-period Japan.,Animation,1,short,108.0,Alex,25-34,Action,Comedy,short,weeknights,balanced explorer,4,laptop
U047,T030,2025-02-16,3.7,90,homepage banner,0,1,Glass Onion,Movie,"Mystery, Comedy",PG-13,2022,1,139,7.1,85,A detective untangles a billionaire's island murder game.,Mystery,1,long,96.5,Alex,25-34,Action,Comedy,short,weeknights,balanced explorer,4,laptop
U047,T041,2025-09-16,2.3,54,homepage banner,0,0,The Killer,Movie,"Thriller, Crime",R,2023,1,118,6.8,60,A meticulous assassin faces unexpected consequences.,Thriller,1,medium,86.0,Alex,25-34,Action,Comedy,short,weeknights,balanced explorer,4,laptop
U047,T018,2025-05-04,3.7,67,search,0,0,One Piece,TV Show,"Adventure, Fantasy",TV-14,2023,1,55,8.4,90,Pirates hunt treasure in a live-action adaptation.,Adventure,1,short,111.0,Alex,25-34,Action,Comedy,short,weeknights,balanced explorer,4,laptop
U047,T050,2025-10-26,3.6,60,friend recommendation,0,0,Baby Reindeer,TV Show,"Drama, Thriller",TV-MA,2024,1,33,8.3,86,A comedian faces a stalking nightmare.,Drama,1,short,108.8,Alex,25-34,Action,Comedy,short,weeknights,balanced explorer,4,laptop
U047,T053,2025-01-25,3.8,64,browse row,0,0,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Alex,25-34,Action,Comedy,short,weeknights,balanced explorer,4,laptop
U047,T043,2025-05-25,4.3,97,homepage banner,1,1,Army of the Dead,Movie,"Action, Horror",R,2021,1,148,5.7,58,Mercenaries enter zombie-infested Las Vegas for a heist.,Action,1,long,74.4,Alex,25-34,Action,Comedy,short,weeknights,balanced explorer,4,laptop
U047,T015,2025-11-02,2.9,82,homepage banner,0,0,Heartstopper,TV Show,"Romance, Teen",TV-14,2022,2,31,8.5,87,"Two students navigate identity, friendship, and love.",Romance,1,short,111.1,Alex,25-34,Action,Comedy,short,weeknights,balanced explorer,4,laptop
U047,T001,2025-05-27,3.5,71,email click,0,0,Stranger Things,TV Show,"Sci-Fi, Drama",TV-14,2016,4,51,8.7,95,Supernatural mysteries unfold in a small town.,Sci-Fi,0,short,115.5,Alex,25-34,Action,Comedy,short,weeknights,balanced explorer,4,laptop
U047,T040,2025-01-05,2.4,39,browse row,0,0,Guillermo del Toro's Pinocchio,Movie,"Animation, Fantasy",PG,2022,1,117,7.6,66,A wooden boy comes to life in wartime Italy.,Animation,1,medium,95.8,Alex,25-34,Action,Comedy,short,weeknights,balanced explorer,4,laptop
U047,T025,2025-08-09,4.1,62,search,1,0,Friends,TV Show,"Comedy, Romance",TV-14,1994,10,22,8.9,92,Six friends face life and love in New York.,Comedy,0,short,116.6,Alex,25-34,Action,Comedy,short,weeknights,balanced explorer,4,laptop
U047,T033,2025-05-16,4.1,82,friend recommendation,1,0,Extraction,Movie,"Action, Thriller",R,2020,1,116,6.8,74,A mercenary attempts a dangerous rescue mission.,Action,1,medium,90.2,Alex,25-34,Action,Comedy,short,weeknights,balanced explorer,4,laptop
U047,T014,2026-01-27,5.0,90,homepage banner,1,1,Cobra Kai,TV Show,"Comedy, Action",TV-14,2018,6,34,8.4,75,Old karate rivals reignite decades later.,Comedy,0,short,106.5,Alex,25-34,Action,Comedy,short,weeknights,balanced explorer,4,laptop
U047,T002,2025-07-07,3.1,86,browse row,0,1,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Alex,25-34,Action,Comedy,short,weeknights,balanced explorer,4,laptop
U048,T060,2025-01-27,2.5,61,email click,0,0,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Jordan,25-34,Romance,Action,long,mixed,balanced explorer,3,tv
U048,T001,2025-10-15,3.4,81,search,0,0,Stranger Things,TV Show,"Sci-Fi, Drama",TV-14,2016,4,51,8.7,95,Supernatural mysteries unfold in a small town.,Sci-Fi,0,short,115.5,Jordan,25-34,Romance,Action,long,mixed,balanced explorer,3,tv
U048,T047,2025-07-05,2.9,82,email click,0,0,The Mitchells vs. the Machines,Movie,"Animation, Comedy",PG,2021,1,113,7.6,74,A quirky family saves the world from a robot uprising.,Animation,1,medium,98.2,Jordan,25-34,Romance,Action,long,mixed,balanced explorer,3,tv
U048,T055,2025-05-28,2.7,74,browse row,0,0,Blue Eye Samurai,TV Show,"Animation, Action",TV-MA,2023,1,45,8.7,70,A swordswoman seeks revenge in Edo-period Japan.,Animation,1,short,108.0,Jordan,25-34,Romance,Action,long,mixed,balanced explorer,3,tv
U048,T024,2025-07-17,3.7,90,email click,0,1,The Office,TV Show,Comedy,TV-14,2005,9,22,9.0,94,Office workers navigate absurd everyday routines.,Comedy,0,short,118.2,Jordan,25-34,Romance,Action,long,mixed,balanced explorer,3,tv
U048,T025,2025-08-19,4.4,100,email click,1,1,Friends,TV Show,"Comedy, Romance",TV-14,1994,10,22,8.9,92,Six friends face life and love in New York.,Comedy,0,short,116.6,Jordan,25-34,Romance,Action,long,mixed,balanced explorer,3,tv
U048,T054,2025-05-24,3.0,65,email click,0,0,Beef,TV Show,"Comedy, Drama",TV-MA,2023,1,35,8.0,73,A road-rage incident spirals into obsession.,Comedy,1,short,101.9,Jordan,25-34,Romance,Action,long,mixed,balanced explorer,3,tv
U048,T023,2025-12-15,3.7,99,email click,0,1,Peaky Blinders,TV Show,"Crime, History",TV-MA,2013,6,58,8.8,83,A Birmingham gang rises after World War I.,Crime,0,short,112.9,Jordan,25-34,Romance,Action,long,mixed,balanced explorer,3,tv
U048,T050,2025-03-02,3.3,75,search,0,0,Baby Reindeer,TV Show,"Drama, Thriller",TV-MA,2024,1,33,8.3,86,A comedian faces a stalking nightmare.,Drama,1,short,108.8,Jordan,25-34,Romance,Action,long,mixed,balanced explorer,3,tv
U048,T009,2025-02-19,3.0,55,homepage banner,0,0,Narcos,TV Show,"Crime, Drama",TV-MA,2015,3,49,8.7,78,The rise of Pablo Escobar and the drug wars.,Crime,0,short,110.4,Jordan,25-34,Romance,Action,long,mixed,balanced explorer,3,tv
U048,T061,2025-07-11,3.7,98,friend recommendation,0,1,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Jordan,25-34,Romance,Action,long,mixed,balanced explorer,3,tv
U048,T042,2025-10-13,2.5,83,friend recommendation,0,0,Leave the World Behind,Movie,"Thriller, Drama",R,2023,1,141,6.4,82,A family vacation turns ominous during a blackout.,Thriller,1,long,88.6,Jordan,25-34,Romance,Action,long,mixed,balanced explorer,3,tv
U048,T039,2026-01-22,3.2,61,search,0,0,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Jordan,25-34,Romance,Action,long,mixed,balanced explorer,3,tv
U048,T046,2025-04-12,2.9,79,email click,0,0,Red Notice,Movie,"Action, Comedy",PG-13,2021,1,118,6.3,92,An FBI profiler chases two rival art thieves.,Action,1,medium,90.6,Jordan,25-34,Romance,Action,long,mixed,balanced explorer,3,tv
U049,T032,2025-07-25,3.5,100,email click,0,1,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Casey,45-54,Drama,Fantasy,short,weeknights,balanced explorer,5,mobile
U049,T049,2025-01-21,4.6,93,browse row,1,1,Maestro in Blue,TV Show,"Drama, Romance",TV-MA,2022,1,50,7.8,59,A musician becomes entangled in island secrets.,Drama,1,short,95.7,Casey,45-54,Drama,Fantasy,short,weeknights,balanced explorer,5,mobile
U049,T006,2025-01-20,4.0,89,search,1,1,Bridgerton,TV Show,"Romance, Drama",TV-MA,2020,3,60,7.4,84,Love and scandal shape the London social season.,Romance,1,short,99.2,Casey,45-54,Drama,Fantasy,short,weeknights,balanced explorer,5,mobile
U049,T027,2026-01-01,3.5,50,friend recommendation,0,0,The Irishman,Movie,"Crime, Drama",R,2019,1,209,7.8,70,An aging hitman reflects on loyalty and regret.,Crime,0,long,99.0,Casey,45-54,Drama,Fantasy,short,weeknights,balanced explorer,5,mobile
U049,T044,2026-02-16,4.0,69,homepage banner,1,0,Project Power,Movie,"Action, Sci-Fi",R,2020,1,113,6.0,64,A pill that grants powers sparks chaos in New Orleans.,Action,1,medium,79.2,Casey,45-54,Drama,Fantasy,short,weeknights,balanced explorer,5,mobile
U049,T001,2025-09-23,4.1,95,homepage banner,1,1,Stranger Things,TV Show,"Sci-Fi, Drama",TV-14,2016,4,51,8.7,95,Supernatural mysteries unfold in a small town.,Sci-Fi,0,short,115.5,Casey,45-54,Drama,Fantasy,short,weeknights,balanced explorer,5,mobile
U049,T010,2025-03-18,4.2,90,email click,1,1,Emily in Paris,TV Show,"Comedy, Romance",TV-MA,2020,4,30,6.9,72,A marketer explores work and romance in Paris.,Comedy,1,short,90.6,Casey,45-54,Drama,Fantasy,short,weeknights,balanced explorer,5,mobile
U049,T009,2025-09-21,3.6,76,search,0,0,Narcos,TV Show,"Crime, Drama",TV-MA,2015,3,49,8.7,78,The rise of Pablo Escobar and the drug wars.,Crime,0,short,110.4,Casey,45-54,Drama,Fantasy,short,weeknights,balanced explorer,5,mobile
U049,T054,2025-06-17,3.9,83,email click,0,0,Beef,TV Show,"Comedy, Drama",TV-MA,2023,1,35,8.0,73,A road-rage incident spirals into obsession.,Comedy,1,short,101.9,Casey,45-54,Drama,Fantasy,short,weeknights,balanced explorer,5,mobile
U049,T019,2025-06-13,5.0,56,search,1,0,Squid Game,TV Show,"Thriller, Drama",TV-MA,2021,1,55,8.0,97,Cash-strapped players join deadly children's games.,Thriller,1,short,109.1,Casey,45-54,Drama,Fantasy,short,weeknights,balanced explorer,5,mobile
U049,T005,2025-07-21,3.7,74,email click,0,0,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Casey,45-54,Drama,Fantasy,short,weeknights,balanced explorer,5,mobile
U049,T018,2026-01-14,3.1,84,friend recommendation,0,0,One Piece,TV Show,"Adventure, Fantasy",TV-14,2023,1,55,8.4,90,Pirates hunt treasure in a live-action adaptation.,Adventure,1,short,111.0,Casey,45-54,Drama,Fantasy,short,weeknights,balanced explorer,5,mobile
U049,T021,2025-10-31,3.5,60,friend recommendation,0,0,Breaking Bad,TV Show,"Crime, Drama",TV-MA,2008,5,47,9.5,99,A chemistry teacher turns to meth production.,Crime,0,short,124.7,Casey,45-54,Drama,Fantasy,short,weeknights,balanced explorer,5,mobile
U049,T023,2025-09-17,3.8,100,email click,0,1,Peaky Blinders,TV Show,"Crime, History",TV-MA,2013,6,58,8.8,83,A Birmingham gang rises after World War I.,Crime,0,short,112.9,Casey,45-54,Drama,Fantasy,short,weeknights,balanced explorer,5,mobile
U049,T035,2025-09-30,3.0,56,homepage banner,0,0,The Adam Project,Movie,"Sci-Fi, Adventure",PG-13,2022,1,106,6.7,73,A time-traveling pilot teams up with his younger self.,Sci-Fi,1,medium,88.9,Casey,45-54,Drama,Fantasy,short,weeknights,balanced explorer,5,mobile
U049,T007,2025-12-29,3.5,95,email click,0,1,The Witcher,TV Show,"Fantasy, Action",TV-MA,2019,3,57,8.0,86,A monster hunter navigates destiny and politics.,Fantasy,0,short,105.8,Casey,45-54,Drama,Fantasy,short,weeknights,balanced explorer,5,mobile
U050,T029,2025-09-01,3.2,75,browse row,0,0,Bird Box,Movie,"Thriller, Horror",R,2018,1,124,6.6,88,Survivors avoid a mysterious force that drives people mad.,Thriller,0,medium,92.4,Casey,35-44,Drama,Sci-Fi,medium,weekends,comfort rewatcher,7,laptop
U050,T014,2025-07-08,3.1,78,friend recommendation,0,0,Cobra Kai,TV Show,"Comedy, Action",TV-14,2018,6,34,8.4,75,Old karate rivals reignite decades later.,Comedy,0,short,106.5,Casey,35-44,Drama,Sci-Fi,medium,weekends,comfort rewatcher,7,laptop
U050,T037,2025-12-11,2.6,64,browse row,0,0,To All the Boys I've Loved Before,Movie,"Romance, Comedy",PG-13,2018,1,99,7.0,76,Secret love letters create romantic chaos.,Romance,0,medium,92.8,Casey,35-44,Drama,Sci-Fi,medium,weekends,comfort rewatcher,7,laptop
U050,T002,2025-08-02,3.9,87,email click,0,1,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Casey,35-44,Drama,Sci-Fi,medium,weekends,comfort rewatcher,7,laptop
U050,T057,2025-06-07,3.6,98,browse row,0,1,Rebel Moon,Movie,"Sci-Fi, Action",PG-13,2023,1,134,5.6,87,A former soldier gathers warriors to fight an empire.,Sci-Fi,1,long,82.1,Casey,35-44,Drama,Sci-Fi,medium,weekends,comfort rewatcher,7,laptop
U050,T039,2025-11-02,4.5,87,homepage banner,1,1,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Casey,35-44,Drama,Sci-Fi,medium,weekends,comfort rewatcher,7,laptop
U050,T010,2025-05-16,3.8,100,email click,0,1,Emily in Paris,TV Show,"Comedy, Romance",TV-MA,2020,4,30,6.9,72,A marketer explores work and romance in Paris.,Comedy,1,short,90.6,Casey,35-44,Drama,Sci-Fi,medium,weekends,comfort rewatcher,7,laptop
U050,T053,2025-10-23,1.8,76,search,0,0,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Casey,35-44,Drama,Sci-Fi,medium,weekends,comfort rewatcher,7,laptop
U050,T061,2026-01-05,2.6,83,browse row,0,0,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Casey,35-44,Drama,Sci-Fi,medium,weekends,comfort rewatcher,7,laptop
U050,T005,2025-10-26,3.7,68,homepage banner,0,0,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Casey,35-44,Drama,Sci-Fi,medium,weekends,comfort rewatcher,7,laptop
U050,T046,2025-03-29,1.9,76,email click,0,0,Red Notice,Movie,"Action, Comedy",PG-13,2021,1,118,6.3,92,An FBI profiler chases two rival art thieves.,Action,1,medium,90.6,Casey,35-44,Drama,Sci-Fi,medium,weekends,comfort rewatcher,7,laptop
U050,T055,2025-11-19,3.1,50,email click,0,0,Blue Eye Samurai,TV Show,"Animation, Action",TV-MA,2023,1,45,8.7,70,A swordswoman seeks revenge in Edo-period Japan.,Animation,1,short,108.0,Casey,35-44,Drama,Sci-Fi,medium,weekends,comfort rewatcher,7,laptop
U051,T031,2025-03-17,2.4,64,search,0,0,Roma,Movie,Drama,R,2018,1,135,7.7,63,A domestic worker supports a family in 1970s Mexico City.,Drama,0,long,95.9,Sam,35-44,Animation,Action,long,mixed,comfort rewatcher,6,mobile
U051,T030,2025-01-17,3.4,65,email click,0,0,Glass Onion,Movie,"Mystery, Comedy",PG-13,2022,1,139,7.1,85,A detective untangles a billionaire's island murder game.,Mystery,1,long,96.5,Sam,35-44,Animation,Action,long,mixed,comfort rewatcher,6,mobile
U051,T003,2025-12-25,2.5,61,browse row,0,0,Money Heist,TV Show,"Crime, Thriller",TV-MA,2017,5,50,8.2,91,A criminal mastermind executes an ambitious heist.,Crime,0,short,109.3,Sam,35-44,Animation,Action,long,mixed,comfort rewatcher,6,mobile
U051,T021,2025-04-08,3.7,74,browse row,0,0,Breaking Bad,TV Show,"Crime, Drama",TV-MA,2008,5,47,9.5,99,A chemistry teacher turns to meth production.,Crime,0,short,124.7,Sam,35-44,Animation,Action,long,mixed,comfort rewatcher,6,mobile
U051,T006,2025-08-14,3.9,74,friend recommendation,0,0,Bridgerton,TV Show,"Romance, Drama",TV-MA,2020,3,60,7.4,84,Love and scandal shape the London social season.,Romance,1,short,99.2,Sam,35-44,Animation,Action,long,mixed,comfort rewatcher,6,mobile
U051,T032,2025-08-03,3.5,73,search,0,0,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Sam,35-44,Animation,Action,long,mixed,comfort rewatcher,6,mobile
U051,T043,2025-07-31,4.4,72,search,1,0,Army of the Dead,Movie,"Action, Horror",R,2021,1,148,5.7,58,Mercenaries enter zombie-infested Las Vegas for a heist.,Action,1,long,74.4,Sam,35-44,Animation,Action,long,mixed,comfort rewatcher,6,mobile
U051,T052,2025-07-30,3.4,80,email click,0,0,3 Body Problem,TV Show,"Sci-Fi, Mystery",TV-MA,2024,1,58,7.6,84,Scientists confront a cosmic threat from first contact.,Sci-Fi,1,short,101.2,Sam,35-44,Animation,Action,long,mixed,comfort rewatcher,6,mobile
U051,T047,2026-02-01,3.6,78,email click,0,0,The Mitchells vs. the Machines,Movie,"Animation, Comedy",PG,2021,1,113,7.6,74,A quirky family saves the world from a robot uprising.,Animation,1,medium,98.2,Sam,35-44,Animation,Action,long,mixed,comfort rewatcher,6,mobile
U051,T019,2025-08-30,3.9,86,browse row,0,1,Squid Game,TV Show,"Thriller, Drama",TV-MA,2021,1,55,8.0,97,Cash-strapped players join deadly children's games.,Thriller,1,short,109.1,Sam,35-44,Animation,Action,long,mixed,comfort rewatcher,6,mobile
U051,T041,2025-12-28,2.6,52,search,0,0,The Killer,Movie,"Thriller, Crime",R,2023,1,118,6.8,60,A meticulous assassin faces unexpected consequences.,Thriller,1,medium,86.0,Sam,35-44,Animation,Action,long,mixed,comfort rewatcher,6,mobile
U051,T005,2025-09-23,3.3,80,search,0,0,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Sam,35-44,Animation,Action,long,mixed,comfort rewatcher,6,mobile
U051,T012,2025-10-15,3.4,57,friend recommendation,0,0,Ozark,TV Show,"Crime, Drama",TV-MA,2017,4,60,8.5,77,A family launders money for a dangerous cartel.,Crime,0,short,108.1,Sam,35-44,Animation,Action,long,mixed,comfort rewatcher,6,mobile
U051,T010,2025-12-06,2.3,85,homepage banner,0,1,Emily in Paris,TV Show,"Comedy, Romance",TV-MA,2020,4,30,6.9,72,A marketer explores work and romance in Paris.,Comedy,1,short,90.6,Sam,35-44,Animation,Action,long,mixed,comfort rewatcher,6,mobile
U052,T047,2025-07-12,2.8,81,friend recommendation,0,0,The Mitchells vs. the Machines,Movie,"Animation, Comedy",PG,2021,1,113,7.6,74,A quirky family saves the world from a robot uprising.,Animation,1,medium,98.2,Cameron,45-54,Mystery,Thriller,short,weeknights,balanced explorer,7,tv
U052,T007,2025-03-30,3.7,88,homepage banner,0,1,The Witcher,TV Show,"Fantasy, Action",TV-MA,2019,3,57,8.0,86,A monster hunter navigates destiny and politics.,Fantasy,0,short,105.8,Cameron,45-54,Mystery,Thriller,short,weeknights,balanced explorer,7,tv
U052,T046,2025-09-30,3.8,72,friend recommendation,0,0,Red Notice,Movie,"Action, Comedy",PG-13,2021,1,118,6.3,92,An FBI profiler chases two rival art thieves.,Action,1,medium,90.6,Cameron,45-54,Mystery,Thriller,short,weeknights,balanced explorer,7,tv
U052,T048,2025-10-07,2.7,56,friend recommendation,0,0,Klaus,Movie,"Animation, Family",PG,2019,1,96,8.2,69,A postman and a toymaker spark a holiday tradition.,Animation,0,medium,102.7,Cameron,45-54,Mystery,Thriller,short,weeknights,balanced explorer,7,tv
U052,T042,2025-12-13,3.5,65,friend recommendation,0,0,Leave the World Behind,Movie,"Thriller, Drama",R,2023,1,141,6.4,82,A family vacation turns ominous during a blackout.,Thriller,1,long,88.6,Cameron,45-54,Mystery,Thriller,short,weeknights,balanced explorer,7,tv
U052,T021,2025-11-09,3.4,80,homepage banner,0,0,Breaking Bad,TV Show,"Crime, Drama",TV-MA,2008,5,47,9.5,99,A chemistry teacher turns to meth production.,Crime,0,short,124.7,Cameron,45-54,Mystery,Thriller,short,weeknights,balanced explorer,7,tv
U052,T020,2025-04-09,3.9,88,search,0,1,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Cameron,45-54,Mystery,Thriller,short,weeknights,balanced explorer,7,tv
U052,T011,2025-05-23,4.1,92,email click,1,1,Lupin,TV Show,"Crime, Mystery",TV-14,2021,3,44,7.5,85,A gentleman thief seeks revenge using deception.,Crime,1,short,100.5,Cameron,45-54,Mystery,Thriller,short,weeknights,balanced explorer,7,tv
U052,T005,2025-06-02,3.7,81,search,0,0,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Cameron,45-54,Mystery,Thriller,short,weeknights,balanced explorer,7,tv
U052,T054,2025-06-02,3.5,81,friend recommendation,0,0,Beef,TV Show,"Comedy, Drama",TV-MA,2023,1,35,8.0,73,A road-rage incident spirals into obsession.,Comedy,1,short,101.9,Cameron,45-54,Mystery,Thriller,short,weeknights,balanced explorer,7,tv
U052,T025,2025-12-27,3.5,70,search,0,0,Friends,TV Show,"Comedy, Romance",TV-14,1994,10,22,8.9,92,Six friends face life and love in New York.,Comedy,0,short,116.6,Cameron,45-54,Mystery,Thriller,short,weeknights,balanced explorer,7,tv
U052,T044,2025-12-20,3.7,100,homepage banner,0,1,Project Power,Movie,"Action, Sci-Fi",R,2020,1,113,6.0,64,A pill that grants powers sparks chaos in New Orleans.,Action,1,medium,79.2,Cameron,45-54,Mystery,Thriller,short,weeknights,balanced explorer,7,tv
U052,T030,2025-06-12,3.0,56,homepage banner,0,0,Glass Onion,Movie,"Mystery, Comedy",PG-13,2022,1,139,7.1,85,A detective untangles a billionaire's island murder game.,Mystery,1,long,96.5,Cameron,45-54,Mystery,Thriller,short,weeknights,balanced explorer,7,tv
U052,T045,2025-06-28,4.3,84,email click,1,0,Murder Mystery,Movie,"Comedy, Mystery",PG-13,2019,1,97,6.0,81,A couple becomes entangled in a murder case on a yacht.,Comedy,0,medium,84.3,Cameron,45-54,Mystery,Thriller,short,weeknights,balanced explorer,7,tv
U052,T060,2026-02-12,4.1,89,friend recommendation,1,1,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Cameron,45-54,Mystery,Thriller,short,weeknights,balanced explorer,7,tv
U052,T039,2025-05-28,3.8,52,browse row,0,0,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Cameron,45-54,Mystery,Thriller,short,weeknights,balanced explorer,7,tv
U053,T004,2025-12-13,3.5,75,email click,0,0,The Queen's Gambit,TV Show,Drama,TV-MA,2020,1,56,8.5,89,A chess prodigy battles addiction and fame.,Drama,1,short,111.7,Alex,25-34,Mystery,Animation,short,weekends,balanced explorer,8,mobile
U053,T007,2025-07-14,3.7,78,homepage banner,0,0,The Witcher,TV Show,"Fantasy, Action",TV-MA,2019,3,57,8.0,86,A monster hunter navigates destiny and politics.,Fantasy,0,short,105.8,Alex,25-34,Mystery,Animation,short,weekends,balanced explorer,8,mobile
U053,T036,2026-02-24,2.2,71,friend recommendation,0,0,The Gray Man,Movie,"Action, Thriller",PG-13,2022,1,122,6.5,71,A CIA asset becomes the target of a global manhunt.,Action,1,medium,86.3,Alex,25-34,Mystery,Animation,short,weekends,balanced explorer,8,mobile
U053,T033,2026-01-31,3.1,59,search,0,0,Extraction,Movie,"Action, Thriller",R,2020,1,116,6.8,74,A mercenary attempts a dangerous rescue mission.,Action,1,medium,90.2,Alex,25-34,Mystery,Animation,short,weekends,balanced explorer,8,mobile
U053,T035,2025-05-29,3.5,90,browse row,0,1,The Adam Project,Movie,"Sci-Fi, Adventure",PG-13,2022,1,106,6.7,73,A time-traveling pilot teams up with his younger self.,Sci-Fi,1,medium,88.9,Alex,25-34,Mystery,Animation,short,weekends,balanced explorer,8,mobile
U053,T043,2025-05-28,2.5,60,browse row,0,0,Army of the Dead,Movie,"Action, Horror",R,2021,1,148,5.7,58,Mercenaries enter zombie-infested Las Vegas for a heist.,Action,1,long,74.4,Alex,25-34,Mystery,Animation,short,weekends,balanced explorer,8,mobile
U053,T003,2025-06-27,3.2,65,homepage banner,0,0,Money Heist,TV Show,"Crime, Thriller",TV-MA,2017,5,50,8.2,91,A criminal mastermind executes an ambitious heist.,Crime,0,short,109.3,Alex,25-34,Mystery,Animation,short,weekends,balanced explorer,8,mobile
U053,T016,2025-12-02,3.7,84,friend recommendation,0,0,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Alex,25-34,Mystery,Animation,short,weekends,balanced explorer,8,mobile
U053,T051,2026-01-18,2.6,58,homepage banner,0,0,Ripley,TV Show,"Thriller, Drama",TV-MA,2024,1,55,8.1,67,"A grifter is drawn into wealth, deception, and murder.",Thriller,1,short,101.1,Alex,25-34,Mystery,Animation,short,weekends,balanced explorer,8,mobile
U053,T017,2025-04-20,4.0,100,search,1,1,The Night Agent,TV Show,"Action, Thriller",TV-MA,2023,1,45,7.5,83,An FBI agent uncovers a conspiracy from a late-night call.,Action,1,short,99.9,Alex,25-34,Mystery,Animation,short,weekends,balanced explorer,8,mobile
U053,T032,2026-02-28,3.3,74,email click,0,0,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Alex,25-34,Mystery,Animation,short,weekends,balanced explorer,8,mobile
U053,T014,2025-05-19,3.0,83,email click,0,0,Cobra Kai,TV Show,"Comedy, Action",TV-14,2018,6,34,8.4,75,Old karate rivals reignite decades later.,Comedy,0,short,106.5,Alex,25-34,Mystery,Animation,short,weekends,balanced explorer,8,mobile
U053,T006,2025-12-23,3.3,53,friend recommendation,0,0,Bridgerton,TV Show,"Romance, Drama",TV-MA,2020,3,60,7.4,84,Love and scandal shape the London social season.,Romance,1,short,99.2,Alex,25-34,Mystery,Animation,short,weekends,balanced explorer,8,mobile
U053,T010,2025-03-12,3.9,100,browse row,0,1,Emily in Paris,TV Show,"Comedy, Romance",TV-MA,2020,4,30,6.9,72,A marketer explores work and romance in Paris.,Comedy,1,short,90.6,Alex,25-34,Mystery,Animation,short,weekends,balanced explorer,8,mobile
U053,T019,2025-11-12,3.7,65,email click,0,0,Squid Game,TV Show,"Thriller, Drama",TV-MA,2021,1,55,8.0,97,Cash-strapped players join deadly children's games.,Thriller,1,short,109.1,Alex,25-34,Mystery,Animation,short,weekends,balanced explorer,8,mobile
U053,T034,2025-05-03,3.6,53,search,0,0,Enola Holmes,Movie,"Mystery, Adventure",PG-13,2020,1,123,6.6,78,Sherlock's sister searches for her missing mother.,Mystery,1,medium,89.4,Alex,25-34,Mystery,Animation,short,weekends,balanced explorer,8,mobile
U053,T018,2025-01-26,4.3,82,email click,1,0,One Piece,TV Show,"Adventure, Fantasy",TV-14,2023,1,55,8.4,90,Pirates hunt treasure in a live-action adaptation.,Adventure,1,short,111.0,Alex,25-34,Mystery,Animation,short,weekends,balanced explorer,8,mobile
U054,T001,2025-11-23,2.9,80,search,0,0,Stranger Things,TV Show,"Sci-Fi, Drama",TV-14,2016,4,51,8.7,95,Supernatural mysteries unfold in a small town.,Sci-Fi,0,short,115.5,Morgan,25-34,Animation,Mystery,long,mixed,balanced explorer,3,laptop
U054,T027,2025-01-27,2.8,92,browse row,0,1,The Irishman,Movie,"Crime, Drama",R,2019,1,209,7.8,70,An aging hitman reflects on loyalty and regret.,Crime,0,long,99.0,Morgan,25-34,Animation,Mystery,long,mixed,balanced explorer,3,laptop
U054,T039,2025-07-31,3.6,89,friend recommendation,0,1,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Morgan,25-34,Animation,Mystery,long,mixed,balanced explorer,3,laptop
U054,T017,2026-01-03,2.9,82,homepage banner,0,0,The Night Agent,TV Show,"Action, Thriller",TV-MA,2023,1,45,7.5,83,An FBI agent uncovers a conspiracy from a late-night call.,Action,1,short,99.9,Morgan,25-34,Animation,Mystery,long,mixed,balanced explorer,3,laptop
U054,T057,2025-02-21,2.9,86,search,0,1,Rebel Moon,Movie,"Sci-Fi, Action",PG-13,2023,1,134,5.6,87,A former soldier gathers warriors to fight an empire.,Sci-Fi,1,long,82.1,Morgan,25-34,Animation,Mystery,long,mixed,balanced explorer,3,laptop
U054,T033,2025-01-03,4.0,100,email click,1,1,Extraction,Movie,"Action, Thriller",R,2020,1,116,6.8,74,A mercenary attempts a dangerous rescue mission.,Action,1,medium,90.2,Morgan,25-34,Animation,Mystery,long,mixed,balanced explorer,3,laptop
U054,T022,2025-03-22,2.6,76,homepage banner,0,0,Better Call Saul,TV Show,"Crime, Drama",TV-MA,2015,6,46,9.0,96,The morally flexible lawyer begins his transformation.,Crime,0,short,118.8,Morgan,25-34,Animation,Mystery,long,mixed,balanced explorer,3,laptop
U054,T020,2025-12-01,2.2,75,homepage banner,0,0,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Morgan,25-34,Animation,Mystery,long,mixed,balanced explorer,3,laptop
U054,T060,2025-09-02,3.6,52,search,0,0,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Morgan,25-34,Animation,Mystery,long,mixed,balanced explorer,3,laptop
U054,T035,2026-01-23,2.3,63,friend recommendation,0,0,The Adam Project,Movie,"Sci-Fi, Adventure",PG-13,2022,1,106,6.7,73,A time-traveling pilot teams up with his younger self.,Sci-Fi,1,medium,88.9,Morgan,25-34,Animation,Mystery,long,mixed,balanced explorer,3,laptop
U054,T023,2025-06-14,2.8,54,friend recommendation,0,0,Peaky Blinders,TV Show,"Crime, History",TV-MA,2013,6,58,8.8,83,A Birmingham gang rises after World War I.,Crime,0,short,112.9,Morgan,25-34,Animation,Mystery,long,mixed,balanced explorer,3,laptop
U055,T003,2025-01-31,2.1,78,browse row,0,0,Money Heist,TV Show,"Crime, Thriller",TV-MA,2017,5,50,8.2,91,A criminal mastermind executes an ambitious heist.,Crime,0,short,109.3,Casey,35-44,Romance,Mystery,long,weeknights,novelty seeker,8,tv
U055,T009,2025-11-30,2.4,50,email click,0,0,Narcos,TV Show,"Crime, Drama",TV-MA,2015,3,49,8.7,78,The rise of Pablo Escobar and the drug wars.,Crime,0,short,110.4,Casey,35-44,Romance,Mystery,long,weeknights,novelty seeker,8,tv
U055,T052,2025-04-29,4.5,95,email click,1,1,3 Body Problem,TV Show,"Sci-Fi, Mystery",TV-MA,2024,1,58,7.6,84,Scientists confront a cosmic threat from first contact.,Sci-Fi,1,short,101.2,Casey,35-44,Romance,Mystery,long,weeknights,novelty seeker,8,tv
U055,T019,2026-01-14,3.9,97,browse row,0,1,Squid Game,TV Show,"Thriller, Drama",TV-MA,2021,1,55,8.0,97,Cash-strapped players join deadly children's games.,Thriller,1,short,109.1,Casey,35-44,Romance,Mystery,long,weeknights,novelty seeker,8,tv
U055,T031,2025-03-31,4.5,87,homepage banner,1,1,Roma,Movie,Drama,R,2018,1,135,7.7,63,A domestic worker supports a family in 1970s Mexico City.,Drama,0,long,95.9,Casey,35-44,Romance,Mystery,long,weeknights,novelty seeker,8,tv
U055,T005,2026-03-05,3.1,80,search,0,0,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Casey,35-44,Romance,Mystery,long,weeknights,novelty seeker,8,tv
U055,T043,2025-01-19,3.3,63,homepage banner,0,0,Army of the Dead,Movie,"Action, Horror",R,2021,1,148,5.7,58,Mercenaries enter zombie-infested Las Vegas for a heist.,Action,1,long,74.4,Casey,35-44,Romance,Mystery,long,weeknights,novelty seeker,8,tv
U055,T058,2026-02-08,3.5,92,homepage banner,0,1,Carry-On,Movie,"Thriller, Action",PG-13,2024,1,112,6.8,90,An airport employee is blackmailed into a dangerous plot.,Thriller,1,medium,95.0,Casey,35-44,Romance,Mystery,long,weeknights,novelty seeker,8,tv
U055,T024,2025-04-06,2.5,89,friend recommendation,0,1,The Office,TV Show,Comedy,TV-14,2005,9,22,9.0,94,Office workers navigate absurd everyday routines.,Comedy,0,short,118.2,Casey,35-44,Romance,Mystery,long,weeknights,novelty seeker,8,tv
U055,T001,2025-01-20,2.4,65,browse row,0,0,Stranger Things,TV Show,"Sci-Fi, Drama",TV-14,2016,4,51,8.7,95,Supernatural mysteries unfold in a small town.,Sci-Fi,0,short,115.5,Casey,35-44,Romance,Mystery,long,weeknights,novelty seeker,8,tv
U055,T028,2025-06-02,3.5,74,email click,0,0,Marriage Story,Movie,Drama,R,2019,1,137,7.9,68,A couple navigates a painful divorce.,Drama,0,long,99.4,Casey,35-44,Romance,Mystery,long,weeknights,novelty seeker,8,tv
U055,T023,2025-11-05,1.9,77,browse row,0,0,Peaky Blinders,TV Show,"Crime, History",TV-MA,2013,6,58,8.8,83,A Birmingham gang rises after World War I.,Crime,0,short,112.9,Casey,35-44,Romance,Mystery,long,weeknights,novelty seeker,8,tv
U055,T040,2025-06-21,3.0,86,friend recommendation,0,1,Guillermo del Toro's Pinocchio,Movie,"Animation, Fantasy",PG,2022,1,117,7.6,66,A wooden boy comes to life in wartime Italy.,Animation,1,medium,95.8,Casey,35-44,Romance,Mystery,long,weeknights,novelty seeker,8,tv
U055,T055,2025-08-21,2.6,54,email click,0,0,Blue Eye Samurai,TV Show,"Animation, Action",TV-MA,2023,1,45,8.7,70,A swordswoman seeks revenge in Edo-period Japan.,Animation,1,short,108.0,Casey,35-44,Romance,Mystery,long,weeknights,novelty seeker,8,tv
U055,T049,2025-09-26,4.9,99,homepage banner,1,1,Maestro in Blue,TV Show,"Drama, Romance",TV-MA,2022,1,50,7.8,59,A musician becomes entangled in island secrets.,Drama,1,short,95.7,Casey,35-44,Romance,Mystery,long,weeknights,novelty seeker,8,tv
U055,T020,2025-03-10,2.7,77,email click,0,0,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Casey,35-44,Romance,Mystery,long,weeknights,novelty seeker,8,tv
U055,T008,2025-08-28,3.0,76,friend recommendation,0,0,Dark,TV Show,"Sci-Fi, Mystery",TV-MA,2017,3,52,8.7,80,Time-travel secrets emerge in a German town.,Sci-Fi,0,short,111.0,Casey,35-44,Romance,Mystery,long,weeknights,novelty seeker,8,tv
U055,T033,2025-04-09,3.1,70,browse row,0,0,Extraction,Movie,"Action, Thriller",R,2020,1,116,6.8,74,A mercenary attempts a dangerous rescue mission.,Action,1,medium,90.2,Casey,35-44,Romance,Mystery,long,weeknights,novelty seeker,8,tv
U056,T045,2025-03-25,2.7,85,homepage banner,0,1,Murder Mystery,Movie,"Comedy, Mystery",PG-13,2019,1,97,6.0,81,A couple becomes entangled in a murder case on a yacht.,Comedy,0,medium,84.3,Parker,25-34,Action,Thriller,long,weeknights,balanced explorer,8,laptop
U056,T053,2025-11-28,3.5,100,friend recommendation,0,1,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Parker,25-34,Action,Thriller,long,weeknights,balanced explorer,8,laptop
U056,T051,2026-01-03,4.6,100,search,1,1,Ripley,TV Show,"Thriller, Drama",TV-MA,2024,1,55,8.1,67,"A grifter is drawn into wealth, deception, and murder.",Thriller,1,short,101.1,Parker,25-34,Action,Thriller,long,weeknights,balanced explorer,8,laptop
U056,T003,2025-01-08,2.6,98,friend recommendation,0,1,Money Heist,TV Show,"Crime, Thriller",TV-MA,2017,5,50,8.2,91,A criminal mastermind executes an ambitious heist.,Crime,0,short,109.3,Parker,25-34,Action,Thriller,long,weeknights,balanced explorer,8,laptop
U056,T006,2026-02-09,3.6,69,friend recommendation,0,0,Bridgerton,TV Show,"Romance, Drama",TV-MA,2020,3,60,7.4,84,Love and scandal shape the London social season.,Romance,1,short,99.2,Parker,25-34,Action,Thriller,long,weeknights,balanced explorer,8,laptop
U056,T020,2025-10-18,3.4,63,search,0,0,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Parker,25-34,Action,Thriller,long,weeknights,balanced explorer,8,laptop
U056,T008,2025-03-31,3.4,59,email click,0,0,Dark,TV Show,"Sci-Fi, Mystery",TV-MA,2017,3,52,8.7,80,Time-travel secrets emerge in a German town.,Sci-Fi,0,short,111.0,Parker,25-34,Action,Thriller,long,weeknights,balanced explorer,8,laptop
U056,T033,2025-11-24,4.1,96,homepage banner,1,1,Extraction,Movie,"Action, Thriller",R,2020,1,116,6.8,74,A mercenary attempts a dangerous rescue mission.,Action,1,medium,90.2,Parker,25-34,Action,Thriller,long,weeknights,balanced explorer,8,laptop
U056,T039,2026-02-28,3.6,85,homepage banner,0,1,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Parker,25-34,Action,Thriller,long,weeknights,balanced explorer,8,laptop
U056,T005,2025-09-21,2.8,41,friend recommendation,0,0,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Parker,25-34,Action,Thriller,long,weeknights,balanced explorer,8,laptop
U056,T027,2025-02-14,3.2,85,homepage banner,0,1,The Irishman,Movie,"Crime, Drama",R,2019,1,209,7.8,70,An aging hitman reflects on loyalty and regret.,Crime,0,long,99.0,Parker,25-34,Action,Thriller,long,weeknights,balanced explorer,8,laptop
U056,T055,2025-12-09,3.8,82,browse row,0,0,Blue Eye Samurai,TV Show,"Animation, Action",TV-MA,2023,1,45,8.7,70,A swordswoman seeks revenge in Edo-period Japan.,Animation,1,short,108.0,Parker,25-34,Action,Thriller,long,weeknights,balanced explorer,8,laptop
U056,T059,2025-04-05,2.9,69,search,0,0,Anyone But You,Movie,"Romance, Comedy",R,2023,1,103,6.4,77,A fake-couple wedding trip reignites sparks.,Romance,1,medium,87.1,Parker,25-34,Action,Thriller,long,weeknights,balanced explorer,8,laptop
U057,T049,2025-06-15,3.1,72,search,0,0,Maestro in Blue,TV Show,"Drama, Romance",TV-MA,2022,1,50,7.8,59,A musician becomes entangled in island secrets.,Drama,1,short,95.7,Casey,18-24,Comedy,Thriller,medium,mixed,balanced explorer,5,tv
U057,T009,2025-01-04,3.0,86,friend recommendation,0,1,Narcos,TV Show,"Crime, Drama",TV-MA,2015,3,49,8.7,78,The rise of Pablo Escobar and the drug wars.,Crime,0,short,110.4,Casey,18-24,Comedy,Thriller,medium,mixed,balanced explorer,5,tv
U057,T026,2025-07-16,2.8,72,search,0,0,Seinfeld,TV Show,Comedy,TV-14,1989,9,23,8.9,81,A comedian and friends obsess over daily trivialities.,Comedy,0,short,113.3,Casey,18-24,Comedy,Thriller,medium,mixed,balanced explorer,5,tv
U057,T042,2025-08-17,3.8,94,friend recommendation,0,1,Leave the World Behind,Movie,"Thriller, Drama",R,2023,1,141,6.4,82,A family vacation turns ominous during a blackout.,Thriller,1,long,88.6,Casey,18-24,Comedy,Thriller,medium,mixed,balanced explorer,5,tv
U057,T047,2025-06-18,3.4,63,friend recommendation,0,0,The Mitchells vs. the Machines,Movie,"Animation, Comedy",PG,2021,1,113,7.6,74,A quirky family saves the world from a robot uprising.,Animation,1,medium,98.2,Casey,18-24,Comedy,Thriller,medium,mixed,balanced explorer,5,tv
U057,T057,2025-10-26,3.4,50,email click,0,0,Rebel Moon,Movie,"Sci-Fi, Action",PG-13,2023,1,134,5.6,87,A former soldier gathers warriors to fight an empire.,Sci-Fi,1,long,82.1,Casey,18-24,Comedy,Thriller,medium,mixed,balanced explorer,5,tv
U057,T019,2025-01-06,4.4,92,friend recommendation,1,1,Squid Game,TV Show,"Thriller, Drama",TV-MA,2021,1,55,8.0,97,Cash-strapped players join deadly children's games.,Thriller,1,short,109.1,Casey,18-24,Comedy,Thriller,medium,mixed,balanced explorer,5,tv
U057,T017,2025-12-01,4.5,73,friend recommendation,1,0,The Night Agent,TV Show,"Action, Thriller",TV-MA,2023,1,45,7.5,83,An FBI agent uncovers a conspiracy from a late-night call.,Action,1,short,99.9,Casey,18-24,Comedy,Thriller,medium,mixed,balanced explorer,5,tv
U057,T008,2025-12-21,2.7,35,search,0,0,Dark,TV Show,"Sci-Fi, Mystery",TV-MA,2017,3,52,8.7,80,Time-travel secrets emerge in a German town.,Sci-Fi,0,short,111.0,Casey,18-24,Comedy,Thriller,medium,mixed,balanced explorer,5,tv
U057,T033,2025-02-01,3.1,73,browse row,0,0,Extraction,Movie,"Action, Thriller",R,2020,1,116,6.8,74,A mercenary attempts a dangerous rescue mission.,Action,1,medium,90.2,Casey,18-24,Comedy,Thriller,medium,mixed,balanced explorer,5,tv
U057,T043,2025-08-27,1.8,57,friend recommendation,0,0,Army of the Dead,Movie,"Action, Horror",R,2021,1,148,5.7,58,Mercenaries enter zombie-infested Las Vegas for a heist.,Action,1,long,74.4,Casey,18-24,Comedy,Thriller,medium,mixed,balanced explorer,5,tv
U057,T005,2025-03-23,1.8,59,homepage banner,0,0,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Casey,18-24,Comedy,Thriller,medium,mixed,balanced explorer,5,tv
U057,T025,2025-12-18,4.7,91,email click,1,1,Friends,TV Show,"Comedy, Romance",TV-14,1994,10,22,8.9,92,Six friends face life and love in New York.,Comedy,0,short,116.6,Casey,18-24,Comedy,Thriller,medium,mixed,balanced explorer,5,tv
U057,T011,2025-12-27,4.0,96,friend recommendation,1,1,Lupin,TV Show,"Crime, Mystery",TV-14,2021,3,44,7.5,85,A gentleman thief seeks revenge using deception.,Crime,1,short,100.5,Casey,18-24,Comedy,Thriller,medium,mixed,balanced explorer,5,tv
U057,T040,2025-12-20,3.8,71,browse row,0,0,Guillermo del Toro's Pinocchio,Movie,"Animation, Fantasy",PG,2022,1,117,7.6,66,A wooden boy comes to life in wartime Italy.,Animation,1,medium,95.8,Casey,18-24,Comedy,Thriller,medium,mixed,balanced explorer,5,tv
U058,T025,2025-06-01,4.0,71,friend recommendation,1,0,Friends,TV Show,"Comedy, Romance",TV-14,1994,10,22,8.9,92,Six friends face life and love in New York.,Comedy,0,short,116.6,Taylor,45-54,Mystery,Romance,medium,weekends,novelty seeker,9,laptop
U058,T017,2025-11-11,2.2,79,search,0,0,The Night Agent,TV Show,"Action, Thriller",TV-MA,2023,1,45,7.5,83,An FBI agent uncovers a conspiracy from a late-night call.,Action,1,short,99.9,Taylor,45-54,Mystery,Romance,medium,weekends,novelty seeker,9,laptop
U058,T032,2025-04-23,3.2,74,search,0,0,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Taylor,45-54,Mystery,Romance,medium,weekends,novelty seeker,9,laptop
U058,T061,2025-09-02,3.9,99,search,0,1,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Taylor,45-54,Mystery,Romance,medium,weekends,novelty seeker,9,laptop
U058,T048,2025-08-21,3.7,64,email click,0,0,Klaus,Movie,"Animation, Family",PG,2019,1,96,8.2,69,A postman and a toymaker spark a holiday tradition.,Animation,0,medium,102.7,Taylor,45-54,Mystery,Romance,medium,weekends,novelty seeker,9,laptop
U058,T034,2025-07-11,4.9,85,homepage banner,1,1,Enola Holmes,Movie,"Mystery, Adventure",PG-13,2020,1,123,6.6,78,Sherlock's sister searches for her missing mother.,Mystery,1,medium,89.4,Taylor,45-54,Mystery,Romance,medium,weekends,novelty seeker,9,laptop
U058,T049,2025-12-26,2.6,53,email click,0,0,Maestro in Blue,TV Show,"Drama, Romance",TV-MA,2022,1,50,7.8,59,A musician becomes entangled in island secrets.,Drama,1,short,95.7,Taylor,45-54,Mystery,Romance,medium,weekends,novelty seeker,9,laptop
U058,T030,2025-08-30,4.5,75,email click,1,0,Glass Onion,Movie,"Mystery, Comedy",PG-13,2022,1,139,7.1,85,A detective untangles a billionaire's island murder game.,Mystery,1,long,96.5,Taylor,45-54,Mystery,Romance,medium,weekends,novelty seeker,9,laptop
U058,T033,2026-02-15,2.9,79,search,0,0,Extraction,Movie,"Action, Thriller",R,2020,1,116,6.8,74,A mercenary attempts a dangerous rescue mission.,Action,1,medium,90.2,Taylor,45-54,Mystery,Romance,medium,weekends,novelty seeker,9,laptop
U058,T031,2026-01-26,2.9,66,search,0,0,Roma,Movie,Drama,R,2018,1,135,7.7,63,A domestic worker supports a family in 1970s Mexico City.,Drama,0,long,95.9,Taylor,45-54,Mystery,Romance,medium,weekends,novelty seeker,9,laptop
U058,T001,2025-12-15,2.2,67,email click,0,0,Stranger Things,TV Show,"Sci-Fi, Drama",TV-14,2016,4,51,8.7,95,Supernatural mysteries unfold in a small town.,Sci-Fi,0,short,115.5,Taylor,45-54,Mystery,Romance,medium,weekends,novelty seeker,9,laptop
U058,T041,2026-02-08,2.2,56,browse row,0,0,The Killer,Movie,"Thriller, Crime",R,2023,1,118,6.8,60,A meticulous assassin faces unexpected consequences.,Thriller,1,medium,86.0,Taylor,45-54,Mystery,Romance,medium,weekends,novelty seeker,9,laptop
U058,T052,2025-09-27,3.8,79,homepage banner,0,0,3 Body Problem,TV Show,"Sci-Fi, Mystery",TV-MA,2024,1,58,7.6,84,Scientists confront a cosmic threat from first contact.,Sci-Fi,1,short,101.2,Taylor,45-54,Mystery,Romance,medium,weekends,novelty seeker,9,laptop
U058,T018,2025-09-28,3.3,92,friend recommendation,0,1,One Piece,TV Show,"Adventure, Fantasy",TV-14,2023,1,55,8.4,90,Pirates hunt treasure in a live-action adaptation.,Adventure,1,short,111.0,Taylor,45-54,Mystery,Romance,medium,weekends,novelty seeker,9,laptop
U058,T003,2025-02-09,4.0,68,email click,1,0,Money Heist,TV Show,"Crime, Thriller",TV-MA,2017,5,50,8.2,91,A criminal mastermind executes an ambitious heist.,Crime,0,short,109.3,Taylor,45-54,Mystery,Romance,medium,weekends,novelty seeker,9,laptop
U058,T036,2025-02-27,4.6,79,browse row,1,0,The Gray Man,Movie,"Action, Thriller",PG-13,2022,1,122,6.5,71,A CIA asset becomes the target of a global manhunt.,Action,1,medium,86.3,Taylor,45-54,Mystery,Romance,medium,weekends,novelty seeker,9,laptop
U058,T002,2026-03-01,3.1,83,email click,0,0,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Taylor,45-54,Mystery,Romance,medium,weekends,novelty seeker,9,laptop
U058,T006,2025-09-16,5.0,86,search,1,1,Bridgerton,TV Show,"Romance, Drama",TV-MA,2020,3,60,7.4,84,Love and scandal shape the London social season.,Romance,1,short,99.2,Taylor,45-54,Mystery,Romance,medium,weekends,novelty seeker,9,laptop
U059,T037,2025-10-02,4.3,50,search,1,0,To All the Boys I've Loved Before,Movie,"Romance, Comedy",PG-13,2018,1,99,7.0,76,Secret love letters create romantic chaos.,Romance,0,medium,92.8,Taylor,35-44,Comedy,Crime,medium,mixed,comfort rewatcher,6,mobile
U059,T013,2025-03-26,3.4,80,friend recommendation,0,0,Black Mirror,TV Show,"Sci-Fi, Thriller",TV-MA,2011,6,60,8.7,76,Dark anthology tales explore technology's consequences.,Sci-Fi,0,short,109.8,Taylor,35-44,Comedy,Crime,medium,mixed,comfort rewatcher,6,mobile
U059,T010,2025-09-24,3.9,100,homepage banner,0,1,Emily in Paris,TV Show,"Comedy, Romance",TV-MA,2020,4,30,6.9,72,A marketer explores work and romance in Paris.,Comedy,1,short,90.6,Taylor,35-44,Comedy,Crime,medium,mixed,comfort rewatcher,6,mobile
U059,T031,2025-03-01,2.6,64,search,0,0,Roma,Movie,Drama,R,2018,1,135,7.7,63,A domestic worker supports a family in 1970s Mexico City.,Drama,0,long,95.9,Taylor,35-44,Comedy,Crime,medium,mixed,comfort rewatcher,6,mobile
U059,T045,2026-01-03,5.0,82,email click,1,0,Murder Mystery,Movie,"Comedy, Mystery",PG-13,2019,1,97,6.0,81,A couple becomes entangled in a murder case on a yacht.,Comedy,0,medium,84.3,Taylor,35-44,Comedy,Crime,medium,mixed,comfort rewatcher,6,mobile
U059,T056,2025-09-08,2.7,69,browse row,0,0,Damsel,Movie,"Fantasy, Adventure",PG-13,2024,1,109,6.1,89,A princess fights to survive a dragon-filled cave.,Fantasy,1,medium,87.7,Taylor,35-44,Comedy,Crime,medium,mixed,comfort rewatcher,6,mobile
U059,T040,2025-09-19,3.5,83,homepage banner,0,0,Guillermo del Toro's Pinocchio,Movie,"Animation, Fantasy",PG,2022,1,117,7.6,66,A wooden boy comes to life in wartime Italy.,Animation,1,medium,95.8,Taylor,35-44,Comedy,Crime,medium,mixed,comfort rewatcher,6,mobile
U059,T059,2026-02-19,3.2,69,browse row,0,0,Anyone But You,Movie,"Romance, Comedy",R,2023,1,103,6.4,77,A fake-couple wedding trip reignites sparks.,Romance,1,medium,87.1,Taylor,35-44,Comedy,Crime,medium,mixed,comfort rewatcher,6,mobile
U059,T025,2025-08-21,3.6,79,search,0,0,Friends,TV Show,"Comedy, Romance",TV-14,1994,10,22,8.9,92,Six friends face life and love in New York.,Comedy,0,short,116.6,Taylor,35-44,Comedy,Crime,medium,mixed,comfort rewatcher,6,mobile
U059,T012,2025-09-20,3.9,90,homepage banner,0,1,Ozark,TV Show,"Crime, Drama",TV-MA,2017,4,60,8.5,77,A family launders money for a dangerous cartel.,Crime,0,short,108.1,Taylor,35-44,Comedy,Crime,medium,mixed,comfort rewatcher,6,mobile
U059,T039,2025-08-22,1.9,79,email click,0,0,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Taylor,35-44,Comedy,Crime,medium,mixed,comfort rewatcher,6,mobile
U059,T002,2025-01-30,3.2,97,email click,0,1,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Taylor,35-44,Comedy,Crime,medium,mixed,comfort rewatcher,6,mobile
U059,T011,2025-08-25,3.9,100,friend recommendation,0,1,Lupin,TV Show,"Crime, Mystery",TV-14,2021,3,44,7.5,85,A gentleman thief seeks revenge using deception.,Crime,1,short,100.5,Taylor,35-44,Comedy,Crime,medium,mixed,comfort rewatcher,6,mobile
U059,T006,2026-01-06,3.3,98,browse row,0,1,Bridgerton,TV Show,"Romance, Drama",TV-MA,2020,3,60,7.4,84,Love and scandal shape the London social season.,Romance,1,short,99.2,Taylor,35-44,Comedy,Crime,medium,mixed,comfort rewatcher,6,mobile
U059,T020,2025-07-22,4.3,86,friend recommendation,1,1,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Taylor,35-44,Comedy,Crime,medium,mixed,comfort rewatcher,6,mobile
U059,T021,2026-02-23,5.0,100,browse row,1,1,Breaking Bad,TV Show,"Crime, Drama",TV-MA,2008,5,47,9.5,99,A chemistry teacher turns to meth production.,Crime,0,short,124.7,Taylor,35-44,Comedy,Crime,medium,mixed,comfort rewatcher,6,mobile
U059,T047,2026-01-17,4.3,68,search,1,0,The Mitchells vs. the Machines,Movie,"Animation, Comedy",PG,2021,1,113,7.6,74,A quirky family saves the world from a robot uprising.,Animation,1,medium,98.2,Taylor,35-44,Comedy,Crime,medium,mixed,comfort rewatcher,6,mobile
U060,T030,2025-02-07,3.3,74,browse row,0,0,Glass Onion,Movie,"Mystery, Comedy",PG-13,2022,1,139,7.1,85,A detective untangles a billionaire's island murder game.,Mystery,1,long,96.5,Quinn,25-34,Sci-Fi,Comedy,short,weeknights,balanced explorer,3,tv
U060,T060,2025-08-05,2.9,72,friend recommendation,0,0,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Quinn,25-34,Sci-Fi,Comedy,short,weeknights,balanced explorer,3,tv
U060,T027,2025-12-25,3.0,59,browse row,0,0,The Irishman,Movie,"Crime, Drama",R,2019,1,209,7.8,70,An aging hitman reflects on loyalty and regret.,Crime,0,long,99.0,Quinn,25-34,Sci-Fi,Comedy,short,weeknights,balanced explorer,3,tv
U060,T043,2025-10-05,2.6,51,browse row,0,0,Army of the Dead,Movie,"Action, Horror",R,2021,1,148,5.7,58,Mercenaries enter zombie-infested Las Vegas for a heist.,Action,1,long,74.4,Quinn,25-34,Sci-Fi,Comedy,short,weeknights,balanced explorer,3,tv
U060,T044,2025-02-05,4.6,59,homepage banner,1,0,Project Power,Movie,"Action, Sci-Fi",R,2020,1,113,6.0,64,A pill that grants powers sparks chaos in New Orleans.,Action,1,medium,79.2,Quinn,25-34,Sci-Fi,Comedy,short,weeknights,balanced explorer,3,tv
U060,T018,2025-01-17,4.0,100,friend recommendation,1,1,One Piece,TV Show,"Adventure, Fantasy",TV-14,2023,1,55,8.4,90,Pirates hunt treasure in a live-action adaptation.,Adventure,1,short,111.0,Quinn,25-34,Sci-Fi,Comedy,short,weeknights,balanced explorer,3,tv
U060,T001,2025-07-29,4.1,46,search,1,0,Stranger Things,TV Show,"Sci-Fi, Drama",TV-14,2016,4,51,8.7,95,Supernatural mysteries unfold in a small town.,Sci-Fi,0,short,115.5,Quinn,25-34,Sci-Fi,Comedy,short,weeknights,balanced explorer,3,tv
U060,T002,2026-01-29,3.1,75,search,0,0,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Quinn,25-34,Sci-Fi,Comedy,short,weeknights,balanced explorer,3,tv
U060,T050,2026-01-28,2.7,64,homepage banner,0,0,Baby Reindeer,TV Show,"Drama, Thriller",TV-MA,2024,1,33,8.3,86,A comedian faces a stalking nightmare.,Drama,1,short,108.8,Quinn,25-34,Sci-Fi,Comedy,short,weeknights,balanced explorer,3,tv
U060,T011,2025-07-11,4.2,96,homepage banner,1,1,Lupin,TV Show,"Crime, Mystery",TV-14,2021,3,44,7.5,85,A gentleman thief seeks revenge using deception.,Crime,1,short,100.5,Quinn,25-34,Sci-Fi,Comedy,short,weeknights,balanced explorer,3,tv
U060,T048,2025-08-18,2.7,48,homepage banner,0,0,Klaus,Movie,"Animation, Family",PG,2019,1,96,8.2,69,A postman and a toymaker spark a holiday tradition.,Animation,0,medium,102.7,Quinn,25-34,Sci-Fi,Comedy,short,weeknights,balanced explorer,3,tv
U060,T017,2025-07-12,3.1,72,browse row,0,0,The Night Agent,TV Show,"Action, Thriller",TV-MA,2023,1,45,7.5,83,An FBI agent uncovers a conspiracy from a late-night call.,Action,1,short,99.9,Quinn,25-34,Sci-Fi,Comedy,short,weeknights,balanced explorer,3,tv
U060,T054,2025-12-16,4.2,78,email click,1,0,Beef,TV Show,"Comedy, Drama",TV-MA,2023,1,35,8.0,73,A road-rage incident spirals into obsession.,Comedy,1,short,101.9,Quinn,25-34,Sci-Fi,Comedy,short,weeknights,balanced explorer,3,tv
U060,T036,2025-03-10,3.3,100,friend recommendation,0,1,The Gray Man,Movie,"Action, Thriller",PG-13,2022,1,122,6.5,71,A CIA asset becomes the target of a global manhunt.,Action,1,medium,86.3,Quinn,25-34,Sci-Fi,Comedy,short,weeknights,balanced explorer,3,tv
U060,T014,2025-03-02,4.4,88,search,1,1,Cobra Kai,TV Show,"Comedy, Action",TV-14,2018,6,34,8.4,75,Old karate rivals reignite decades later.,Comedy,0,short,106.5,Quinn,25-34,Sci-Fi,Comedy,short,weeknights,balanced explorer,3,tv
U060,T038,2025-10-03,2.9,68,homepage banner,0,0,The Old Guard,Movie,"Action, Fantasy",R,2020,1,125,6.7,67,Immortal mercenaries fight to protect their secret.,Action,1,medium,87.1,Quinn,25-34,Sci-Fi,Comedy,short,weeknights,balanced explorer,3,tv
U060,T061,2025-09-28,4.6,81,search,1,0,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Quinn,25-34,Sci-Fi,Comedy,short,weeknights,balanced explorer,3,tv
U061,T010,2026-03-04,2.2,72,browse row,0,0,Emily in Paris,TV Show,"Comedy, Romance",TV-MA,2020,4,30,6.9,72,A marketer explores work and romance in Paris.,Comedy,1,short,90.6,Morgan,45-54,Action,Sci-Fi,long,mixed,balanced explorer,5,mobile
U061,T017,2026-01-23,4.7,82,browse row,1,0,The Night Agent,TV Show,"Action, Thriller",TV-MA,2023,1,45,7.5,83,An FBI agent uncovers a conspiracy from a late-night call.,Action,1,short,99.9,Morgan,45-54,Action,Sci-Fi,long,mixed,balanced explorer,5,mobile
U061,T004,2025-06-02,2.0,71,homepage banner,0,0,The Queen's Gambit,TV Show,Drama,TV-MA,2020,1,56,8.5,89,A chess prodigy battles addiction and fame.,Drama,1,short,111.7,Morgan,45-54,Action,Sci-Fi,long,mixed,balanced explorer,5,mobile
U061,T015,2025-12-11,3.4,100,email click,0,1,Heartstopper,TV Show,"Romance, Teen",TV-14,2022,2,31,8.5,87,"Two students navigate identity, friendship, and love.",Romance,1,short,111.1,Morgan,45-54,Action,Sci-Fi,long,mixed,balanced explorer,5,mobile
U061,T020,2025-08-06,3.4,91,email click,0,1,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Morgan,45-54,Action,Sci-Fi,long,mixed,balanced explorer,5,mobile
U061,T005,2025-07-14,2.8,100,search,0,1,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Morgan,45-54,Action,Sci-Fi,long,mixed,balanced explorer,5,mobile
U061,T055,2025-05-07,3.8,73,homepage banner,0,0,Blue Eye Samurai,TV Show,"Animation, Action",TV-MA,2023,1,45,8.7,70,A swordswoman seeks revenge in Edo-period Japan.,Animation,1,short,108.0,Morgan,45-54,Action,Sci-Fi,long,mixed,balanced explorer,5,mobile
U061,T040,2025-06-27,4.1,63,search,1,0,Guillermo del Toro's Pinocchio,Movie,"Animation, Fantasy",PG,2022,1,117,7.6,66,A wooden boy comes to life in wartime Italy.,Animation,1,medium,95.8,Morgan,45-54,Action,Sci-Fi,long,mixed,balanced explorer,5,mobile
U061,T021,2025-05-22,1.9,65,search,0,0,Breaking Bad,TV Show,"Crime, Drama",TV-MA,2008,5,47,9.5,99,A chemistry teacher turns to meth production.,Crime,0,short,124.7,Morgan,45-54,Action,Sci-Fi,long,mixed,balanced explorer,5,mobile
U061,T002,2026-01-07,3.0,71,browse row,0,0,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Morgan,45-54,Action,Sci-Fi,long,mixed,balanced explorer,5,mobile
U061,T031,2025-01-17,3.9,70,homepage banner,0,0,Roma,Movie,Drama,R,2018,1,135,7.7,63,A domestic worker supports a family in 1970s Mexico City.,Drama,0,long,95.9,Morgan,45-54,Action,Sci-Fi,long,mixed,balanced explorer,5,mobile
U062,T032,2026-01-28,4.0,80,browse row,1,0,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Avery,25-34,Drama,Crime,medium,weeknights,novelty seeker,9,mobile
U062,T017,2025-05-04,2.7,56,search,0,0,The Night Agent,TV Show,"Action, Thriller",TV-MA,2023,1,45,7.5,83,An FBI agent uncovers a conspiracy from a late-night call.,Action,1,short,99.9,Avery,25-34,Drama,Crime,medium,weeknights,novelty seeker,9,mobile
U062,T056,2025-02-04,2.9,55,browse row,0,0,Damsel,Movie,"Fantasy, Adventure",PG-13,2024,1,109,6.1,89,A princess fights to survive a dragon-filled cave.,Fantasy,1,medium,87.7,Avery,25-34,Drama,Crime,medium,weeknights,novelty seeker,9,mobile
U062,T026,2025-11-01,4.1,93,browse row,1,1,Seinfeld,TV Show,Comedy,TV-14,1989,9,23,8.9,81,A comedian and friends obsess over daily trivialities.,Comedy,0,short,113.3,Avery,25-34,Drama,Crime,medium,weeknights,novelty seeker,9,mobile
U062,T005,2025-08-17,4.0,93,email click,1,1,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Avery,25-34,Drama,Crime,medium,weeknights,novelty seeker,9,mobile
U062,T027,2025-12-11,4.6,92,browse row,1,1,The Irishman,Movie,"Crime, Drama",R,2019,1,209,7.8,70,An aging hitman reflects on loyalty and regret.,Crime,0,long,99.0,Avery,25-34,Drama,Crime,medium,weeknights,novelty seeker,9,mobile
U062,T059,2025-05-06,3.2,72,browse row,0,0,Anyone But You,Movie,"Romance, Comedy",R,2023,1,103,6.4,77,A fake-couple wedding trip reignites sparks.,Romance,1,medium,87.1,Avery,25-34,Drama,Crime,medium,weeknights,novelty seeker,9,mobile
U062,T020,2025-07-25,3.2,93,homepage banner,0,1,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Avery,25-34,Drama,Crime,medium,weeknights,novelty seeker,9,mobile
U062,T004,2025-04-30,2.9,58,email click,0,0,The Queen's Gambit,TV Show,Drama,TV-MA,2020,1,56,8.5,89,A chess prodigy battles addiction and fame.,Drama,1,short,111.7,Avery,25-34,Drama,Crime,medium,weeknights,novelty seeker,9,mobile
U062,T015,2025-04-22,4.6,93,browse row,1,1,Heartstopper,TV Show,"Romance, Teen",TV-14,2022,2,31,8.5,87,"Two students navigate identity, friendship, and love.",Romance,1,short,111.1,Avery,25-34,Drama,Crime,medium,weeknights,novelty seeker,9,mobile
U062,T044,2025-03-13,3.1,85,email click,0,1,Project Power,Movie,"Action, Sci-Fi",R,2020,1,113,6.0,64,A pill that grants powers sparks chaos in New Orleans.,Action,1,medium,79.2,Avery,25-34,Drama,Crime,medium,weeknights,novelty seeker,9,mobile
U062,T028,2025-05-29,3.1,55,search,0,0,Marriage Story,Movie,Drama,R,2019,1,137,7.9,68,A couple navigates a painful divorce.,Drama,0,long,99.4,Avery,25-34,Drama,Crime,medium,weeknights,novelty seeker,9,mobile
U062,T007,2026-02-22,2.7,58,email click,0,0,The Witcher,TV Show,"Fantasy, Action",TV-MA,2019,3,57,8.0,86,A monster hunter navigates destiny and politics.,Fantasy,0,short,105.8,Avery,25-34,Drama,Crime,medium,weeknights,novelty seeker,9,mobile
U062,T060,2025-06-13,4.4,96,email click,1,1,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Avery,25-34,Drama,Crime,medium,weeknights,novelty seeker,9,mobile
U062,T030,2025-11-03,4.2,99,friend recommendation,1,1,Glass Onion,Movie,"Mystery, Comedy",PG-13,2022,1,139,7.1,85,A detective untangles a billionaire's island murder game.,Mystery,1,long,96.5,Avery,25-34,Drama,Crime,medium,weeknights,novelty seeker,9,mobile
U062,T048,2025-05-02,2.4,63,friend recommendation,0,0,Klaus,Movie,"Animation, Family",PG,2019,1,96,8.2,69,A postman and a toymaker spark a holiday tradition.,Animation,0,medium,102.7,Avery,25-34,Drama,Crime,medium,weeknights,novelty seeker,9,mobile
U062,T021,2025-03-15,4.2,71,email click,1,0,Breaking Bad,TV Show,"Crime, Drama",TV-MA,2008,5,47,9.5,99,A chemistry teacher turns to meth production.,Crime,0,short,124.7,Avery,25-34,Drama,Crime,medium,weeknights,novelty seeker,9,mobile
U063,T045,2025-07-31,2.8,75,friend recommendation,0,0,Murder Mystery,Movie,"Comedy, Mystery",PG-13,2019,1,97,6.0,81,A couple becomes entangled in a murder case on a yacht.,Comedy,0,medium,84.3,Parker,25-34,Animation,Sci-Fi,short,weekends,balanced explorer,7,tv
U063,T001,2025-05-21,4.7,100,browse row,1,1,Stranger Things,TV Show,"Sci-Fi, Drama",TV-14,2016,4,51,8.7,95,Supernatural mysteries unfold in a small town.,Sci-Fi,0,short,115.5,Parker,25-34,Animation,Sci-Fi,short,weekends,balanced explorer,7,tv
U063,T031,2025-10-13,2.2,82,email click,0,0,Roma,Movie,Drama,R,2018,1,135,7.7,63,A domestic worker supports a family in 1970s Mexico City.,Drama,0,long,95.9,Parker,25-34,Animation,Sci-Fi,short,weekends,balanced explorer,7,tv
U063,T037,2026-01-12,3.3,77,search,0,0,To All the Boys I've Loved Before,Movie,"Romance, Comedy",PG-13,2018,1,99,7.0,76,Secret love letters create romantic chaos.,Romance,0,medium,92.8,Parker,25-34,Animation,Sci-Fi,short,weekends,balanced explorer,7,tv
U063,T009,2025-11-17,3.6,73,homepage banner,0,0,Narcos,TV Show,"Crime, Drama",TV-MA,2015,3,49,8.7,78,The rise of Pablo Escobar and the drug wars.,Crime,0,short,110.4,Parker,25-34,Animation,Sci-Fi,short,weekends,balanced explorer,7,tv
U063,T020,2025-10-12,4.0,100,homepage banner,1,1,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Parker,25-34,Animation,Sci-Fi,short,weekends,balanced explorer,7,tv
U063,T012,2025-01-25,4.2,59,friend recommendation,1,0,Ozark,TV Show,"Crime, Drama",TV-MA,2017,4,60,8.5,77,A family launders money for a dangerous cartel.,Crime,0,short,108.1,Parker,25-34,Animation,Sci-Fi,short,weekends,balanced explorer,7,tv
U063,T032,2025-11-26,3.5,50,homepage banner,0,0,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Parker,25-34,Animation,Sci-Fi,short,weekends,balanced explorer,7,tv
U063,T039,2026-02-07,2.5,35,email click,0,0,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Parker,25-34,Animation,Sci-Fi,short,weekends,balanced explorer,7,tv
U063,T052,2025-06-13,4.2,90,homepage banner,1,1,3 Body Problem,TV Show,"Sci-Fi, Mystery",TV-MA,2024,1,58,7.6,84,Scientists confront a cosmic threat from first contact.,Sci-Fi,1,short,101.2,Parker,25-34,Animation,Sci-Fi,short,weekends,balanced explorer,7,tv
U063,T061,2025-07-29,3.0,63,search,0,0,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Parker,25-34,Animation,Sci-Fi,short,weekends,balanced explorer,7,tv
U064,T020,2025-07-12,3.0,75,search,0,0,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Cameron,45-54,Mystery,Animation,medium,mixed,comfort rewatcher,9,tv
U064,T012,2026-01-22,2.9,83,email click,0,0,Ozark,TV Show,"Crime, Drama",TV-MA,2017,4,60,8.5,77,A family launders money for a dangerous cartel.,Crime,0,short,108.1,Cameron,45-54,Mystery,Animation,medium,mixed,comfort rewatcher,9,tv
U064,T009,2025-08-31,2.2,60,search,0,0,Narcos,TV Show,"Crime, Drama",TV-MA,2015,3,49,8.7,78,The rise of Pablo Escobar and the drug wars.,Crime,0,short,110.4,Cameron,45-54,Mystery,Animation,medium,mixed,comfort rewatcher,9,tv
U064,T042,2025-04-26,3.3,88,friend recommendation,0,1,Leave the World Behind,Movie,"Thriller, Drama",R,2023,1,141,6.4,82,A family vacation turns ominous during a blackout.,Thriller,1,long,88.6,Cameron,45-54,Mystery,Animation,medium,mixed,comfort rewatcher,9,tv
U064,T028,2025-12-29,3.1,71,search,0,0,Marriage Story,Movie,Drama,R,2019,1,137,7.9,68,A couple navigates a painful divorce.,Drama,0,long,99.4,Cameron,45-54,Mystery,Animation,medium,mixed,comfort rewatcher,9,tv
U064,T016,2026-02-17,2.9,85,homepage banner,0,1,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Cameron,45-54,Mystery,Animation,medium,mixed,comfort rewatcher,9,tv
U064,T004,2025-01-30,3.0,59,email click,0,0,The Queen's Gambit,TV Show,Drama,TV-MA,2020,1,56,8.5,89,A chess prodigy battles addiction and fame.,Drama,1,short,111.7,Cameron,45-54,Mystery,Animation,medium,mixed,comfort rewatcher,9,tv
U064,T035,2025-07-31,2.3,45,homepage banner,0,0,The Adam Project,Movie,"Sci-Fi, Adventure",PG-13,2022,1,106,6.7,73,A time-traveling pilot teams up with his younger self.,Sci-Fi,1,medium,88.9,Cameron,45-54,Mystery,Animation,medium,mixed,comfort rewatcher,9,tv
U064,T051,2025-10-13,3.9,96,email click,0,1,Ripley,TV Show,"Thriller, Drama",TV-MA,2024,1,55,8.1,67,"A grifter is drawn into wealth, deception, and murder.",Thriller,1,short,101.1,Cameron,45-54,Mystery,Animation,medium,mixed,comfort rewatcher,9,tv
U064,T031,2025-03-10,2.9,67,homepage banner,0,0,Roma,Movie,Drama,R,2018,1,135,7.7,63,A domestic worker supports a family in 1970s Mexico City.,Drama,0,long,95.9,Cameron,45-54,Mystery,Animation,medium,mixed,comfort rewatcher,9,tv
U064,T037,2025-05-05,2.7,88,friend recommendation,0,1,To All the Boys I've Loved Before,Movie,"Romance, Comedy",PG-13,2018,1,99,7.0,76,Secret love letters create romantic chaos.,Romance,0,medium,92.8,Cameron,45-54,Mystery,Animation,medium,mixed,comfort rewatcher,9,tv
U064,T011,2025-04-15,5.0,85,friend recommendation,1,1,Lupin,TV Show,"Crime, Mystery",TV-14,2021,3,44,7.5,85,A gentleman thief seeks revenge using deception.,Crime,1,short,100.5,Cameron,45-54,Mystery,Animation,medium,mixed,comfort rewatcher,9,tv
U065,T013,2025-02-10,4.5,70,homepage banner,1,0,Black Mirror,TV Show,"Sci-Fi, Thriller",TV-MA,2011,6,60,8.7,76,Dark anthology tales explore technology's consequences.,Sci-Fi,0,short,109.8,Taylor,45-54,Thriller,Sci-Fi,long,weekends,novelty seeker,6,tv
U065,T056,2025-07-09,3.0,81,browse row,0,0,Damsel,Movie,"Fantasy, Adventure",PG-13,2024,1,109,6.1,89,A princess fights to survive a dragon-filled cave.,Fantasy,1,medium,87.7,Taylor,45-54,Thriller,Sci-Fi,long,weekends,novelty seeker,6,tv
U065,T005,2025-10-02,2.9,35,search,0,0,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Taylor,45-54,Thriller,Sci-Fi,long,weekends,novelty seeker,6,tv
U065,T048,2025-01-27,2.8,69,friend recommendation,0,0,Klaus,Movie,"Animation, Family",PG,2019,1,96,8.2,69,A postman and a toymaker spark a holiday tradition.,Animation,0,medium,102.7,Taylor,45-54,Thriller,Sci-Fi,long,weekends,novelty seeker,6,tv
U065,T046,2025-07-13,3.4,97,email click,0,1,Red Notice,Movie,"Action, Comedy",PG-13,2021,1,118,6.3,92,An FBI profiler chases two rival art thieves.,Action,1,medium,90.6,Taylor,45-54,Thriller,Sci-Fi,long,weekends,novelty seeker,6,tv
U065,T053,2025-11-05,3.4,82,browse row,0,0,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Taylor,45-54,Thriller,Sci-Fi,long,weekends,novelty seeker,6,tv
U065,T036,2025-02-07,5.0,95,search,1,1,The Gray Man,Movie,"Action, Thriller",PG-13,2022,1,122,6.5,71,A CIA asset becomes the target of a global manhunt.,Action,1,medium,86.3,Taylor,45-54,Thriller,Sci-Fi,long,weekends,novelty seeker,6,tv
U065,T049,2026-02-16,4.7,73,email click,1,0,Maestro in Blue,TV Show,"Drama, Romance",TV-MA,2022,1,50,7.8,59,A musician becomes entangled in island secrets.,Drama,1,short,95.7,Taylor,45-54,Thriller,Sci-Fi,long,weekends,novelty seeker,6,tv
U065,T031,2026-01-06,2.7,81,email click,0,0,Roma,Movie,Drama,R,2018,1,135,7.7,63,A domestic worker supports a family in 1970s Mexico City.,Drama,0,long,95.9,Taylor,45-54,Thriller,Sci-Fi,long,weekends,novelty seeker,6,tv
U065,T025,2025-04-22,3.8,79,homepage banner,0,0,Friends,TV Show,"Comedy, Romance",TV-14,1994,10,22,8.9,92,Six friends face life and love in New York.,Comedy,0,short,116.6,Taylor,45-54,Thriller,Sci-Fi,long,weekends,novelty seeker,6,tv
U065,T039,2025-04-17,2.8,99,friend recommendation,0,1,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Taylor,45-54,Thriller,Sci-Fi,long,weekends,novelty seeker,6,tv
U065,T057,2025-06-05,3.8,88,browse row,0,1,Rebel Moon,Movie,"Sci-Fi, Action",PG-13,2023,1,134,5.6,87,A former soldier gathers warriors to fight an empire.,Sci-Fi,1,long,82.1,Taylor,45-54,Thriller,Sci-Fi,long,weekends,novelty seeker,6,tv
U065,T016,2025-04-19,4.8,86,search,1,1,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Taylor,45-54,Thriller,Sci-Fi,long,weekends,novelty seeker,6,tv
U065,T038,2026-01-15,2.6,62,browse row,0,0,The Old Guard,Movie,"Action, Fantasy",R,2020,1,125,6.7,67,Immortal mercenaries fight to protect their secret.,Action,1,medium,87.1,Taylor,45-54,Thriller,Sci-Fi,long,weekends,novelty seeker,6,tv
U065,T041,2026-01-18,4.9,100,homepage banner,1,1,The Killer,Movie,"Thriller, Crime",R,2023,1,118,6.8,60,A meticulous assassin faces unexpected consequences.,Thriller,1,medium,86.0,Taylor,45-54,Thriller,Sci-Fi,long,weekends,novelty seeker,6,tv
U065,T002,2025-05-05,3.0,100,email click,0,1,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Taylor,45-54,Thriller,Sci-Fi,long,weekends,novelty seeker,6,tv
U065,T010,2025-12-27,3.0,94,search,0,1,Emily in Paris,TV Show,"Comedy, Romance",TV-MA,2020,4,30,6.9,72,A marketer explores work and romance in Paris.,Comedy,1,short,90.6,Taylor,45-54,Thriller,Sci-Fi,long,weekends,novelty seeker,6,tv
U065,T037,2025-07-23,2.7,100,search,0,1,To All the Boys I've Loved Before,Movie,"Romance, Comedy",PG-13,2018,1,99,7.0,76,Secret love letters create romantic chaos.,Romance,0,medium,92.8,Taylor,45-54,Thriller,Sci-Fi,long,weekends,novelty seeker,6,tv
U066,T038,2025-06-14,2.8,70,friend recommendation,0,0,The Old Guard,Movie,"Action, Fantasy",R,2020,1,125,6.7,67,Immortal mercenaries fight to protect their secret.,Action,1,medium,87.1,Avery,35-44,Crime,Thriller,short,weekends,balanced explorer,3,mobile
U066,T008,2025-07-14,2.5,78,homepage banner,0,0,Dark,TV Show,"Sci-Fi, Mystery",TV-MA,2017,3,52,8.7,80,Time-travel secrets emerge in a German town.,Sci-Fi,0,short,111.0,Avery,35-44,Crime,Thriller,short,weekends,balanced explorer,3,mobile
U066,T048,2025-10-01,2.9,71,friend recommendation,0,0,Klaus,Movie,"Animation, Family",PG,2019,1,96,8.2,69,A postman and a toymaker spark a holiday tradition.,Animation,0,medium,102.7,Avery,35-44,Crime,Thriller,short,weekends,balanced explorer,3,mobile
U066,T022,2025-06-07,4.0,73,friend recommendation,1,0,Better Call Saul,TV Show,"Crime, Drama",TV-MA,2015,6,46,9.0,96,The morally flexible lawyer begins his transformation.,Crime,0,short,118.8,Avery,35-44,Crime,Thriller,short,weekends,balanced explorer,3,mobile
U066,T046,2025-07-04,3.0,71,email click,0,0,Red Notice,Movie,"Action, Comedy",PG-13,2021,1,118,6.3,92,An FBI profiler chases two rival art thieves.,Action,1,medium,90.6,Avery,35-44,Crime,Thriller,short,weekends,balanced explorer,3,mobile
U066,T027,2025-09-12,3.8,72,homepage banner,0,0,The Irishman,Movie,"Crime, Drama",R,2019,1,209,7.8,70,An aging hitman reflects on loyalty and regret.,Crime,0,long,99.0,Avery,35-44,Crime,Thriller,short,weekends,balanced explorer,3,mobile
U066,T005,2025-02-20,3.5,100,homepage banner,0,1,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Avery,35-44,Crime,Thriller,short,weekends,balanced explorer,3,mobile
U066,T036,2026-01-25,3.7,96,friend recommendation,0,1,The Gray Man,Movie,"Action, Thriller",PG-13,2022,1,122,6.5,71,A CIA asset becomes the target of a global manhunt.,Action,1,medium,86.3,Avery,35-44,Crime,Thriller,short,weekends,balanced explorer,3,mobile
U066,T045,2025-04-15,2.5,72,friend recommendation,0,0,Murder Mystery,Movie,"Comedy, Mystery",PG-13,2019,1,97,6.0,81,A couple becomes entangled in a murder case on a yacht.,Comedy,0,medium,84.3,Avery,35-44,Crime,Thriller,short,weekends,balanced explorer,3,mobile
U066,T039,2025-06-10,2.3,45,homepage banner,0,0,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Avery,35-44,Crime,Thriller,short,weekends,balanced explorer,3,mobile
U066,T013,2025-01-24,3.5,97,email click,0,1,Black Mirror,TV Show,"Sci-Fi, Thriller",TV-MA,2011,6,60,8.7,76,Dark anthology tales explore technology's consequences.,Sci-Fi,0,short,109.8,Avery,35-44,Crime,Thriller,short,weekends,balanced explorer,3,mobile
U066,T050,2025-04-24,4.5,93,search,1,1,Baby Reindeer,TV Show,"Drama, Thriller",TV-MA,2024,1,33,8.3,86,A comedian faces a stalking nightmare.,Drama,1,short,108.8,Avery,35-44,Crime,Thriller,short,weekends,balanced explorer,3,mobile
U066,T002,2025-01-09,2.4,66,friend recommendation,0,0,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Avery,35-44,Crime,Thriller,short,weekends,balanced explorer,3,mobile
U066,T011,2025-10-11,4.5,92,email click,1,1,Lupin,TV Show,"Crime, Mystery",TV-14,2021,3,44,7.5,85,A gentleman thief seeks revenge using deception.,Crime,1,short,100.5,Avery,35-44,Crime,Thriller,short,weekends,balanced explorer,3,mobile
U066,T040,2025-10-24,1.9,50,homepage banner,0,0,Guillermo del Toro's Pinocchio,Movie,"Animation, Fantasy",PG,2022,1,117,7.6,66,A wooden boy comes to life in wartime Italy.,Animation,1,medium,95.8,Avery,35-44,Crime,Thriller,short,weekends,balanced explorer,3,mobile
U066,T020,2025-06-01,3.3,86,search,0,1,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Avery,35-44,Crime,Thriller,short,weekends,balanced explorer,3,mobile
U067,T027,2025-06-18,3.6,87,search,0,1,The Irishman,Movie,"Crime, Drama",R,2019,1,209,7.8,70,An aging hitman reflects on loyalty and regret.,Crime,0,long,99.0,Taylor,25-34,Comedy,Sci-Fi,medium,mixed,novelty seeker,3,tv
U067,T056,2025-07-14,2.7,74,email click,0,0,Damsel,Movie,"Fantasy, Adventure",PG-13,2024,1,109,6.1,89,A princess fights to survive a dragon-filled cave.,Fantasy,1,medium,87.7,Taylor,25-34,Comedy,Sci-Fi,medium,mixed,novelty seeker,3,tv
U067,T005,2026-03-03,3.8,100,search,0,1,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Taylor,25-34,Comedy,Sci-Fi,medium,mixed,novelty seeker,3,tv
U067,T055,2025-09-13,3.9,95,email click,0,1,Blue Eye Samurai,TV Show,"Animation, Action",TV-MA,2023,1,45,8.7,70,A swordswoman seeks revenge in Edo-period Japan.,Animation,1,short,108.0,Taylor,25-34,Comedy,Sci-Fi,medium,mixed,novelty seeker,3,tv
U067,T023,2025-12-02,3.0,80,friend recommendation,0,0,Peaky Blinders,TV Show,"Crime, History",TV-MA,2013,6,58,8.8,83,A Birmingham gang rises after World War I.,Crime,0,short,112.9,Taylor,25-34,Comedy,Sci-Fi,medium,mixed,novelty seeker,3,tv
U067,T018,2025-05-12,4.1,66,homepage banner,1,0,One Piece,TV Show,"Adventure, Fantasy",TV-14,2023,1,55,8.4,90,Pirates hunt treasure in a live-action adaptation.,Adventure,1,short,111.0,Taylor,25-34,Comedy,Sci-Fi,medium,mixed,novelty seeker,3,tv
U067,T034,2026-01-06,2.8,61,homepage banner,0,0,Enola Holmes,Movie,"Mystery, Adventure",PG-13,2020,1,123,6.6,78,Sherlock's sister searches for her missing mother.,Mystery,1,medium,89.4,Taylor,25-34,Comedy,Sci-Fi,medium,mixed,novelty seeker,3,tv
U067,T032,2025-08-24,5.0,100,search,1,1,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Taylor,25-34,Comedy,Sci-Fi,medium,mixed,novelty seeker,3,tv
U067,T047,2026-01-11,4.0,49,friend recommendation,1,0,The Mitchells vs. the Machines,Movie,"Animation, Comedy",PG,2021,1,113,7.6,74,A quirky family saves the world from a robot uprising.,Animation,1,medium,98.2,Taylor,25-34,Comedy,Sci-Fi,medium,mixed,novelty seeker,3,tv
U067,T021,2025-03-28,2.8,86,search,0,1,Breaking Bad,TV Show,"Crime, Drama",TV-MA,2008,5,47,9.5,99,A chemistry teacher turns to meth production.,Crime,0,short,124.7,Taylor,25-34,Comedy,Sci-Fi,medium,mixed,novelty seeker,3,tv
U067,T038,2026-01-04,3.3,84,email click,0,0,The Old Guard,Movie,"Action, Fantasy",R,2020,1,125,6.7,67,Immortal mercenaries fight to protect their secret.,Action,1,medium,87.1,Taylor,25-34,Comedy,Sci-Fi,medium,mixed,novelty seeker,3,tv
U068,T028,2025-04-05,2.1,71,email click,0,0,Marriage Story,Movie,Drama,R,2019,1,137,7.9,68,A couple navigates a painful divorce.,Drama,0,long,99.4,Taylor,45-54,Action,Romance,long,weekends,comfort rewatcher,8,tv
U068,T043,2025-11-25,3.5,81,browse row,0,0,Army of the Dead,Movie,"Action, Horror",R,2021,1,148,5.7,58,Mercenaries enter zombie-infested Las Vegas for a heist.,Action,1,long,74.4,Taylor,45-54,Action,Romance,long,weekends,comfort rewatcher,8,tv
U068,T055,2025-09-26,3.7,89,browse row,0,1,Blue Eye Samurai,TV Show,"Animation, Action",TV-MA,2023,1,45,8.7,70,A swordswoman seeks revenge in Edo-period Japan.,Animation,1,short,108.0,Taylor,45-54,Action,Romance,long,weekends,comfort rewatcher,8,tv
U068,T054,2026-03-06,2.9,61,browse row,0,0,Beef,TV Show,"Comedy, Drama",TV-MA,2023,1,35,8.0,73,A road-rage incident spirals into obsession.,Comedy,1,short,101.9,Taylor,45-54,Action,Romance,long,weekends,comfort rewatcher,8,tv
U068,T022,2026-02-23,2.5,98,browse row,0,1,Better Call Saul,TV Show,"Crime, Drama",TV-MA,2015,6,46,9.0,96,The morally flexible lawyer begins his transformation.,Crime,0,short,118.8,Taylor,45-54,Action,Romance,long,weekends,comfort rewatcher,8,tv
U068,T025,2026-01-27,3.9,58,browse row,0,0,Friends,TV Show,"Comedy, Romance",TV-14,1994,10,22,8.9,92,Six friends face life and love in New York.,Comedy,0,short,116.6,Taylor,45-54,Action,Romance,long,weekends,comfort rewatcher,8,tv
U068,T016,2025-07-31,3.3,75,search,0,0,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Taylor,45-54,Action,Romance,long,weekends,comfort rewatcher,8,tv
U068,T030,2025-11-19,3.3,90,search,0,1,Glass Onion,Movie,"Mystery, Comedy",PG-13,2022,1,139,7.1,85,A detective untangles a billionaire's island murder game.,Mystery,1,long,96.5,Taylor,45-54,Action,Romance,long,weekends,comfort rewatcher,8,tv
U068,T041,2025-02-04,3.7,69,search,0,0,The Killer,Movie,"Thriller, Crime",R,2023,1,118,6.8,60,A meticulous assassin faces unexpected consequences.,Thriller,1,medium,86.0,Taylor,45-54,Action,Romance,long,weekends,comfort rewatcher,8,tv
U068,T049,2025-01-05,3.6,72,search,0,0,Maestro in Blue,TV Show,"Drama, Romance",TV-MA,2022,1,50,7.8,59,A musician becomes entangled in island secrets.,Drama,1,short,95.7,Taylor,45-54,Action,Romance,long,weekends,comfort rewatcher,8,tv
U068,T052,2025-09-16,3.4,75,homepage banner,0,0,3 Body Problem,TV Show,"Sci-Fi, Mystery",TV-MA,2024,1,58,7.6,84,Scientists confront a cosmic threat from first contact.,Sci-Fi,1,short,101.2,Taylor,45-54,Action,Romance,long,weekends,comfort rewatcher,8,tv
U068,T020,2025-07-11,3.0,70,browse row,0,0,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Taylor,45-54,Action,Romance,long,weekends,comfort rewatcher,8,tv
U068,T027,2025-11-13,3.2,100,email click,0,1,The Irishman,Movie,"Crime, Drama",R,2019,1,209,7.8,70,An aging hitman reflects on loyalty and regret.,Crime,0,long,99.0,Taylor,45-54,Action,Romance,long,weekends,comfort rewatcher,8,tv
U068,T032,2025-09-05,4.7,97,homepage banner,1,1,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Taylor,45-54,Action,Romance,long,weekends,comfort rewatcher,8,tv
U068,T044,2025-01-09,3.9,60,browse row,0,0,Project Power,Movie,"Action, Sci-Fi",R,2020,1,113,6.0,64,A pill that grants powers sparks chaos in New Orleans.,Action,1,medium,79.2,Taylor,45-54,Action,Romance,long,weekends,comfort rewatcher,8,tv
U069,T006,2025-10-10,3.2,64,homepage banner,0,0,Bridgerton,TV Show,"Romance, Drama",TV-MA,2020,3,60,7.4,84,Love and scandal shape the London social season.,Romance,1,short,99.2,Jamie,45-54,Mystery,Drama,long,weekends,comfort rewatcher,6,tv
U069,T013,2025-01-07,2.4,66,browse row,0,0,Black Mirror,TV Show,"Sci-Fi, Thriller",TV-MA,2011,6,60,8.7,76,Dark anthology tales explore technology's consequences.,Sci-Fi,0,short,109.8,Jamie,45-54,Mystery,Drama,long,weekends,comfort rewatcher,6,tv
U069,T038,2025-09-29,3.1,56,friend recommendation,0,0,The Old Guard,Movie,"Action, Fantasy",R,2020,1,125,6.7,67,Immortal mercenaries fight to protect their secret.,Action,1,medium,87.1,Jamie,45-54,Mystery,Drama,long,weekends,comfort rewatcher,6,tv
U069,T016,2025-10-02,3.0,64,friend recommendation,0,0,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Jamie,45-54,Mystery,Drama,long,weekends,comfort rewatcher,6,tv
U069,T036,2025-01-09,2.4,69,email click,0,0,The Gray Man,Movie,"Action, Thriller",PG-13,2022,1,122,6.5,71,A CIA asset becomes the target of a global manhunt.,Action,1,medium,86.3,Jamie,45-54,Mystery,Drama,long,weekends,comfort rewatcher,6,tv
U069,T045,2026-02-21,4.2,90,homepage banner,1,1,Murder Mystery,Movie,"Comedy, Mystery",PG-13,2019,1,97,6.0,81,A couple becomes entangled in a murder case on a yacht.,Comedy,0,medium,84.3,Jamie,45-54,Mystery,Drama,long,weekends,comfort rewatcher,6,tv
U069,T037,2026-02-17,3.1,100,search,0,1,To All the Boys I've Loved Before,Movie,"Romance, Comedy",PG-13,2018,1,99,7.0,76,Secret love letters create romantic chaos.,Romance,0,medium,92.8,Jamie,45-54,Mystery,Drama,long,weekends,comfort rewatcher,6,tv
U069,T044,2025-02-24,3.3,89,browse row,0,1,Project Power,Movie,"Action, Sci-Fi",R,2020,1,113,6.0,64,A pill that grants powers sparks chaos in New Orleans.,Action,1,medium,79.2,Jamie,45-54,Mystery,Drama,long,weekends,comfort rewatcher,6,tv
U069,T009,2025-09-26,3.4,93,search,0,1,Narcos,TV Show,"Crime, Drama",TV-MA,2015,3,49,8.7,78,The rise of Pablo Escobar and the drug wars.,Crime,0,short,110.4,Jamie,45-54,Mystery,Drama,long,weekends,comfort rewatcher,6,tv
U069,T051,2025-05-04,3.3,84,search,0,0,Ripley,TV Show,"Thriller, Drama",TV-MA,2024,1,55,8.1,67,"A grifter is drawn into wealth, deception, and murder.",Thriller,1,short,101.1,Jamie,45-54,Mystery,Drama,long,weekends,comfort rewatcher,6,tv
U069,T030,2025-11-14,3.5,82,email click,0,0,Glass Onion,Movie,"Mystery, Comedy",PG-13,2022,1,139,7.1,85,A detective untangles a billionaire's island murder game.,Mystery,1,long,96.5,Jamie,45-54,Mystery,Drama,long,weekends,comfort rewatcher,6,tv
U069,T004,2025-05-10,3.0,89,friend recommendation,0,1,The Queen's Gambit,TV Show,Drama,TV-MA,2020,1,56,8.5,89,A chess prodigy battles addiction and fame.,Drama,1,short,111.7,Jamie,45-54,Mystery,Drama,long,weekends,comfort rewatcher,6,tv
U069,T041,2025-05-17,3.5,73,homepage banner,0,0,The Killer,Movie,"Thriller, Crime",R,2023,1,118,6.8,60,A meticulous assassin faces unexpected consequences.,Thriller,1,medium,86.0,Jamie,45-54,Mystery,Drama,long,weekends,comfort rewatcher,6,tv
U069,T039,2025-02-10,4.8,88,friend recommendation,1,1,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Jamie,45-54,Mystery,Drama,long,weekends,comfort rewatcher,6,tv
U069,T058,2025-07-27,2.0,53,homepage banner,0,0,Carry-On,Movie,"Thriller, Action",PG-13,2024,1,112,6.8,90,An airport employee is blackmailed into a dangerous plot.,Thriller,1,medium,95.0,Jamie,45-54,Mystery,Drama,long,weekends,comfort rewatcher,6,tv
U069,T043,2025-10-17,2.7,77,search,0,0,Army of the Dead,Movie,"Action, Horror",R,2021,1,148,5.7,58,Mercenaries enter zombie-infested Las Vegas for a heist.,Action,1,long,74.4,Jamie,45-54,Mystery,Drama,long,weekends,comfort rewatcher,6,tv
U070,T017,2025-06-03,3.5,55,browse row,0,0,The Night Agent,TV Show,"Action, Thriller",TV-MA,2023,1,45,7.5,83,An FBI agent uncovers a conspiracy from a late-night call.,Action,1,short,99.9,Taylor,25-34,Action,Animation,long,mixed,balanced explorer,6,tv
U070,T052,2025-12-01,2.6,61,browse row,0,0,3 Body Problem,TV Show,"Sci-Fi, Mystery",TV-MA,2024,1,58,7.6,84,Scientists confront a cosmic threat from first contact.,Sci-Fi,1,short,101.2,Taylor,25-34,Action,Animation,long,mixed,balanced explorer,6,tv
U070,T055,2025-02-17,4.5,84,homepage banner,1,0,Blue Eye Samurai,TV Show,"Animation, Action",TV-MA,2023,1,45,8.7,70,A swordswoman seeks revenge in Edo-period Japan.,Animation,1,short,108.0,Taylor,25-34,Action,Animation,long,mixed,balanced explorer,6,tv
U070,T038,2025-07-14,3.1,68,homepage banner,0,0,The Old Guard,Movie,"Action, Fantasy",R,2020,1,125,6.7,67,Immortal mercenaries fight to protect their secret.,Action,1,medium,87.1,Taylor,25-34,Action,Animation,long,mixed,balanced explorer,6,tv
U070,T032,2025-10-10,4.2,100,homepage banner,1,1,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Taylor,25-34,Action,Animation,long,mixed,balanced explorer,6,tv
U070,T008,2025-01-29,3.3,87,browse row,0,1,Dark,TV Show,"Sci-Fi, Mystery",TV-MA,2017,3,52,8.7,80,Time-travel secrets emerge in a German town.,Sci-Fi,0,short,111.0,Taylor,25-34,Action,Animation,long,mixed,balanced explorer,6,tv
U070,T019,2025-12-26,4.2,95,search,1,1,Squid Game,TV Show,"Thriller, Drama",TV-MA,2021,1,55,8.0,97,Cash-strapped players join deadly children's games.,Thriller,1,short,109.1,Taylor,25-34,Action,Animation,long,mixed,balanced explorer,6,tv
U070,T060,2025-02-12,3.7,58,homepage banner,0,0,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Taylor,25-34,Action,Animation,long,mixed,balanced explorer,6,tv
U070,T035,2025-08-11,2.3,67,friend recommendation,0,0,The Adam Project,Movie,"Sci-Fi, Adventure",PG-13,2022,1,106,6.7,73,A time-traveling pilot teams up with his younger self.,Sci-Fi,1,medium,88.9,Taylor,25-34,Action,Animation,long,mixed,balanced explorer,6,tv
U070,T041,2025-10-17,2.5,55,browse row,0,0,The Killer,Movie,"Thriller, Crime",R,2023,1,118,6.8,60,A meticulous assassin faces unexpected consequences.,Thriller,1,medium,86.0,Taylor,25-34,Action,Animation,long,mixed,balanced explorer,6,tv
U070,T061,2025-09-28,2.5,48,browse row,0,0,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Taylor,25-34,Action,Animation,long,mixed,balanced explorer,6,tv
U071,T008,2025-04-19,2.4,59,email click,0,0,Dark,TV Show,"Sci-Fi, Mystery",TV-MA,2017,3,52,8.7,80,Time-travel secrets emerge in a German town.,Sci-Fi,0,short,111.0,Jordan,45-54,Fantasy,Drama,medium,weekends,novelty seeker,9,mobile
U071,T055,2025-09-01,3.2,66,friend recommendation,0,0,Blue Eye Samurai,TV Show,"Animation, Action",TV-MA,2023,1,45,8.7,70,A swordswoman seeks revenge in Edo-period Japan.,Animation,1,short,108.0,Jordan,45-54,Fantasy,Drama,medium,weekends,novelty seeker,9,mobile
U071,T011,2025-01-24,3.3,100,browse row,0,1,Lupin,TV Show,"Crime, Mystery",TV-14,2021,3,44,7.5,85,A gentleman thief seeks revenge using deception.,Crime,1,short,100.5,Jordan,45-54,Fantasy,Drama,medium,weekends,novelty seeker,9,mobile
U071,T033,2025-12-17,2.6,63,friend recommendation,0,0,Extraction,Movie,"Action, Thriller",R,2020,1,116,6.8,74,A mercenary attempts a dangerous rescue mission.,Action,1,medium,90.2,Jordan,45-54,Fantasy,Drama,medium,weekends,novelty seeker,9,mobile
U071,T041,2025-10-06,3.7,79,email click,0,0,The Killer,Movie,"Thriller, Crime",R,2023,1,118,6.8,60,A meticulous assassin faces unexpected consequences.,Thriller,1,medium,86.0,Jordan,45-54,Fantasy,Drama,medium,weekends,novelty seeker,9,mobile
U071,T001,2025-12-03,2.8,72,browse row,0,0,Stranger Things,TV Show,"Sci-Fi, Drama",TV-14,2016,4,51,8.7,95,Supernatural mysteries unfold in a small town.,Sci-Fi,0,short,115.5,Jordan,45-54,Fantasy,Drama,medium,weekends,novelty seeker,9,mobile
U071,T029,2025-04-02,2.9,88,friend recommendation,0,1,Bird Box,Movie,"Thriller, Horror",R,2018,1,124,6.6,88,Survivors avoid a mysterious force that drives people mad.,Thriller,0,medium,92.4,Jordan,45-54,Fantasy,Drama,medium,weekends,novelty seeker,9,mobile
U071,T045,2025-01-09,2.4,83,search,0,0,Murder Mystery,Movie,"Comedy, Mystery",PG-13,2019,1,97,6.0,81,A couple becomes entangled in a murder case on a yacht.,Comedy,0,medium,84.3,Jordan,45-54,Fantasy,Drama,medium,weekends,novelty seeker,9,mobile
U071,T020,2025-10-28,3.5,63,search,0,0,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Jordan,45-54,Fantasy,Drama,medium,weekends,novelty seeker,9,mobile
U071,T014,2026-01-21,2.2,96,homepage banner,0,1,Cobra Kai,TV Show,"Comedy, Action",TV-14,2018,6,34,8.4,75,Old karate rivals reignite decades later.,Comedy,0,short,106.5,Jordan,45-54,Fantasy,Drama,medium,weekends,novelty seeker,9,mobile
U071,T021,2025-02-09,3.5,94,friend recommendation,0,1,Breaking Bad,TV Show,"Crime, Drama",TV-MA,2008,5,47,9.5,99,A chemistry teacher turns to meth production.,Crime,0,short,124.7,Jordan,45-54,Fantasy,Drama,medium,weekends,novelty seeker,9,mobile
U072,T057,2025-10-16,4.2,92,search,1,1,Rebel Moon,Movie,"Sci-Fi, Action",PG-13,2023,1,134,5.6,87,A former soldier gathers warriors to fight an empire.,Sci-Fi,1,long,82.1,Parker,18-24,Mystery,Animation,short,weekends,comfort rewatcher,8,mobile
U072,T004,2025-10-18,2.8,83,homepage banner,0,0,The Queen's Gambit,TV Show,Drama,TV-MA,2020,1,56,8.5,89,A chess prodigy battles addiction and fame.,Drama,1,short,111.7,Parker,18-24,Mystery,Animation,short,weekends,comfort rewatcher,8,mobile
U072,T060,2025-12-13,3.3,73,email click,0,0,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Parker,18-24,Mystery,Animation,short,weekends,comfort rewatcher,8,mobile
U072,T015,2025-06-19,3.0,70,homepage banner,0,0,Heartstopper,TV Show,"Romance, Teen",TV-14,2022,2,31,8.5,87,"Two students navigate identity, friendship, and love.",Romance,1,short,111.1,Parker,18-24,Mystery,Animation,short,weekends,comfort rewatcher,8,mobile
U072,T011,2026-01-22,4.0,81,search,1,0,Lupin,TV Show,"Crime, Mystery",TV-14,2021,3,44,7.5,85,A gentleman thief seeks revenge using deception.,Crime,1,short,100.5,Parker,18-24,Mystery,Animation,short,weekends,comfort rewatcher,8,mobile
U072,T017,2026-02-09,2.8,78,browse row,0,0,The Night Agent,TV Show,"Action, Thriller",TV-MA,2023,1,45,7.5,83,An FBI agent uncovers a conspiracy from a late-night call.,Action,1,short,99.9,Parker,18-24,Mystery,Animation,short,weekends,comfort rewatcher,8,mobile
U072,T030,2025-09-14,4.2,92,friend recommendation,1,1,Glass Onion,Movie,"Mystery, Comedy",PG-13,2022,1,139,7.1,85,A detective untangles a billionaire's island murder game.,Mystery,1,long,96.5,Parker,18-24,Mystery,Animation,short,weekends,comfort rewatcher,8,mobile
U072,T040,2025-01-28,3.6,78,browse row,0,0,Guillermo del Toro's Pinocchio,Movie,"Animation, Fantasy",PG,2022,1,117,7.6,66,A wooden boy comes to life in wartime Italy.,Animation,1,medium,95.8,Parker,18-24,Mystery,Animation,short,weekends,comfort rewatcher,8,mobile
U072,T037,2025-08-12,4.2,88,search,1,1,To All the Boys I've Loved Before,Movie,"Romance, Comedy",PG-13,2018,1,99,7.0,76,Secret love letters create romantic chaos.,Romance,0,medium,92.8,Parker,18-24,Mystery,Animation,short,weekends,comfort rewatcher,8,mobile
U072,T014,2026-03-06,4.1,71,browse row,1,0,Cobra Kai,TV Show,"Comedy, Action",TV-14,2018,6,34,8.4,75,Old karate rivals reignite decades later.,Comedy,0,short,106.5,Parker,18-24,Mystery,Animation,short,weekends,comfort rewatcher,8,mobile
U073,T053,2025-11-06,5.0,72,email click,1,0,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Taylor,45-54,Fantasy,Comedy,short,weekends,balanced explorer,9,tv
U073,T023,2025-11-01,4.0,99,homepage banner,1,1,Peaky Blinders,TV Show,"Crime, History",TV-MA,2013,6,58,8.8,83,A Birmingham gang rises after World War I.,Crime,0,short,112.9,Taylor,45-54,Fantasy,Comedy,short,weekends,balanced explorer,9,tv
U073,T061,2026-02-01,3.4,82,friend recommendation,0,0,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Taylor,45-54,Fantasy,Comedy,short,weekends,balanced explorer,9,tv
U073,T003,2025-01-16,3.0,77,friend recommendation,0,0,Money Heist,TV Show,"Crime, Thriller",TV-MA,2017,5,50,8.2,91,A criminal mastermind executes an ambitious heist.,Crime,0,short,109.3,Taylor,45-54,Fantasy,Comedy,short,weekends,balanced explorer,9,tv
U073,T013,2026-02-06,4.2,96,homepage banner,1,1,Black Mirror,TV Show,"Sci-Fi, Thriller",TV-MA,2011,6,60,8.7,76,Dark anthology tales explore technology's consequences.,Sci-Fi,0,short,109.8,Taylor,45-54,Fantasy,Comedy,short,weekends,balanced explorer,9,tv
U073,T033,2025-09-09,3.3,71,search,0,0,Extraction,Movie,"Action, Thriller",R,2020,1,116,6.8,74,A mercenary attempts a dangerous rescue mission.,Action,1,medium,90.2,Taylor,45-54,Fantasy,Comedy,short,weekends,balanced explorer,9,tv
U073,T019,2025-07-02,2.4,65,email click,0,0,Squid Game,TV Show,"Thriller, Drama",TV-MA,2021,1,55,8.0,97,Cash-strapped players join deadly children's games.,Thriller,1,short,109.1,Taylor,45-54,Fantasy,Comedy,short,weekends,balanced explorer,9,tv
U073,T026,2025-07-12,4.6,68,homepage banner,1,0,Seinfeld,TV Show,Comedy,TV-14,1989,9,23,8.9,81,A comedian and friends obsess over daily trivialities.,Comedy,0,short,113.3,Taylor,45-54,Fantasy,Comedy,short,weekends,balanced explorer,9,tv
U073,T024,2025-04-06,3.3,79,email click,0,0,The Office,TV Show,Comedy,TV-14,2005,9,22,9.0,94,Office workers navigate absurd everyday routines.,Comedy,0,short,118.2,Taylor,45-54,Fantasy,Comedy,short,weekends,balanced explorer,9,tv
U073,T060,2025-12-05,2.4,57,homepage banner,0,0,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Taylor,45-54,Fantasy,Comedy,short,weekends,balanced explorer,9,tv
U073,T057,2025-02-13,2.7,51,email click,0,0,Rebel Moon,Movie,"Sci-Fi, Action",PG-13,2023,1,134,5.6,87,A former soldier gathers warriors to fight an empire.,Sci-Fi,1,long,82.1,Taylor,45-54,Fantasy,Comedy,short,weekends,balanced explorer,9,tv
U073,T017,2025-06-01,2.7,82,search,0,0,The Night Agent,TV Show,"Action, Thriller",TV-MA,2023,1,45,7.5,83,An FBI agent uncovers a conspiracy from a late-night call.,Action,1,short,99.9,Taylor,45-54,Fantasy,Comedy,short,weekends,balanced explorer,9,tv
U073,T030,2026-01-01,2.8,49,browse row,0,0,Glass Onion,Movie,"Mystery, Comedy",PG-13,2022,1,139,7.1,85,A detective untangles a billionaire's island murder game.,Mystery,1,long,96.5,Taylor,45-54,Fantasy,Comedy,short,weekends,balanced explorer,9,tv
U074,T032,2025-05-18,3.6,83,search,0,0,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Riley,35-44,Romance,Action,medium,weekends,comfort rewatcher,2,laptop
U074,T039,2025-07-14,4.2,100,search,1,1,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Riley,35-44,Romance,Action,medium,weekends,comfort rewatcher,2,laptop
U074,T016,2026-01-14,2.6,71,homepage banner,0,0,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Riley,35-44,Romance,Action,medium,weekends,comfort rewatcher,2,laptop
U074,T046,2025-06-12,3.6,57,friend recommendation,0,0,Red Notice,Movie,"Action, Comedy",PG-13,2021,1,118,6.3,92,An FBI profiler chases two rival art thieves.,Action,1,medium,90.6,Riley,35-44,Romance,Action,medium,weekends,comfort rewatcher,2,laptop
U074,T030,2025-02-24,2.4,60,browse row,0,0,Glass Onion,Movie,"Mystery, Comedy",PG-13,2022,1,139,7.1,85,A detective untangles a billionaire's island murder game.,Mystery,1,long,96.5,Riley,35-44,Romance,Action,medium,weekends,comfort rewatcher,2,laptop
U074,T043,2025-01-03,2.4,69,friend recommendation,0,0,Army of the Dead,Movie,"Action, Horror",R,2021,1,148,5.7,58,Mercenaries enter zombie-infested Las Vegas for a heist.,Action,1,long,74.4,Riley,35-44,Romance,Action,medium,weekends,comfort rewatcher,2,laptop
U074,T029,2025-08-16,2.9,48,friend recommendation,0,0,Bird Box,Movie,"Thriller, Horror",R,2018,1,124,6.6,88,Survivors avoid a mysterious force that drives people mad.,Thriller,0,medium,92.4,Riley,35-44,Romance,Action,medium,weekends,comfort rewatcher,2,laptop
U074,T051,2026-01-25,3.2,87,friend recommendation,0,1,Ripley,TV Show,"Thriller, Drama",TV-MA,2024,1,55,8.1,67,"A grifter is drawn into wealth, deception, and murder.",Thriller,1,short,101.1,Riley,35-44,Romance,Action,medium,weekends,comfort rewatcher,2,laptop
U074,T042,2025-02-22,3.1,71,search,0,0,Leave the World Behind,Movie,"Thriller, Drama",R,2023,1,141,6.4,82,A family vacation turns ominous during a blackout.,Thriller,1,long,88.6,Riley,35-44,Romance,Action,medium,weekends,comfort rewatcher,2,laptop
U075,T004,2025-04-06,3.8,80,homepage banner,0,0,The Queen's Gambit,TV Show,Drama,TV-MA,2020,1,56,8.5,89,A chess prodigy battles addiction and fame.,Drama,1,short,111.7,Alex,18-24,Animation,Drama,medium,weeknights,novelty seeker,2,mobile
U075,T054,2025-08-18,4.5,97,email click,1,1,Beef,TV Show,"Comedy, Drama",TV-MA,2023,1,35,8.0,73,A road-rage incident spirals into obsession.,Comedy,1,short,101.9,Alex,18-24,Animation,Drama,medium,weeknights,novelty seeker,2,mobile
U075,T055,2025-10-12,5.0,100,email click,1,1,Blue Eye Samurai,TV Show,"Animation, Action",TV-MA,2023,1,45,8.7,70,A swordswoman seeks revenge in Edo-period Japan.,Animation,1,short,108.0,Alex,18-24,Animation,Drama,medium,weeknights,novelty seeker,2,mobile
U075,T017,2025-07-28,3.6,67,browse row,0,0,The Night Agent,TV Show,"Action, Thriller",TV-MA,2023,1,45,7.5,83,An FBI agent uncovers a conspiracy from a late-night call.,Action,1,short,99.9,Alex,18-24,Animation,Drama,medium,weeknights,novelty seeker,2,mobile
U075,T012,2025-01-14,3.3,76,browse row,0,0,Ozark,TV Show,"Crime, Drama",TV-MA,2017,4,60,8.5,77,A family launders money for a dangerous cartel.,Crime,0,short,108.1,Alex,18-24,Animation,Drama,medium,weeknights,novelty seeker,2,mobile
U075,T014,2025-07-01,3.6,74,email click,0,0,Cobra Kai,TV Show,"Comedy, Action",TV-14,2018,6,34,8.4,75,Old karate rivals reignite decades later.,Comedy,0,short,106.5,Alex,18-24,Animation,Drama,medium,weeknights,novelty seeker,2,mobile
U075,T052,2025-02-17,3.2,100,email click,0,1,3 Body Problem,TV Show,"Sci-Fi, Mystery",TV-MA,2024,1,58,7.6,84,Scientists confront a cosmic threat from first contact.,Sci-Fi,1,short,101.2,Alex,18-24,Animation,Drama,medium,weeknights,novelty seeker,2,mobile
U075,T001,2025-11-03,3.5,70,friend recommendation,0,0,Stranger Things,TV Show,"Sci-Fi, Drama",TV-14,2016,4,51,8.7,95,Supernatural mysteries unfold in a small town.,Sci-Fi,0,short,115.5,Alex,18-24,Animation,Drama,medium,weeknights,novelty seeker,2,mobile
U075,T003,2025-07-17,3.5,79,browse row,0,0,Money Heist,TV Show,"Crime, Thriller",TV-MA,2017,5,50,8.2,91,A criminal mastermind executes an ambitious heist.,Crime,0,short,109.3,Alex,18-24,Animation,Drama,medium,weeknights,novelty seeker,2,mobile
U076,T018,2025-07-31,3.7,94,homepage banner,0,1,One Piece,TV Show,"Adventure, Fantasy",TV-14,2023,1,55,8.4,90,Pirates hunt treasure in a live-action adaptation.,Adventure,1,short,111.0,Riley,25-34,Sci-Fi,Drama,long,weeknights,comfort rewatcher,3,laptop
U076,T030,2026-02-03,3.7,87,browse row,0,1,Glass Onion,Movie,"Mystery, Comedy",PG-13,2022,1,139,7.1,85,A detective untangles a billionaire's island murder game.,Mystery,1,long,96.5,Riley,25-34,Sci-Fi,Drama,long,weeknights,comfort rewatcher,3,laptop
U076,T051,2026-01-07,3.4,60,email click,0,0,Ripley,TV Show,"Thriller, Drama",TV-MA,2024,1,55,8.1,67,"A grifter is drawn into wealth, deception, and murder.",Thriller,1,short,101.1,Riley,25-34,Sci-Fi,Drama,long,weeknights,comfort rewatcher,3,laptop
U076,T059,2025-05-05,2.9,82,email click,0,0,Anyone But You,Movie,"Romance, Comedy",R,2023,1,103,6.4,77,A fake-couple wedding trip reignites sparks.,Romance,1,medium,87.1,Riley,25-34,Sci-Fi,Drama,long,weeknights,comfort rewatcher,3,laptop
U076,T019,2025-09-24,3.6,65,search,0,0,Squid Game,TV Show,"Thriller, Drama",TV-MA,2021,1,55,8.0,97,Cash-strapped players join deadly children's games.,Thriller,1,short,109.1,Riley,25-34,Sci-Fi,Drama,long,weeknights,comfort rewatcher,3,laptop
U076,T009,2025-12-17,3.5,76,homepage banner,0,0,Narcos,TV Show,"Crime, Drama",TV-MA,2015,3,49,8.7,78,The rise of Pablo Escobar and the drug wars.,Crime,0,short,110.4,Riley,25-34,Sci-Fi,Drama,long,weeknights,comfort rewatcher,3,laptop
U076,T033,2025-03-28,3.0,82,search,0,0,Extraction,Movie,"Action, Thriller",R,2020,1,116,6.8,74,A mercenary attempts a dangerous rescue mission.,Action,1,medium,90.2,Riley,25-34,Sci-Fi,Drama,long,weeknights,comfort rewatcher,3,laptop
U076,T027,2025-05-18,4.3,80,friend recommendation,1,0,The Irishman,Movie,"Crime, Drama",R,2019,1,209,7.8,70,An aging hitman reflects on loyalty and regret.,Crime,0,long,99.0,Riley,25-34,Sci-Fi,Drama,long,weeknights,comfort rewatcher,3,laptop
U076,T042,2025-05-18,4.5,100,homepage banner,1,1,Leave the World Behind,Movie,"Thriller, Drama",R,2023,1,141,6.4,82,A family vacation turns ominous during a blackout.,Thriller,1,long,88.6,Riley,25-34,Sci-Fi,Drama,long,weeknights,comfort rewatcher,3,laptop
U076,T004,2025-03-16,3.8,92,browse row,0,1,The Queen's Gambit,TV Show,Drama,TV-MA,2020,1,56,8.5,89,A chess prodigy battles addiction and fame.,Drama,1,short,111.7,Riley,25-34,Sci-Fi,Drama,long,weeknights,comfort rewatcher,3,laptop
U076,T039,2025-03-27,4.2,70,homepage banner,1,0,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Riley,25-34,Sci-Fi,Drama,long,weeknights,comfort rewatcher,3,laptop
U076,T034,2025-05-22,3.6,69,homepage banner,0,0,Enola Holmes,Movie,"Mystery, Adventure",PG-13,2020,1,123,6.6,78,Sherlock's sister searches for her missing mother.,Mystery,1,medium,89.4,Riley,25-34,Sci-Fi,Drama,long,weeknights,comfort rewatcher,3,laptop
U077,T051,2025-09-05,2.4,53,browse row,0,0,Ripley,TV Show,"Thriller, Drama",TV-MA,2024,1,55,8.1,67,"A grifter is drawn into wealth, deception, and murder.",Thriller,1,short,101.1,Quinn,35-44,Sci-Fi,Fantasy,long,weekends,comfort rewatcher,3,mobile
U077,T040,2025-07-04,4.1,56,friend recommendation,1,0,Guillermo del Toro's Pinocchio,Movie,"Animation, Fantasy",PG,2022,1,117,7.6,66,A wooden boy comes to life in wartime Italy.,Animation,1,medium,95.8,Quinn,35-44,Sci-Fi,Fantasy,long,weekends,comfort rewatcher,3,mobile
U077,T061,2025-05-07,3.2,74,homepage banner,0,0,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Quinn,35-44,Sci-Fi,Fantasy,long,weekends,comfort rewatcher,3,mobile
U077,T035,2025-11-01,4.3,83,email click,1,0,The Adam Project,Movie,"Sci-Fi, Adventure",PG-13,2022,1,106,6.7,73,A time-traveling pilot teams up with his younger self.,Sci-Fi,1,medium,88.9,Quinn,35-44,Sci-Fi,Fantasy,long,weekends,comfort rewatcher,3,mobile
U077,T007,2025-04-11,3.8,71,homepage banner,0,0,The Witcher,TV Show,"Fantasy, Action",TV-MA,2019,3,57,8.0,86,A monster hunter navigates destiny and politics.,Fantasy,0,short,105.8,Quinn,35-44,Sci-Fi,Fantasy,long,weekends,comfort rewatcher,3,mobile
U077,T005,2025-02-24,3.6,88,search,0,1,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Quinn,35-44,Sci-Fi,Fantasy,long,weekends,comfort rewatcher,3,mobile
U077,T014,2025-06-05,3.1,81,browse row,0,0,Cobra Kai,TV Show,"Comedy, Action",TV-14,2018,6,34,8.4,75,Old karate rivals reignite decades later.,Comedy,0,short,106.5,Quinn,35-44,Sci-Fi,Fantasy,long,weekends,comfort rewatcher,3,mobile
U077,T031,2025-07-22,2.7,63,friend recommendation,0,0,Roma,Movie,Drama,R,2018,1,135,7.7,63,A domestic worker supports a family in 1970s Mexico City.,Drama,0,long,95.9,Quinn,35-44,Sci-Fi,Fantasy,long,weekends,comfort rewatcher,3,mobile
U077,T048,2026-03-07,2.7,67,email click,0,0,Klaus,Movie,"Animation, Family",PG,2019,1,96,8.2,69,A postman and a toymaker spark a holiday tradition.,Animation,0,medium,102.7,Quinn,35-44,Sci-Fi,Fantasy,long,weekends,comfort rewatcher,3,mobile
U077,T055,2025-07-14,3.8,77,friend recommendation,0,0,Blue Eye Samurai,TV Show,"Animation, Action",TV-MA,2023,1,45,8.7,70,A swordswoman seeks revenge in Edo-period Japan.,Animation,1,short,108.0,Quinn,35-44,Sci-Fi,Fantasy,long,weekends,comfort rewatcher,3,mobile
U077,T028,2025-08-14,2.6,79,friend recommendation,0,0,Marriage Story,Movie,Drama,R,2019,1,137,7.9,68,A couple navigates a painful divorce.,Drama,0,long,99.4,Quinn,35-44,Sci-Fi,Fantasy,long,weekends,comfort rewatcher,3,mobile
U077,T033,2025-08-09,3.8,64,email click,0,0,Extraction,Movie,"Action, Thriller",R,2020,1,116,6.8,74,A mercenary attempts a dangerous rescue mission.,Action,1,medium,90.2,Quinn,35-44,Sci-Fi,Fantasy,long,weekends,comfort rewatcher,3,mobile
U078,T030,2025-06-03,4.1,100,friend recommendation,1,1,Glass Onion,Movie,"Mystery, Comedy",PG-13,2022,1,139,7.1,85,A detective untangles a billionaire's island murder game.,Mystery,1,long,96.5,Parker,35-44,Thriller,Crime,long,weeknights,novelty seeker,8,tv
U078,T027,2025-11-05,3.7,54,search,0,0,The Irishman,Movie,"Crime, Drama",R,2019,1,209,7.8,70,An aging hitman reflects on loyalty and regret.,Crime,0,long,99.0,Parker,35-44,Thriller,Crime,long,weeknights,novelty seeker,8,tv
U078,T006,2025-09-03,2.9,76,friend recommendation,0,0,Bridgerton,TV Show,"Romance, Drama",TV-MA,2020,3,60,7.4,84,Love and scandal shape the London social season.,Romance,1,short,99.2,Parker,35-44,Thriller,Crime,long,weeknights,novelty seeker,8,tv
U078,T052,2025-04-01,3.5,71,homepage banner,0,0,3 Body Problem,TV Show,"Sci-Fi, Mystery",TV-MA,2024,1,58,7.6,84,Scientists confront a cosmic threat from first contact.,Sci-Fi,1,short,101.2,Parker,35-44,Thriller,Crime,long,weeknights,novelty seeker,8,tv
U078,T046,2025-06-13,3.3,66,friend recommendation,0,0,Red Notice,Movie,"Action, Comedy",PG-13,2021,1,118,6.3,92,An FBI profiler chases two rival art thieves.,Action,1,medium,90.6,Parker,35-44,Thriller,Crime,long,weeknights,novelty seeker,8,tv
U078,T051,2026-01-12,3.7,93,homepage banner,0,1,Ripley,TV Show,"Thriller, Drama",TV-MA,2024,1,55,8.1,67,"A grifter is drawn into wealth, deception, and murder.",Thriller,1,short,101.1,Parker,35-44,Thriller,Crime,long,weeknights,novelty seeker,8,tv
U078,T008,2025-10-22,3.1,73,search,0,0,Dark,TV Show,"Sci-Fi, Mystery",TV-MA,2017,3,52,8.7,80,Time-travel secrets emerge in a German town.,Sci-Fi,0,short,111.0,Parker,35-44,Thriller,Crime,long,weeknights,novelty seeker,8,tv
U078,T058,2025-06-16,4.1,83,homepage banner,1,0,Carry-On,Movie,"Thriller, Action",PG-13,2024,1,112,6.8,90,An airport employee is blackmailed into a dangerous plot.,Thriller,1,medium,95.0,Parker,35-44,Thriller,Crime,long,weeknights,novelty seeker,8,tv
U078,T038,2025-05-24,3.1,100,homepage banner,0,1,The Old Guard,Movie,"Action, Fantasy",R,2020,1,125,6.7,67,Immortal mercenaries fight to protect their secret.,Action,1,medium,87.1,Parker,35-44,Thriller,Crime,long,weeknights,novelty seeker,8,tv
U078,T034,2025-07-06,3.4,69,browse row,0,0,Enola Holmes,Movie,"Mystery, Adventure",PG-13,2020,1,123,6.6,78,Sherlock's sister searches for her missing mother.,Mystery,1,medium,89.4,Parker,35-44,Thriller,Crime,long,weeknights,novelty seeker,8,tv
U079,T045,2025-04-13,1.8,53,email click,0,0,Murder Mystery,Movie,"Comedy, Mystery",PG-13,2019,1,97,6.0,81,A couple becomes entangled in a murder case on a yacht.,Comedy,0,medium,84.3,Cameron,25-34,Sci-Fi,Crime,long,mixed,comfort rewatcher,6,laptop
U079,T047,2025-10-07,3.3,61,search,0,0,The Mitchells vs. the Machines,Movie,"Animation, Comedy",PG,2021,1,113,7.6,74,A quirky family saves the world from a robot uprising.,Animation,1,medium,98.2,Cameron,25-34,Sci-Fi,Crime,long,mixed,comfort rewatcher,6,laptop
U079,T001,2025-12-16,4.4,75,email click,1,0,Stranger Things,TV Show,"Sci-Fi, Drama",TV-14,2016,4,51,8.7,95,Supernatural mysteries unfold in a small town.,Sci-Fi,0,short,115.5,Cameron,25-34,Sci-Fi,Crime,long,mixed,comfort rewatcher,6,laptop
U079,T014,2025-01-14,2.3,87,homepage banner,0,1,Cobra Kai,TV Show,"Comedy, Action",TV-14,2018,6,34,8.4,75,Old karate rivals reignite decades later.,Comedy,0,short,106.5,Cameron,25-34,Sci-Fi,Crime,long,mixed,comfort rewatcher,6,laptop
U079,T060,2025-12-29,3.4,86,search,0,1,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Cameron,25-34,Sci-Fi,Crime,long,mixed,comfort rewatcher,6,laptop
U079,T029,2025-08-13,3.6,41,friend recommendation,0,0,Bird Box,Movie,"Thriller, Horror",R,2018,1,124,6.6,88,Survivors avoid a mysterious force that drives people mad.,Thriller,0,medium,92.4,Cameron,25-34,Sci-Fi,Crime,long,mixed,comfort rewatcher,6,laptop
U079,T008,2026-03-02,4.4,77,browse row,1,0,Dark,TV Show,"Sci-Fi, Mystery",TV-MA,2017,3,52,8.7,80,Time-travel secrets emerge in a German town.,Sci-Fi,0,short,111.0,Cameron,25-34,Sci-Fi,Crime,long,mixed,comfort rewatcher,6,laptop
U079,T016,2026-02-24,2.6,77,homepage banner,0,0,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Cameron,25-34,Sci-Fi,Crime,long,mixed,comfort rewatcher,6,laptop
U079,T037,2025-12-11,2.8,81,homepage banner,0,0,To All the Boys I've Loved Before,Movie,"Romance, Comedy",PG-13,2018,1,99,7.0,76,Secret love letters create romantic chaos.,Romance,0,medium,92.8,Cameron,25-34,Sci-Fi,Crime,long,mixed,comfort rewatcher,6,laptop
U079,T049,2025-03-13,3.0,77,friend recommendation,0,0,Maestro in Blue,TV Show,"Drama, Romance",TV-MA,2022,1,50,7.8,59,A musician becomes entangled in island secrets.,Drama,1,short,95.7,Cameron,25-34,Sci-Fi,Crime,long,mixed,comfort rewatcher,6,laptop
U079,T019,2025-05-04,2.7,56,friend recommendation,0,0,Squid Game,TV Show,"Thriller, Drama",TV-MA,2021,1,55,8.0,97,Cash-strapped players join deadly children's games.,Thriller,1,short,109.1,Cameron,25-34,Sci-Fi,Crime,long,mixed,comfort rewatcher,6,laptop
U079,T015,2025-12-04,2.6,69,search,0,0,Heartstopper,TV Show,"Romance, Teen",TV-14,2022,2,31,8.5,87,"Two students navigate identity, friendship, and love.",Romance,1,short,111.1,Cameron,25-34,Sci-Fi,Crime,long,mixed,comfort rewatcher,6,laptop
U079,T040,2026-01-02,4.1,100,homepage banner,1,1,Guillermo del Toro's Pinocchio,Movie,"Animation, Fantasy",PG,2022,1,117,7.6,66,A wooden boy comes to life in wartime Italy.,Animation,1,medium,95.8,Cameron,25-34,Sci-Fi,Crime,long,mixed,comfort rewatcher,6,laptop
U079,T028,2026-02-09,2.9,74,homepage banner,0,0,Marriage Story,Movie,Drama,R,2019,1,137,7.9,68,A couple navigates a painful divorce.,Drama,0,long,99.4,Cameron,25-34,Sci-Fi,Crime,long,mixed,comfort rewatcher,6,laptop
U079,T043,2025-02-07,3.1,77,homepage banner,0,0,Army of the Dead,Movie,"Action, Horror",R,2021,1,148,5.7,58,Mercenaries enter zombie-infested Las Vegas for a heist.,Action,1,long,74.4,Cameron,25-34,Sci-Fi,Crime,long,mixed,comfort rewatcher,6,laptop
U079,T053,2025-11-03,3.2,84,homepage banner,0,0,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Cameron,25-34,Sci-Fi,Crime,long,mixed,comfort rewatcher,6,laptop
U079,T020,2025-10-26,1.3,63,homepage banner,0,0,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Cameron,25-34,Sci-Fi,Crime,long,mixed,comfort rewatcher,6,laptop
U080,T004,2025-09-17,3.3,62,homepage banner,0,0,The Queen's Gambit,TV Show,Drama,TV-MA,2020,1,56,8.5,89,A chess prodigy battles addiction and fame.,Drama,1,short,111.7,Morgan,35-44,Mystery,Crime,long,weeknights,novelty seeker,7,mobile
U080,T052,2025-10-06,4.9,79,browse row,1,0,3 Body Problem,TV Show,"Sci-Fi, Mystery",TV-MA,2024,1,58,7.6,84,Scientists confront a cosmic threat from first contact.,Sci-Fi,1,short,101.2,Morgan,35-44,Mystery,Crime,long,weeknights,novelty seeker,7,mobile
U080,T005,2026-02-09,4.8,100,friend recommendation,1,1,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Morgan,35-44,Mystery,Crime,long,weeknights,novelty seeker,7,mobile
U080,T045,2025-12-26,4.5,93,email click,1,1,Murder Mystery,Movie,"Comedy, Mystery",PG-13,2019,1,97,6.0,81,A couple becomes entangled in a murder case on a yacht.,Comedy,0,medium,84.3,Morgan,35-44,Mystery,Crime,long,weeknights,novelty seeker,7,mobile
U080,T019,2025-11-01,3.3,69,browse row,0,0,Squid Game,TV Show,"Thriller, Drama",TV-MA,2021,1,55,8.0,97,Cash-strapped players join deadly children's games.,Thriller,1,short,109.1,Morgan,35-44,Mystery,Crime,long,weeknights,novelty seeker,7,mobile
U080,T036,2025-02-25,4.3,77,search,1,0,The Gray Man,Movie,"Action, Thriller",PG-13,2022,1,122,6.5,71,A CIA asset becomes the target of a global manhunt.,Action,1,medium,86.3,Morgan,35-44,Mystery,Crime,long,weeknights,novelty seeker,7,mobile
U080,T001,2025-12-03,2.4,78,friend recommendation,0,0,Stranger Things,TV Show,"Sci-Fi, Drama",TV-14,2016,4,51,8.7,95,Supernatural mysteries unfold in a small town.,Sci-Fi,0,short,115.5,Morgan,35-44,Mystery,Crime,long,weeknights,novelty seeker,7,mobile
U080,T054,2025-03-27,2.9,59,email click,0,0,Beef,TV Show,"Comedy, Drama",TV-MA,2023,1,35,8.0,73,A road-rage incident spirals into obsession.,Comedy,1,short,101.9,Morgan,35-44,Mystery,Crime,long,weeknights,novelty seeker,7,mobile
U080,T033,2025-01-23,2.1,58,email click,0,0,Extraction,Movie,"Action, Thriller",R,2020,1,116,6.8,74,A mercenary attempts a dangerous rescue mission.,Action,1,medium,90.2,Morgan,35-44,Mystery,Crime,long,weeknights,novelty seeker,7,mobile
U080,T037,2025-11-27,3.0,78,homepage banner,0,0,To All the Boys I've Loved Before,Movie,"Romance, Comedy",PG-13,2018,1,99,7.0,76,Secret love letters create romantic chaos.,Romance,0,medium,92.8,Morgan,35-44,Mystery,Crime,long,weeknights,novelty seeker,7,mobile
U080,T011,2026-01-21,5.0,100,friend recommendation,1,1,Lupin,TV Show,"Crime, Mystery",TV-14,2021,3,44,7.5,85,A gentleman thief seeks revenge using deception.,Crime,1,short,100.5,Morgan,35-44,Mystery,Crime,long,weeknights,novelty seeker,7,mobile
U080,T032,2026-02-12,3.6,78,homepage banner,0,0,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Morgan,35-44,Mystery,Crime,long,weeknights,novelty seeker,7,mobile
U080,T039,2025-02-24,3.7,100,browse row,0,1,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Morgan,35-44,Mystery,Crime,long,weeknights,novelty seeker,7,mobile
U080,T016,2025-02-20,3.1,68,friend recommendation,0,0,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Morgan,35-44,Mystery,Crime,long,weeknights,novelty seeker,7,mobile
U080,T040,2025-04-24,2.8,51,email click,0,0,Guillermo del Toro's Pinocchio,Movie,"Animation, Fantasy",PG,2022,1,117,7.6,66,A wooden boy comes to life in wartime Italy.,Animation,1,medium,95.8,Morgan,35-44,Mystery,Crime,long,weeknights,novelty seeker,7,mobile
U080,T003,2026-01-18,4.0,93,email click,1,1,Money Heist,TV Show,"Crime, Thriller",TV-MA,2017,5,50,8.2,91,A criminal mastermind executes an ambitious heist.,Crime,0,short,109.3,Morgan,35-44,Mystery,Crime,long,weeknights,novelty seeker,7,mobile
U081,T010,2025-10-25,4.0,100,email click,1,1,Emily in Paris,TV Show,"Comedy, Romance",TV-MA,2020,4,30,6.9,72,A marketer explores work and romance in Paris.,Comedy,1,short,90.6,Morgan,45-54,Animation,Romance,short,weekends,comfort rewatcher,7,laptop
U081,T051,2025-04-24,3.1,82,homepage banner,0,0,Ripley,TV Show,"Thriller, Drama",TV-MA,2024,1,55,8.1,67,"A grifter is drawn into wealth, deception, and murder.",Thriller,1,short,101.1,Morgan,45-54,Animation,Romance,short,weekends,comfort rewatcher,7,laptop
U081,T026,2025-07-11,2.8,75,homepage banner,0,0,Seinfeld,TV Show,Comedy,TV-14,1989,9,23,8.9,81,A comedian and friends obsess over daily trivialities.,Comedy,0,short,113.3,Morgan,45-54,Animation,Romance,short,weekends,comfort rewatcher,7,laptop
U081,T029,2025-08-26,3.8,93,email click,0,1,Bird Box,Movie,"Thriller, Horror",R,2018,1,124,6.6,88,Survivors avoid a mysterious force that drives people mad.,Thriller,0,medium,92.4,Morgan,45-54,Animation,Romance,short,weekends,comfort rewatcher,7,laptop
U081,T057,2025-12-20,2.1,74,email click,0,0,Rebel Moon,Movie,"Sci-Fi, Action",PG-13,2023,1,134,5.6,87,A former soldier gathers warriors to fight an empire.,Sci-Fi,1,long,82.1,Morgan,45-54,Animation,Romance,short,weekends,comfort rewatcher,7,laptop
U081,T025,2025-03-19,4.3,90,friend recommendation,1,1,Friends,TV Show,"Comedy, Romance",TV-14,1994,10,22,8.9,92,Six friends face life and love in New York.,Comedy,0,short,116.6,Morgan,45-54,Animation,Romance,short,weekends,comfort rewatcher,7,laptop
U081,T053,2025-01-13,3.7,69,homepage banner,0,0,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Morgan,45-54,Animation,Romance,short,weekends,comfort rewatcher,7,laptop
U081,T032,2025-02-23,3.0,91,friend recommendation,0,1,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Morgan,45-54,Animation,Romance,short,weekends,comfort rewatcher,7,laptop
U081,T020,2025-08-01,3.9,92,browse row,0,1,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Morgan,45-54,Animation,Romance,short,weekends,comfort rewatcher,7,laptop
U081,T047,2025-03-01,3.5,64,search,0,0,The Mitchells vs. the Machines,Movie,"Animation, Comedy",PG,2021,1,113,7.6,74,A quirky family saves the world from a robot uprising.,Animation,1,medium,98.2,Morgan,45-54,Animation,Romance,short,weekends,comfort rewatcher,7,laptop
U081,T058,2025-06-28,3.1,78,friend recommendation,0,0,Carry-On,Movie,"Thriller, Action",PG-13,2024,1,112,6.8,90,An airport employee is blackmailed into a dangerous plot.,Thriller,1,medium,95.0,Morgan,45-54,Animation,Romance,short,weekends,comfort rewatcher,7,laptop
U081,T016,2025-06-25,3.2,64,homepage banner,0,0,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Morgan,45-54,Animation,Romance,short,weekends,comfort rewatcher,7,laptop
U081,T015,2026-02-06,4.2,88,search,1,1,Heartstopper,TV Show,"Romance, Teen",TV-14,2022,2,31,8.5,87,"Two students navigate identity, friendship, and love.",Romance,1,short,111.1,Morgan,45-54,Animation,Romance,short,weekends,comfort rewatcher,7,laptop
U081,T052,2025-09-24,3.5,88,homepage banner,0,1,3 Body Problem,TV Show,"Sci-Fi, Mystery",TV-MA,2024,1,58,7.6,84,Scientists confront a cosmic threat from first contact.,Sci-Fi,1,short,101.2,Morgan,45-54,Animation,Romance,short,weekends,comfort rewatcher,7,laptop
U081,T013,2025-06-28,3.1,68,homepage banner,0,0,Black Mirror,TV Show,"Sci-Fi, Thriller",TV-MA,2011,6,60,8.7,76,Dark anthology tales explore technology's consequences.,Sci-Fi,0,short,109.8,Morgan,45-54,Animation,Romance,short,weekends,comfort rewatcher,7,laptop
U081,T004,2025-02-19,4.0,73,homepage banner,1,0,The Queen's Gambit,TV Show,Drama,TV-MA,2020,1,56,8.5,89,A chess prodigy battles addiction and fame.,Drama,1,short,111.7,Morgan,45-54,Animation,Romance,short,weekends,comfort rewatcher,7,laptop
U082,T052,2025-06-13,4.0,66,browse row,1,0,3 Body Problem,TV Show,"Sci-Fi, Mystery",TV-MA,2024,1,58,7.6,84,Scientists confront a cosmic threat from first contact.,Sci-Fi,1,short,101.2,Avery,35-44,Fantasy,Comedy,medium,weeknights,novelty seeker,9,tv
U082,T044,2025-06-03,2.3,54,browse row,0,0,Project Power,Movie,"Action, Sci-Fi",R,2020,1,113,6.0,64,A pill that grants powers sparks chaos in New Orleans.,Action,1,medium,79.2,Avery,35-44,Fantasy,Comedy,medium,weeknights,novelty seeker,9,tv
U082,T053,2026-02-19,4.4,68,browse row,1,0,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Avery,35-44,Fantasy,Comedy,medium,weeknights,novelty seeker,9,tv
U082,T046,2025-01-12,4.6,77,friend recommendation,1,0,Red Notice,Movie,"Action, Comedy",PG-13,2021,1,118,6.3,92,An FBI profiler chases two rival art thieves.,Action,1,medium,90.6,Avery,35-44,Fantasy,Comedy,medium,weeknights,novelty seeker,9,tv
U082,T027,2025-11-28,3.1,67,browse row,0,0,The Irishman,Movie,"Crime, Drama",R,2019,1,209,7.8,70,An aging hitman reflects on loyalty and regret.,Crime,0,long,99.0,Avery,35-44,Fantasy,Comedy,medium,weeknights,novelty seeker,9,tv
U082,T038,2025-12-13,4.0,60,search,1,0,The Old Guard,Movie,"Action, Fantasy",R,2020,1,125,6.7,67,Immortal mercenaries fight to protect their secret.,Action,1,medium,87.1,Avery,35-44,Fantasy,Comedy,medium,weeknights,novelty seeker,9,tv
U082,T039,2026-01-15,4.0,70,search,1,0,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Avery,35-44,Fantasy,Comedy,medium,weeknights,novelty seeker,9,tv
U082,T031,2025-09-22,2.4,100,search,0,1,Roma,Movie,Drama,R,2018,1,135,7.7,63,A domestic worker supports a family in 1970s Mexico City.,Drama,0,long,95.9,Avery,35-44,Fantasy,Comedy,medium,weeknights,novelty seeker,9,tv
U082,T045,2025-10-10,3.9,98,search,0,1,Murder Mystery,Movie,"Comedy, Mystery",PG-13,2019,1,97,6.0,81,A couple becomes entangled in a murder case on a yacht.,Comedy,0,medium,84.3,Avery,35-44,Fantasy,Comedy,medium,weeknights,novelty seeker,9,tv
U082,T047,2025-06-19,4.3,81,email click,1,0,The Mitchells vs. the Machines,Movie,"Animation, Comedy",PG,2021,1,113,7.6,74,A quirky family saves the world from a robot uprising.,Animation,1,medium,98.2,Avery,35-44,Fantasy,Comedy,medium,weeknights,novelty seeker,9,tv
U082,T012,2025-08-07,2.2,62,homepage banner,0,0,Ozark,TV Show,"Crime, Drama",TV-MA,2017,4,60,8.5,77,A family launders money for a dangerous cartel.,Crime,0,short,108.1,Avery,35-44,Fantasy,Comedy,medium,weeknights,novelty seeker,9,tv
U082,T011,2025-04-29,2.8,59,homepage banner,0,0,Lupin,TV Show,"Crime, Mystery",TV-14,2021,3,44,7.5,85,A gentleman thief seeks revenge using deception.,Crime,1,short,100.5,Avery,35-44,Fantasy,Comedy,medium,weeknights,novelty seeker,9,tv
U082,T024,2025-11-19,2.7,73,search,0,0,The Office,TV Show,Comedy,TV-14,2005,9,22,9.0,94,Office workers navigate absurd everyday routines.,Comedy,0,short,118.2,Avery,35-44,Fantasy,Comedy,medium,weeknights,novelty seeker,9,tv
U082,T028,2025-04-06,3.9,92,homepage banner,0,1,Marriage Story,Movie,Drama,R,2019,1,137,7.9,68,A couple navigates a painful divorce.,Drama,0,long,99.4,Avery,35-44,Fantasy,Comedy,medium,weeknights,novelty seeker,9,tv
U082,T054,2025-07-22,3.9,83,browse row,0,0,Beef,TV Show,"Comedy, Drama",TV-MA,2023,1,35,8.0,73,A road-rage incident spirals into obsession.,Comedy,1,short,101.9,Avery,35-44,Fantasy,Comedy,medium,weeknights,novelty seeker,9,tv
U083,T049,2025-04-12,3.0,100,homepage banner,0,1,Maestro in Blue,TV Show,"Drama, Romance",TV-MA,2022,1,50,7.8,59,A musician becomes entangled in island secrets.,Drama,1,short,95.7,Riley,18-24,Action,Thriller,medium,weeknights,balanced explorer,5,tv
U083,T021,2025-10-31,3.3,82,homepage banner,0,0,Breaking Bad,TV Show,"Crime, Drama",TV-MA,2008,5,47,9.5,99,A chemistry teacher turns to meth production.,Crime,0,short,124.7,Riley,18-24,Action,Thriller,medium,weeknights,balanced explorer,5,tv
U083,T001,2025-07-19,3.0,64,browse row,0,0,Stranger Things,TV Show,"Sci-Fi, Drama",TV-14,2016,4,51,8.7,95,Supernatural mysteries unfold in a small town.,Sci-Fi,0,short,115.5,Riley,18-24,Action,Thriller,medium,weeknights,balanced explorer,5,tv
U083,T013,2025-12-27,3.8,62,search,0,0,Black Mirror,TV Show,"Sci-Fi, Thriller",TV-MA,2011,6,60,8.7,76,Dark anthology tales explore technology's consequences.,Sci-Fi,0,short,109.8,Riley,18-24,Action,Thriller,medium,weeknights,balanced explorer,5,tv
U083,T059,2025-04-16,2.2,82,friend recommendation,0,0,Anyone But You,Movie,"Romance, Comedy",R,2023,1,103,6.4,77,A fake-couple wedding trip reignites sparks.,Romance,1,medium,87.1,Riley,18-24,Action,Thriller,medium,weeknights,balanced explorer,5,tv
U083,T048,2026-01-21,1.9,59,browse row,0,0,Klaus,Movie,"Animation, Family",PG,2019,1,96,8.2,69,A postman and a toymaker spark a holiday tradition.,Animation,0,medium,102.7,Riley,18-24,Action,Thriller,medium,weeknights,balanced explorer,5,tv
U083,T016,2025-10-23,3.0,68,browse row,0,0,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Riley,18-24,Action,Thriller,medium,weeknights,balanced explorer,5,tv
U083,T007,2026-02-14,4.1,100,email click,1,1,The Witcher,TV Show,"Fantasy, Action",TV-MA,2019,3,57,8.0,86,A monster hunter navigates destiny and politics.,Fantasy,0,short,105.8,Riley,18-24,Action,Thriller,medium,weeknights,balanced explorer,5,tv
U083,T024,2025-04-06,3.7,68,friend recommendation,0,0,The Office,TV Show,Comedy,TV-14,2005,9,22,9.0,94,Office workers navigate absurd everyday routines.,Comedy,0,short,118.2,Riley,18-24,Action,Thriller,medium,weeknights,balanced explorer,5,tv
U083,T044,2025-06-16,3.7,100,search,0,1,Project Power,Movie,"Action, Sci-Fi",R,2020,1,113,6.0,64,A pill that grants powers sparks chaos in New Orleans.,Action,1,medium,79.2,Riley,18-24,Action,Thriller,medium,weeknights,balanced explorer,5,tv
U083,T053,2025-08-23,2.8,59,browse row,0,0,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Riley,18-24,Action,Thriller,medium,weeknights,balanced explorer,5,tv
U083,T017,2025-05-15,4.2,83,homepage banner,1,0,The Night Agent,TV Show,"Action, Thriller",TV-MA,2023,1,45,7.5,83,An FBI agent uncovers a conspiracy from a late-night call.,Action,1,short,99.9,Riley,18-24,Action,Thriller,medium,weeknights,balanced explorer,5,tv
U083,T057,2025-09-28,3.8,79,friend recommendation,0,0,Rebel Moon,Movie,"Sci-Fi, Action",PG-13,2023,1,134,5.6,87,A former soldier gathers warriors to fight an empire.,Sci-Fi,1,long,82.1,Riley,18-24,Action,Thriller,medium,weeknights,balanced explorer,5,tv
U083,T003,2025-11-02,3.6,80,homepage banner,0,0,Money Heist,TV Show,"Crime, Thriller",TV-MA,2017,5,50,8.2,91,A criminal mastermind executes an ambitious heist.,Crime,0,short,109.3,Riley,18-24,Action,Thriller,medium,weeknights,balanced explorer,5,tv
U083,T010,2025-11-09,2.4,74,homepage banner,0,0,Emily in Paris,TV Show,"Comedy, Romance",TV-MA,2020,4,30,6.9,72,A marketer explores work and romance in Paris.,Comedy,1,short,90.6,Riley,18-24,Action,Thriller,medium,weeknights,balanced explorer,5,tv
U083,T034,2025-10-28,3.1,83,browse row,0,0,Enola Holmes,Movie,"Mystery, Adventure",PG-13,2020,1,123,6.6,78,Sherlock's sister searches for her missing mother.,Mystery,1,medium,89.4,Riley,18-24,Action,Thriller,medium,weeknights,balanced explorer,5,tv
U083,T014,2025-06-28,3.0,77,friend recommendation,0,0,Cobra Kai,TV Show,"Comedy, Action",TV-14,2018,6,34,8.4,75,Old karate rivals reignite decades later.,Comedy,0,short,106.5,Riley,18-24,Action,Thriller,medium,weeknights,balanced explorer,5,tv
U084,T022,2025-11-13,2.3,63,search,0,0,Better Call Saul,TV Show,"Crime, Drama",TV-MA,2015,6,46,9.0,96,The morally flexible lawyer begins his transformation.,Crime,0,short,118.8,Jordan,45-54,Mystery,Action,medium,weeknights,balanced explorer,9,mobile
U084,T060,2026-02-21,3.1,62,friend recommendation,0,0,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Jordan,45-54,Mystery,Action,medium,weeknights,balanced explorer,9,mobile
U084,T001,2025-11-11,2.8,81,email click,0,0,Stranger Things,TV Show,"Sci-Fi, Drama",TV-14,2016,4,51,8.7,95,Supernatural mysteries unfold in a small town.,Sci-Fi,0,short,115.5,Jordan,45-54,Mystery,Action,medium,weeknights,balanced explorer,9,mobile
U084,T044,2025-02-13,3.1,70,search,0,0,Project Power,Movie,"Action, Sci-Fi",R,2020,1,113,6.0,64,A pill that grants powers sparks chaos in New Orleans.,Action,1,medium,79.2,Jordan,45-54,Mystery,Action,medium,weeknights,balanced explorer,9,mobile
U084,T013,2025-06-10,2.7,70,browse row,0,0,Black Mirror,TV Show,"Sci-Fi, Thriller",TV-MA,2011,6,60,8.7,76,Dark anthology tales explore technology's consequences.,Sci-Fi,0,short,109.8,Jordan,45-54,Mystery,Action,medium,weeknights,balanced explorer,9,mobile
U084,T009,2025-05-03,3.1,84,friend recommendation,0,0,Narcos,TV Show,"Crime, Drama",TV-MA,2015,3,49,8.7,78,The rise of Pablo Escobar and the drug wars.,Crime,0,short,110.4,Jordan,45-54,Mystery,Action,medium,weeknights,balanced explorer,9,mobile
U084,T002,2025-03-01,4.2,47,search,1,0,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Jordan,45-54,Mystery,Action,medium,weeknights,balanced explorer,9,mobile
U084,T023,2025-07-11,2.9,53,search,0,0,Peaky Blinders,TV Show,"Crime, History",TV-MA,2013,6,58,8.8,83,A Birmingham gang rises after World War I.,Crime,0,short,112.9,Jordan,45-54,Mystery,Action,medium,weeknights,balanced explorer,9,mobile
U084,T047,2025-09-19,2.8,86,homepage banner,0,1,The Mitchells vs. the Machines,Movie,"Animation, Comedy",PG,2021,1,113,7.6,74,A quirky family saves the world from a robot uprising.,Animation,1,medium,98.2,Jordan,45-54,Mystery,Action,medium,weeknights,balanced explorer,9,mobile
U084,T019,2025-08-03,3.7,100,email click,0,1,Squid Game,TV Show,"Thriller, Drama",TV-MA,2021,1,55,8.0,97,Cash-strapped players join deadly children's games.,Thriller,1,short,109.1,Jordan,45-54,Mystery,Action,medium,weeknights,balanced explorer,9,mobile
U084,T017,2025-03-12,4.3,85,email click,1,1,The Night Agent,TV Show,"Action, Thriller",TV-MA,2023,1,45,7.5,83,An FBI agent uncovers a conspiracy from a late-night call.,Action,1,short,99.9,Jordan,45-54,Mystery,Action,medium,weeknights,balanced explorer,9,mobile
U084,T053,2025-07-16,3.8,100,homepage banner,0,1,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Jordan,45-54,Mystery,Action,medium,weeknights,balanced explorer,9,mobile
U084,T032,2025-04-06,3.1,93,homepage banner,0,1,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Jordan,45-54,Mystery,Action,medium,weeknights,balanced explorer,9,mobile
U084,T041,2025-11-22,3.0,96,email click,0,1,The Killer,Movie,"Thriller, Crime",R,2023,1,118,6.8,60,A meticulous assassin faces unexpected consequences.,Thriller,1,medium,86.0,Jordan,45-54,Mystery,Action,medium,weeknights,balanced explorer,9,mobile
U084,T011,2025-12-22,3.9,74,search,0,0,Lupin,TV Show,"Crime, Mystery",TV-14,2021,3,44,7.5,85,A gentleman thief seeks revenge using deception.,Crime,1,short,100.5,Jordan,45-54,Mystery,Action,medium,weeknights,balanced explorer,9,mobile
U085,T019,2025-03-27,3.8,90,homepage banner,0,1,Squid Game,TV Show,"Thriller, Drama",TV-MA,2021,1,55,8.0,97,Cash-strapped players join deadly children's games.,Thriller,1,short,109.1,Alex,35-44,Romance,Thriller,medium,weekends,novelty seeker,5,mobile
U085,T018,2025-05-28,3.4,82,search,0,0,One Piece,TV Show,"Adventure, Fantasy",TV-14,2023,1,55,8.4,90,Pirates hunt treasure in a live-action adaptation.,Adventure,1,short,111.0,Alex,35-44,Romance,Thriller,medium,weekends,novelty seeker,5,mobile
U085,T056,2025-04-06,3.1,52,friend recommendation,0,0,Damsel,Movie,"Fantasy, Adventure",PG-13,2024,1,109,6.1,89,A princess fights to survive a dragon-filled cave.,Fantasy,1,medium,87.7,Alex,35-44,Romance,Thriller,medium,weekends,novelty seeker,5,mobile
U085,T061,2025-08-19,4.3,80,email click,1,0,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Alex,35-44,Romance,Thriller,medium,weekends,novelty seeker,5,mobile
U085,T021,2025-01-28,3.2,87,friend recommendation,0,1,Breaking Bad,TV Show,"Crime, Drama",TV-MA,2008,5,47,9.5,99,A chemistry teacher turns to meth production.,Crime,0,short,124.7,Alex,35-44,Romance,Thriller,medium,weekends,novelty seeker,5,mobile
U085,T051,2025-01-05,4.2,76,homepage banner,1,0,Ripley,TV Show,"Thriller, Drama",TV-MA,2024,1,55,8.1,67,"A grifter is drawn into wealth, deception, and murder.",Thriller,1,short,101.1,Alex,35-44,Romance,Thriller,medium,weekends,novelty seeker,5,mobile
U085,T031,2025-03-11,3.7,89,search,0,1,Roma,Movie,Drama,R,2018,1,135,7.7,63,A domestic worker supports a family in 1970s Mexico City.,Drama,0,long,95.9,Alex,35-44,Romance,Thriller,medium,weekends,novelty seeker,5,mobile
U085,T002,2026-02-22,3.1,78,homepage banner,0,0,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Alex,35-44,Romance,Thriller,medium,weekends,novelty seeker,5,mobile
U085,T045,2025-10-15,4.0,74,email click,1,0,Murder Mystery,Movie,"Comedy, Mystery",PG-13,2019,1,97,6.0,81,A couple becomes entangled in a murder case on a yacht.,Comedy,0,medium,84.3,Alex,35-44,Romance,Thriller,medium,weekends,novelty seeker,5,mobile
U085,T036,2025-12-01,4.2,79,homepage banner,1,0,The Gray Man,Movie,"Action, Thriller",PG-13,2022,1,122,6.5,71,A CIA asset becomes the target of a global manhunt.,Action,1,medium,86.3,Alex,35-44,Romance,Thriller,medium,weekends,novelty seeker,5,mobile
U085,T004,2025-07-29,1.8,35,homepage banner,0,0,The Queen's Gambit,TV Show,Drama,TV-MA,2020,1,56,8.5,89,A chess prodigy battles addiction and fame.,Drama,1,short,111.7,Alex,35-44,Romance,Thriller,medium,weekends,novelty seeker,5,mobile
U085,T047,2025-08-01,2.8,63,homepage banner,0,0,The Mitchells vs. the Machines,Movie,"Animation, Comedy",PG,2021,1,113,7.6,74,A quirky family saves the world from a robot uprising.,Animation,1,medium,98.2,Alex,35-44,Romance,Thriller,medium,weekends,novelty seeker,5,mobile
U085,T026,2025-09-08,4.3,98,search,1,1,Seinfeld,TV Show,Comedy,TV-14,1989,9,23,8.9,81,A comedian and friends obsess over daily trivialities.,Comedy,0,short,113.3,Alex,35-44,Romance,Thriller,medium,weekends,novelty seeker,5,mobile
U085,T053,2025-02-12,3.9,74,email click,0,0,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Alex,35-44,Romance,Thriller,medium,weekends,novelty seeker,5,mobile
U085,T046,2025-01-16,3.4,100,search,0,1,Red Notice,Movie,"Action, Comedy",PG-13,2021,1,118,6.3,92,An FBI profiler chases two rival art thieves.,Action,1,medium,90.6,Alex,35-44,Romance,Thriller,medium,weekends,novelty seeker,5,mobile
U085,T037,2025-05-30,3.3,84,browse row,0,0,To All the Boys I've Loved Before,Movie,"Romance, Comedy",PG-13,2018,1,99,7.0,76,Secret love letters create romantic chaos.,Romance,0,medium,92.8,Alex,35-44,Romance,Thriller,medium,weekends,novelty seeker,5,mobile
U086,T041,2025-04-26,3.2,65,email click,0,0,The Killer,Movie,"Thriller, Crime",R,2023,1,118,6.8,60,A meticulous assassin faces unexpected consequences.,Thriller,1,medium,86.0,Riley,25-34,Sci-Fi,Action,medium,mixed,novelty seeker,9,tv
U086,T042,2025-05-28,3.6,86,search,0,1,Leave the World Behind,Movie,"Thriller, Drama",R,2023,1,141,6.4,82,A family vacation turns ominous during a blackout.,Thriller,1,long,88.6,Riley,25-34,Sci-Fi,Action,medium,mixed,novelty seeker,9,tv
U086,T020,2026-02-04,3.5,89,homepage banner,0,1,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Riley,25-34,Sci-Fi,Action,medium,mixed,novelty seeker,9,tv
U086,T036,2025-10-17,4.3,83,homepage banner,1,0,The Gray Man,Movie,"Action, Thriller",PG-13,2022,1,122,6.5,71,A CIA asset becomes the target of a global manhunt.,Action,1,medium,86.3,Riley,25-34,Sci-Fi,Action,medium,mixed,novelty seeker,9,tv
U086,T011,2025-10-09,3.2,63,email click,0,0,Lupin,TV Show,"Crime, Mystery",TV-14,2021,3,44,7.5,85,A gentleman thief seeks revenge using deception.,Crime,1,short,100.5,Riley,25-34,Sci-Fi,Action,medium,mixed,novelty seeker,9,tv
U086,T047,2025-02-27,2.9,76,email click,0,0,The Mitchells vs. the Machines,Movie,"Animation, Comedy",PG,2021,1,113,7.6,74,A quirky family saves the world from a robot uprising.,Animation,1,medium,98.2,Riley,25-34,Sci-Fi,Action,medium,mixed,novelty seeker,9,tv
U086,T002,2025-02-28,2.6,93,friend recommendation,0,1,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Riley,25-34,Sci-Fi,Action,medium,mixed,novelty seeker,9,tv
U086,T004,2026-02-01,3.0,97,email click,0,1,The Queen's Gambit,TV Show,Drama,TV-MA,2020,1,56,8.5,89,A chess prodigy battles addiction and fame.,Drama,1,short,111.7,Riley,25-34,Sci-Fi,Action,medium,mixed,novelty seeker,9,tv
U086,T009,2026-02-26,3.3,66,friend recommendation,0,0,Narcos,TV Show,"Crime, Drama",TV-MA,2015,3,49,8.7,78,The rise of Pablo Escobar and the drug wars.,Crime,0,short,110.4,Riley,25-34,Sci-Fi,Action,medium,mixed,novelty seeker,9,tv
U086,T050,2025-10-05,3.4,53,browse row,0,0,Baby Reindeer,TV Show,"Drama, Thriller",TV-MA,2024,1,33,8.3,86,A comedian faces a stalking nightmare.,Drama,1,short,108.8,Riley,25-34,Sci-Fi,Action,medium,mixed,novelty seeker,9,tv
U086,T046,2026-01-25,4.1,75,homepage banner,1,0,Red Notice,Movie,"Action, Comedy",PG-13,2021,1,118,6.3,92,An FBI profiler chases two rival art thieves.,Action,1,medium,90.6,Riley,25-34,Sci-Fi,Action,medium,mixed,novelty seeker,9,tv
U086,T006,2025-10-07,2.3,90,search,0,1,Bridgerton,TV Show,"Romance, Drama",TV-MA,2020,3,60,7.4,84,Love and scandal shape the London social season.,Romance,1,short,99.2,Riley,25-34,Sci-Fi,Action,medium,mixed,novelty seeker,9,tv
U087,T055,2025-02-22,3.4,57,search,0,0,Blue Eye Samurai,TV Show,"Animation, Action",TV-MA,2023,1,45,8.7,70,A swordswoman seeks revenge in Edo-period Japan.,Animation,1,short,108.0,Taylor,45-54,Drama,Crime,medium,weeknights,novelty seeker,6,laptop
U087,T052,2025-06-02,3.3,85,browse row,0,1,3 Body Problem,TV Show,"Sci-Fi, Mystery",TV-MA,2024,1,58,7.6,84,Scientists confront a cosmic threat from first contact.,Sci-Fi,1,short,101.2,Taylor,45-54,Drama,Crime,medium,weeknights,novelty seeker,6,laptop
U087,T061,2025-08-19,5.0,86,friend recommendation,1,1,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Taylor,45-54,Drama,Crime,medium,weeknights,novelty seeker,6,laptop
U087,T056,2025-06-28,2.5,82,browse row,0,0,Damsel,Movie,"Fantasy, Adventure",PG-13,2024,1,109,6.1,89,A princess fights to survive a dragon-filled cave.,Fantasy,1,medium,87.7,Taylor,45-54,Drama,Crime,medium,weeknights,novelty seeker,6,laptop
U087,T024,2025-08-13,2.2,60,browse row,0,0,The Office,TV Show,Comedy,TV-14,2005,9,22,9.0,94,Office workers navigate absurd everyday routines.,Comedy,0,short,118.2,Taylor,45-54,Drama,Crime,medium,weeknights,novelty seeker,6,laptop
U087,T026,2026-02-02,2.8,71,search,0,0,Seinfeld,TV Show,Comedy,TV-14,1989,9,23,8.9,81,A comedian and friends obsess over daily trivialities.,Comedy,0,short,113.3,Taylor,45-54,Drama,Crime,medium,weeknights,novelty seeker,6,laptop
U087,T019,2025-04-18,4.8,82,email click,1,0,Squid Game,TV Show,"Thriller, Drama",TV-MA,2021,1,55,8.0,97,Cash-strapped players join deadly children's games.,Thriller,1,short,109.1,Taylor,45-54,Drama,Crime,medium,weeknights,novelty seeker,6,laptop
U087,T032,2025-12-19,3.2,76,friend recommendation,0,0,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Taylor,45-54,Drama,Crime,medium,weeknights,novelty seeker,6,laptop
U087,T028,2025-12-30,4.1,87,email click,1,1,Marriage Story,Movie,Drama,R,2019,1,137,7.9,68,A couple navigates a painful divorce.,Drama,0,long,99.4,Taylor,45-54,Drama,Crime,medium,weeknights,novelty seeker,6,laptop
U087,T035,2025-11-20,3.7,94,homepage banner,0,1,The Adam Project,Movie,"Sci-Fi, Adventure",PG-13,2022,1,106,6.7,73,A time-traveling pilot teams up with his younger self.,Sci-Fi,1,medium,88.9,Taylor,45-54,Drama,Crime,medium,weeknights,novelty seeker,6,laptop
U087,T044,2025-03-26,3.2,83,email click,0,0,Project Power,Movie,"Action, Sci-Fi",R,2020,1,113,6.0,64,A pill that grants powers sparks chaos in New Orleans.,Action,1,medium,79.2,Taylor,45-54,Drama,Crime,medium,weeknights,novelty seeker,6,laptop
U087,T060,2025-03-13,3.5,80,search,0,0,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Taylor,45-54,Drama,Crime,medium,weeknights,novelty seeker,6,laptop
U087,T057,2026-02-21,3.7,92,search,0,1,Rebel Moon,Movie,"Sci-Fi, Action",PG-13,2023,1,134,5.6,87,A former soldier gathers warriors to fight an empire.,Sci-Fi,1,long,82.1,Taylor,45-54,Drama,Crime,medium,weeknights,novelty seeker,6,laptop
U087,T001,2026-02-17,3.6,71,browse row,0,0,Stranger Things,TV Show,"Sci-Fi, Drama",TV-14,2016,4,51,8.7,95,Supernatural mysteries unfold in a small town.,Sci-Fi,0,short,115.5,Taylor,45-54,Drama,Crime,medium,weeknights,novelty seeker,6,laptop
U088,T020,2025-06-29,3.4,73,email click,0,0,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Cameron,35-44,Mystery,Romance,medium,mixed,balanced explorer,7,tv
U088,T014,2025-05-24,4.0,100,email click,1,1,Cobra Kai,TV Show,"Comedy, Action",TV-14,2018,6,34,8.4,75,Old karate rivals reignite decades later.,Comedy,0,short,106.5,Cameron,35-44,Mystery,Romance,medium,mixed,balanced explorer,7,tv
U088,T042,2025-10-03,4.0,71,search,1,0,Leave the World Behind,Movie,"Thriller, Drama",R,2023,1,141,6.4,82,A family vacation turns ominous during a blackout.,Thriller,1,long,88.6,Cameron,35-44,Mystery,Romance,medium,mixed,balanced explorer,7,tv
U088,T027,2025-06-15,3.3,70,friend recommendation,0,0,The Irishman,Movie,"Crime, Drama",R,2019,1,209,7.8,70,An aging hitman reflects on loyalty and regret.,Crime,0,long,99.0,Cameron,35-44,Mystery,Romance,medium,mixed,balanced explorer,7,tv
U088,T050,2025-05-29,3.2,64,email click,0,0,Baby Reindeer,TV Show,"Drama, Thriller",TV-MA,2024,1,33,8.3,86,A comedian faces a stalking nightmare.,Drama,1,short,108.8,Cameron,35-44,Mystery,Romance,medium,mixed,balanced explorer,7,tv
U088,T022,2025-05-17,3.7,70,email click,0,0,Better Call Saul,TV Show,"Crime, Drama",TV-MA,2015,6,46,9.0,96,The morally flexible lawyer begins his transformation.,Crime,0,short,118.8,Cameron,35-44,Mystery,Romance,medium,mixed,balanced explorer,7,tv
U088,T055,2025-12-14,1.8,93,browse row,0,1,Blue Eye Samurai,TV Show,"Animation, Action",TV-MA,2023,1,45,8.7,70,A swordswoman seeks revenge in Edo-period Japan.,Animation,1,short,108.0,Cameron,35-44,Mystery,Romance,medium,mixed,balanced explorer,7,tv
U088,T012,2025-03-11,3.3,61,homepage banner,0,0,Ozark,TV Show,"Crime, Drama",TV-MA,2017,4,60,8.5,77,A family launders money for a dangerous cartel.,Crime,0,short,108.1,Cameron,35-44,Mystery,Romance,medium,mixed,balanced explorer,7,tv
U088,T036,2025-01-31,2.9,65,friend recommendation,0,0,The Gray Man,Movie,"Action, Thriller",PG-13,2022,1,122,6.5,71,A CIA asset becomes the target of a global manhunt.,Action,1,medium,86.3,Cameron,35-44,Mystery,Romance,medium,mixed,balanced explorer,7,tv
U088,T003,2025-12-02,3.0,87,search,0,1,Money Heist,TV Show,"Crime, Thriller",TV-MA,2017,5,50,8.2,91,A criminal mastermind executes an ambitious heist.,Crime,0,short,109.3,Cameron,35-44,Mystery,Romance,medium,mixed,balanced explorer,7,tv
U088,T015,2025-12-26,4.0,88,search,1,1,Heartstopper,TV Show,"Romance, Teen",TV-14,2022,2,31,8.5,87,"Two students navigate identity, friendship, and love.",Romance,1,short,111.1,Cameron,35-44,Mystery,Romance,medium,mixed,balanced explorer,7,tv
U088,T060,2025-05-08,3.0,91,search,0,1,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Cameron,35-44,Mystery,Romance,medium,mixed,balanced explorer,7,tv
U088,T034,2025-12-31,2.8,61,friend recommendation,0,0,Enola Holmes,Movie,"Mystery, Adventure",PG-13,2020,1,123,6.6,78,Sherlock's sister searches for her missing mother.,Mystery,1,medium,89.4,Cameron,35-44,Mystery,Romance,medium,mixed,balanced explorer,7,tv
U088,T030,2026-03-01,3.4,94,search,0,1,Glass Onion,Movie,"Mystery, Comedy",PG-13,2022,1,139,7.1,85,A detective untangles a billionaire's island murder game.,Mystery,1,long,96.5,Cameron,35-44,Mystery,Romance,medium,mixed,balanced explorer,7,tv
U088,T049,2026-01-25,3.2,57,homepage banner,0,0,Maestro in Blue,TV Show,"Drama, Romance",TV-MA,2022,1,50,7.8,59,A musician becomes entangled in island secrets.,Drama,1,short,95.7,Cameron,35-44,Mystery,Romance,medium,mixed,balanced explorer,7,tv
U088,T032,2025-09-08,3.3,64,search,0,0,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Cameron,35-44,Mystery,Romance,medium,mixed,balanced explorer,7,tv
U088,T023,2025-10-23,2.8,100,friend recommendation,0,1,Peaky Blinders,TV Show,"Crime, History",TV-MA,2013,6,58,8.8,83,A Birmingham gang rises after World War I.,Crime,0,short,112.9,Cameron,35-44,Mystery,Romance,medium,mixed,balanced explorer,7,tv
U089,T053,2025-08-01,5.0,100,homepage banner,1,1,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Cameron,25-34,Fantasy,Thriller,medium,weekends,comfort rewatcher,5,tv
U089,T005,2025-08-20,4.4,84,browse row,1,0,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Cameron,25-34,Fantasy,Thriller,medium,weekends,comfort rewatcher,5,tv
U089,T018,2025-11-21,3.5,82,browse row,0,0,One Piece,TV Show,"Adventure, Fantasy",TV-14,2023,1,55,8.4,90,Pirates hunt treasure in a live-action adaptation.,Adventure,1,short,111.0,Cameron,25-34,Fantasy,Thriller,medium,weekends,comfort rewatcher,5,tv
U089,T037,2025-07-26,3.9,79,email click,0,0,To All the Boys I've Loved Before,Movie,"Romance, Comedy",PG-13,2018,1,99,7.0,76,Secret love letters create romantic chaos.,Romance,0,medium,92.8,Cameron,25-34,Fantasy,Thriller,medium,weekends,comfort rewatcher,5,tv
U089,T013,2026-01-19,3.6,100,friend recommendation,0,1,Black Mirror,TV Show,"Sci-Fi, Thriller",TV-MA,2011,6,60,8.7,76,Dark anthology tales explore technology's consequences.,Sci-Fi,0,short,109.8,Cameron,25-34,Fantasy,Thriller,medium,weekends,comfort rewatcher,5,tv
U089,T038,2025-12-22,3.8,90,friend recommendation,0,1,The Old Guard,Movie,"Action, Fantasy",R,2020,1,125,6.7,67,Immortal mercenaries fight to protect their secret.,Action,1,medium,87.1,Cameron,25-34,Fantasy,Thriller,medium,weekends,comfort rewatcher,5,tv
U089,T060,2025-08-21,3.5,77,homepage banner,0,0,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Cameron,25-34,Fantasy,Thriller,medium,weekends,comfort rewatcher,5,tv
U089,T032,2025-06-17,3.2,86,email click,0,1,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Cameron,25-34,Fantasy,Thriller,medium,weekends,comfort rewatcher,5,tv
U089,T007,2025-01-02,3.8,95,browse row,0,1,The Witcher,TV Show,"Fantasy, Action",TV-MA,2019,3,57,8.0,86,A monster hunter navigates destiny and politics.,Fantasy,0,short,105.8,Cameron,25-34,Fantasy,Thriller,medium,weekends,comfort rewatcher,5,tv
U089,T002,2026-01-10,2.7,61,homepage banner,0,0,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Cameron,25-34,Fantasy,Thriller,medium,weekends,comfort rewatcher,5,tv
U089,T057,2025-11-22,2.1,58,friend recommendation,0,0,Rebel Moon,Movie,"Sci-Fi, Action",PG-13,2023,1,134,5.6,87,A former soldier gathers warriors to fight an empire.,Sci-Fi,1,long,82.1,Cameron,25-34,Fantasy,Thriller,medium,weekends,comfort rewatcher,5,tv
U089,T047,2025-02-02,2.5,63,email click,0,0,The Mitchells vs. the Machines,Movie,"Animation, Comedy",PG,2021,1,113,7.6,74,A quirky family saves the world from a robot uprising.,Animation,1,medium,98.2,Cameron,25-34,Fantasy,Thriller,medium,weekends,comfort rewatcher,5,tv
U089,T050,2025-07-23,4.0,59,search,1,0,Baby Reindeer,TV Show,"Drama, Thriller",TV-MA,2024,1,33,8.3,86,A comedian faces a stalking nightmare.,Drama,1,short,108.8,Cameron,25-34,Fantasy,Thriller,medium,weekends,comfort rewatcher,5,tv
U089,T039,2025-08-08,1.8,51,search,0,0,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Cameron,25-34,Fantasy,Thriller,medium,weekends,comfort rewatcher,5,tv
U089,T030,2025-09-11,3.3,82,friend recommendation,0,0,Glass Onion,Movie,"Mystery, Comedy",PG-13,2022,1,139,7.1,85,A detective untangles a billionaire's island murder game.,Mystery,1,long,96.5,Cameron,25-34,Fantasy,Thriller,medium,weekends,comfort rewatcher,5,tv
U089,T004,2025-06-15,2.5,87,friend recommendation,0,1,The Queen's Gambit,TV Show,Drama,TV-MA,2020,1,56,8.5,89,A chess prodigy battles addiction and fame.,Drama,1,short,111.7,Cameron,25-34,Fantasy,Thriller,medium,weekends,comfort rewatcher,5,tv
U089,T059,2025-06-22,2.6,77,email click,0,0,Anyone But You,Movie,"Romance, Comedy",R,2023,1,103,6.4,77,A fake-couple wedding trip reignites sparks.,Romance,1,medium,87.1,Cameron,25-34,Fantasy,Thriller,medium,weekends,comfort rewatcher,5,tv
U089,T061,2025-10-23,2.8,59,search,0,0,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Cameron,25-34,Fantasy,Thriller,medium,weekends,comfort rewatcher,5,tv
U090,T022,2025-09-06,4.2,90,friend recommendation,1,1,Better Call Saul,TV Show,"Crime, Drama",TV-MA,2015,6,46,9.0,96,The morally flexible lawyer begins his transformation.,Crime,0,short,118.8,Cameron,25-34,Crime,Animation,long,weeknights,comfort rewatcher,9,tv
U090,T044,2025-12-16,2.5,67,browse row,0,0,Project Power,Movie,"Action, Sci-Fi",R,2020,1,113,6.0,64,A pill that grants powers sparks chaos in New Orleans.,Action,1,medium,79.2,Cameron,25-34,Crime,Animation,long,weeknights,comfort rewatcher,9,tv
U090,T018,2025-01-24,2.1,60,browse row,0,0,One Piece,TV Show,"Adventure, Fantasy",TV-14,2023,1,55,8.4,90,Pirates hunt treasure in a live-action adaptation.,Adventure,1,short,111.0,Cameron,25-34,Crime,Animation,long,weeknights,comfort rewatcher,9,tv
U090,T020,2025-11-17,3.6,69,homepage banner,0,0,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Cameron,25-34,Crime,Animation,long,weeknights,comfort rewatcher,9,tv
U090,T006,2025-01-09,4.1,64,browse row,1,0,Bridgerton,TV Show,"Romance, Drama",TV-MA,2020,3,60,7.4,84,Love and scandal shape the London social season.,Romance,1,short,99.2,Cameron,25-34,Crime,Animation,long,weeknights,comfort rewatcher,9,tv
U090,T032,2025-03-22,3.1,66,homepage banner,0,0,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Cameron,25-34,Crime,Animation,long,weeknights,comfort rewatcher,9,tv
U090,T025,2025-08-22,2.9,94,browse row,0,1,Friends,TV Show,"Comedy, Romance",TV-14,1994,10,22,8.9,92,Six friends face life and love in New York.,Comedy,0,short,116.6,Cameron,25-34,Crime,Animation,long,weeknights,comfort rewatcher,9,tv
U090,T033,2025-08-08,2.4,62,search,0,0,Extraction,Movie,"Action, Thriller",R,2020,1,116,6.8,74,A mercenary attempts a dangerous rescue mission.,Action,1,medium,90.2,Cameron,25-34,Crime,Animation,long,weeknights,comfort rewatcher,9,tv
U090,T008,2025-12-19,3.4,80,search,0,0,Dark,TV Show,"Sci-Fi, Mystery",TV-MA,2017,3,52,8.7,80,Time-travel secrets emerge in a German town.,Sci-Fi,0,short,111.0,Cameron,25-34,Crime,Animation,long,weeknights,comfort rewatcher,9,tv
U090,T051,2025-11-29,3.1,61,friend recommendation,0,0,Ripley,TV Show,"Thriller, Drama",TV-MA,2024,1,55,8.1,67,"A grifter is drawn into wealth, deception, and murder.",Thriller,1,short,101.1,Cameron,25-34,Crime,Animation,long,weeknights,comfort rewatcher,9,tv
U090,T060,2025-03-23,3.3,94,friend recommendation,0,1,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Cameron,25-34,Crime,Animation,long,weeknights,comfort rewatcher,9,tv
U090,T059,2025-02-17,2.0,54,friend recommendation,0,0,Anyone But You,Movie,"Romance, Comedy",R,2023,1,103,6.4,77,A fake-couple wedding trip reignites sparks.,Romance,1,medium,87.1,Cameron,25-34,Crime,Animation,long,weeknights,comfort rewatcher,9,tv
U090,T004,2025-05-09,1.9,72,browse row,0,0,The Queen's Gambit,TV Show,Drama,TV-MA,2020,1,56,8.5,89,A chess prodigy battles addiction and fame.,Drama,1,short,111.7,Cameron,25-34,Crime,Animation,long,weeknights,comfort rewatcher,9,tv
U090,T027,2025-07-10,5.0,92,search,1,1,The Irishman,Movie,"Crime, Drama",R,2019,1,209,7.8,70,An aging hitman reflects on loyalty and regret.,Crime,0,long,99.0,Cameron,25-34,Crime,Animation,long,weeknights,comfort rewatcher,9,tv
U090,T047,2025-01-27,3.0,60,homepage banner,0,0,The Mitchells vs. the Machines,Movie,"Animation, Comedy",PG,2021,1,113,7.6,74,A quirky family saves the world from a robot uprising.,Animation,1,medium,98.2,Cameron,25-34,Crime,Animation,long,weeknights,comfort rewatcher,9,tv
U090,T046,2025-11-17,2.8,68,friend recommendation,0,0,Red Notice,Movie,"Action, Comedy",PG-13,2021,1,118,6.3,92,An FBI profiler chases two rival art thieves.,Action,1,medium,90.6,Cameron,25-34,Crime,Animation,long,weeknights,comfort rewatcher,9,tv
U090,T034,2026-01-07,3.5,69,search,0,0,Enola Holmes,Movie,"Mystery, Adventure",PG-13,2020,1,123,6.6,78,Sherlock's sister searches for her missing mother.,Mystery,1,medium,89.4,Cameron,25-34,Crime,Animation,long,weeknights,comfort rewatcher,9,tv
U091,T056,2025-12-02,1.5,40,browse row,0,0,Damsel,Movie,"Fantasy, Adventure",PG-13,2024,1,109,6.1,89,A princess fights to survive a dragon-filled cave.,Fantasy,1,medium,87.7,Casey,18-24,Mystery,Animation,long,weekends,comfort rewatcher,5,tv
U091,T017,2025-12-27,3.4,91,browse row,0,1,The Night Agent,TV Show,"Action, Thriller",TV-MA,2023,1,45,7.5,83,An FBI agent uncovers a conspiracy from a late-night call.,Action,1,short,99.9,Casey,18-24,Mystery,Animation,long,weekends,comfort rewatcher,5,tv
U091,T054,2025-01-01,1.9,51,search,0,0,Beef,TV Show,"Comedy, Drama",TV-MA,2023,1,35,8.0,73,A road-rage incident spirals into obsession.,Comedy,1,short,101.9,Casey,18-24,Mystery,Animation,long,weekends,comfort rewatcher,5,tv
U091,T032,2025-09-02,3.9,73,browse row,0,0,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Casey,18-24,Mystery,Animation,long,weekends,comfort rewatcher,5,tv
U091,T003,2025-03-09,2.9,95,email click,0,1,Money Heist,TV Show,"Crime, Thriller",TV-MA,2017,5,50,8.2,91,A criminal mastermind executes an ambitious heist.,Crime,0,short,109.3,Casey,18-24,Mystery,Animation,long,weekends,comfort rewatcher,5,tv
U091,T006,2025-04-26,2.8,65,email click,0,0,Bridgerton,TV Show,"Romance, Drama",TV-MA,2020,3,60,7.4,84,Love and scandal shape the London social season.,Romance,1,short,99.2,Casey,18-24,Mystery,Animation,long,weekends,comfort rewatcher,5,tv
U091,T033,2025-12-15,2.9,100,homepage banner,0,1,Extraction,Movie,"Action, Thriller",R,2020,1,116,6.8,74,A mercenary attempts a dangerous rescue mission.,Action,1,medium,90.2,Casey,18-24,Mystery,Animation,long,weekends,comfort rewatcher,5,tv
U091,T035,2025-01-05,3.3,78,browse row,0,0,The Adam Project,Movie,"Sci-Fi, Adventure",PG-13,2022,1,106,6.7,73,A time-traveling pilot teams up with his younger self.,Sci-Fi,1,medium,88.9,Casey,18-24,Mystery,Animation,long,weekends,comfort rewatcher,5,tv
U091,T019,2025-12-23,2.7,80,friend recommendation,0,0,Squid Game,TV Show,"Thriller, Drama",TV-MA,2021,1,55,8.0,97,Cash-strapped players join deadly children's games.,Thriller,1,short,109.1,Casey,18-24,Mystery,Animation,long,weekends,comfort rewatcher,5,tv
U091,T024,2026-02-23,3.4,62,browse row,0,0,The Office,TV Show,Comedy,TV-14,2005,9,22,9.0,94,Office workers navigate absurd everyday routines.,Comedy,0,short,118.2,Casey,18-24,Mystery,Animation,long,weekends,comfort rewatcher,5,tv
U091,T011,2025-08-05,4.4,86,search,1,1,Lupin,TV Show,"Crime, Mystery",TV-14,2021,3,44,7.5,85,A gentleman thief seeks revenge using deception.,Crime,1,short,100.5,Casey,18-24,Mystery,Animation,long,weekends,comfort rewatcher,5,tv
U091,T030,2025-09-02,4.3,74,browse row,1,0,Glass Onion,Movie,"Mystery, Comedy",PG-13,2022,1,139,7.1,85,A detective untangles a billionaire's island murder game.,Mystery,1,long,96.5,Casey,18-24,Mystery,Animation,long,weekends,comfort rewatcher,5,tv
U091,T045,2025-04-28,3.8,67,homepage banner,0,0,Murder Mystery,Movie,"Comedy, Mystery",PG-13,2019,1,97,6.0,81,A couple becomes entangled in a murder case on a yacht.,Comedy,0,medium,84.3,Casey,18-24,Mystery,Animation,long,weekends,comfort rewatcher,5,tv
U091,T027,2025-02-15,2.7,77,browse row,0,0,The Irishman,Movie,"Crime, Drama",R,2019,1,209,7.8,70,An aging hitman reflects on loyalty and regret.,Crime,0,long,99.0,Casey,18-24,Mystery,Animation,long,weekends,comfort rewatcher,5,tv
U092,T058,2025-06-10,4.3,89,friend recommendation,1,1,Carry-On,Movie,"Thriller, Action",PG-13,2024,1,112,6.8,90,An airport employee is blackmailed into a dangerous plot.,Thriller,1,medium,95.0,Alex,25-34,Comedy,Thriller,short,mixed,balanced explorer,2,laptop
U092,T028,2025-06-03,4.3,84,search,1,0,Marriage Story,Movie,Drama,R,2019,1,137,7.9,68,A couple navigates a painful divorce.,Drama,0,long,99.4,Alex,25-34,Comedy,Thriller,short,mixed,balanced explorer,2,laptop
U092,T049,2025-07-15,1.4,80,search,0,0,Maestro in Blue,TV Show,"Drama, Romance",TV-MA,2022,1,50,7.8,59,A musician becomes entangled in island secrets.,Drama,1,short,95.7,Alex,25-34,Comedy,Thriller,short,mixed,balanced explorer,2,laptop
U092,T023,2025-11-25,3.6,90,search,0,1,Peaky Blinders,TV Show,"Crime, History",TV-MA,2013,6,58,8.8,83,A Birmingham gang rises after World War I.,Crime,0,short,112.9,Alex,25-34,Comedy,Thriller,short,mixed,balanced explorer,2,laptop
U092,T033,2025-02-05,3.0,74,email click,0,0,Extraction,Movie,"Action, Thriller",R,2020,1,116,6.8,74,A mercenary attempts a dangerous rescue mission.,Action,1,medium,90.2,Alex,25-34,Comedy,Thriller,short,mixed,balanced explorer,2,laptop
U092,T027,2025-10-16,3.1,72,browse row,0,0,The Irishman,Movie,"Crime, Drama",R,2019,1,209,7.8,70,An aging hitman reflects on loyalty and regret.,Crime,0,long,99.0,Alex,25-34,Comedy,Thriller,short,mixed,balanced explorer,2,laptop
U092,T001,2025-11-09,2.3,100,search,0,1,Stranger Things,TV Show,"Sci-Fi, Drama",TV-14,2016,4,51,8.7,95,Supernatural mysteries unfold in a small town.,Sci-Fi,0,short,115.5,Alex,25-34,Comedy,Thriller,short,mixed,balanced explorer,2,laptop
U092,T045,2025-08-14,4.8,99,friend recommendation,1,1,Murder Mystery,Movie,"Comedy, Mystery",PG-13,2019,1,97,6.0,81,A couple becomes entangled in a murder case on a yacht.,Comedy,0,medium,84.3,Alex,25-34,Comedy,Thriller,short,mixed,balanced explorer,2,laptop
U092,T008,2026-01-05,4.1,95,search,1,1,Dark,TV Show,"Sci-Fi, Mystery",TV-MA,2017,3,52,8.7,80,Time-travel secrets emerge in a German town.,Sci-Fi,0,short,111.0,Alex,25-34,Comedy,Thriller,short,mixed,balanced explorer,2,laptop
U093,T058,2026-01-19,3.6,92,search,0,1,Carry-On,Movie,"Thriller, Action",PG-13,2024,1,112,6.8,90,An airport employee is blackmailed into a dangerous plot.,Thriller,1,medium,95.0,Quinn,18-24,Thriller,Comedy,long,weekends,comfort rewatcher,6,tv
U093,T060,2025-07-30,3.9,82,email click,0,0,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Quinn,18-24,Thriller,Comedy,long,weekends,comfort rewatcher,6,tv
U093,T061,2025-12-18,2.9,100,homepage banner,0,1,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Quinn,18-24,Thriller,Comedy,long,weekends,comfort rewatcher,6,tv
U093,T003,2025-04-22,3.5,58,browse row,0,0,Money Heist,TV Show,"Crime, Thriller",TV-MA,2017,5,50,8.2,91,A criminal mastermind executes an ambitious heist.,Crime,0,short,109.3,Quinn,18-24,Thriller,Comedy,long,weekends,comfort rewatcher,6,tv
U093,T039,2025-02-21,1.8,64,search,0,0,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Quinn,18-24,Thriller,Comedy,long,weekends,comfort rewatcher,6,tv
U093,T056,2026-01-21,2.9,89,browse row,0,1,Damsel,Movie,"Fantasy, Adventure",PG-13,2024,1,109,6.1,89,A princess fights to survive a dragon-filled cave.,Fantasy,1,medium,87.7,Quinn,18-24,Thriller,Comedy,long,weekends,comfort rewatcher,6,tv
U093,T034,2025-10-29,3.4,83,homepage banner,0,0,Enola Holmes,Movie,"Mystery, Adventure",PG-13,2020,1,123,6.6,78,Sherlock's sister searches for her missing mother.,Mystery,1,medium,89.4,Quinn,18-24,Thriller,Comedy,long,weekends,comfort rewatcher,6,tv
U093,T001,2025-06-29,2.8,89,homepage banner,0,1,Stranger Things,TV Show,"Sci-Fi, Drama",TV-14,2016,4,51,8.7,95,Supernatural mysteries unfold in a small town.,Sci-Fi,0,short,115.5,Quinn,18-24,Thriller,Comedy,long,weekends,comfort rewatcher,6,tv
U093,T028,2025-06-11,4.4,100,search,1,1,Marriage Story,Movie,Drama,R,2019,1,137,7.9,68,A couple navigates a painful divorce.,Drama,0,long,99.4,Quinn,18-24,Thriller,Comedy,long,weekends,comfort rewatcher,6,tv
U093,T015,2025-05-07,2.7,83,friend recommendation,0,0,Heartstopper,TV Show,"Romance, Teen",TV-14,2022,2,31,8.5,87,"Two students navigate identity, friendship, and love.",Romance,1,short,111.1,Quinn,18-24,Thriller,Comedy,long,weekends,comfort rewatcher,6,tv
U093,T025,2025-11-27,3.4,62,browse row,0,0,Friends,TV Show,"Comedy, Romance",TV-14,1994,10,22,8.9,92,Six friends face life and love in New York.,Comedy,0,short,116.6,Quinn,18-24,Thriller,Comedy,long,weekends,comfort rewatcher,6,tv
U093,T026,2025-05-08,3.1,70,email click,0,0,Seinfeld,TV Show,Comedy,TV-14,1989,9,23,8.9,81,A comedian and friends obsess over daily trivialities.,Comedy,0,short,113.3,Quinn,18-24,Thriller,Comedy,long,weekends,comfort rewatcher,6,tv
U093,T002,2025-11-04,3.1,100,email click,0,1,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Quinn,18-24,Thriller,Comedy,long,weekends,comfort rewatcher,6,tv
U093,T005,2026-01-05,2.5,89,email click,0,1,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Quinn,18-24,Thriller,Comedy,long,weekends,comfort rewatcher,6,tv
U093,T049,2025-05-26,2.8,42,browse row,0,0,Maestro in Blue,TV Show,"Drama, Romance",TV-MA,2022,1,50,7.8,59,A musician becomes entangled in island secrets.,Drama,1,short,95.7,Quinn,18-24,Thriller,Comedy,long,weekends,comfort rewatcher,6,tv
U093,T024,2025-12-04,3.3,95,friend recommendation,0,1,The Office,TV Show,Comedy,TV-14,2005,9,22,9.0,94,Office workers navigate absurd everyday routines.,Comedy,0,short,118.2,Quinn,18-24,Thriller,Comedy,long,weekends,comfort rewatcher,6,tv
U093,T018,2025-04-16,3.2,83,email click,0,0,One Piece,TV Show,"Adventure, Fantasy",TV-14,2023,1,55,8.4,90,Pirates hunt treasure in a live-action adaptation.,Adventure,1,short,111.0,Quinn,18-24,Thriller,Comedy,long,weekends,comfort rewatcher,6,tv
U093,T023,2025-11-07,3.8,67,email click,0,0,Peaky Blinders,TV Show,"Crime, History",TV-MA,2013,6,58,8.8,83,A Birmingham gang rises after World War I.,Crime,0,short,112.9,Quinn,18-24,Thriller,Comedy,long,weekends,comfort rewatcher,6,tv
U094,T060,2026-01-18,3.7,79,homepage banner,0,0,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Riley,18-24,Fantasy,Mystery,medium,weeknights,balanced explorer,3,mobile
U094,T028,2025-06-01,3.4,55,browse row,0,0,Marriage Story,Movie,Drama,R,2019,1,137,7.9,68,A couple navigates a painful divorce.,Drama,0,long,99.4,Riley,18-24,Fantasy,Mystery,medium,weeknights,balanced explorer,3,mobile
U094,T045,2026-02-06,3.4,79,search,0,0,Murder Mystery,Movie,"Comedy, Mystery",PG-13,2019,1,97,6.0,81,A couple becomes entangled in a murder case on a yacht.,Comedy,0,medium,84.3,Riley,18-24,Fantasy,Mystery,medium,weeknights,balanced explorer,3,mobile
U094,T022,2025-09-11,3.6,91,homepage banner,0,1,Better Call Saul,TV Show,"Crime, Drama",TV-MA,2015,6,46,9.0,96,The morally flexible lawyer begins his transformation.,Crime,0,short,118.8,Riley,18-24,Fantasy,Mystery,medium,weeknights,balanced explorer,3,mobile
U094,T032,2025-02-27,2.8,77,search,0,0,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Riley,18-24,Fantasy,Mystery,medium,weeknights,balanced explorer,3,mobile
U094,T053,2025-09-13,4.8,90,email click,1,1,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Riley,18-24,Fantasy,Mystery,medium,weeknights,balanced explorer,3,mobile
U094,T040,2025-02-06,3.8,54,email click,0,0,Guillermo del Toro's Pinocchio,Movie,"Animation, Fantasy",PG,2022,1,117,7.6,66,A wooden boy comes to life in wartime Italy.,Animation,1,medium,95.8,Riley,18-24,Fantasy,Mystery,medium,weeknights,balanced explorer,3,mobile
U094,T038,2025-01-07,3.8,56,friend recommendation,0,0,The Old Guard,Movie,"Action, Fantasy",R,2020,1,125,6.7,67,Immortal mercenaries fight to protect their secret.,Action,1,medium,87.1,Riley,18-24,Fantasy,Mystery,medium,weeknights,balanced explorer,3,mobile
U094,T056,2025-06-12,3.9,98,search,0,1,Damsel,Movie,"Fantasy, Adventure",PG-13,2024,1,109,6.1,89,A princess fights to survive a dragon-filled cave.,Fantasy,1,medium,87.7,Riley,18-24,Fantasy,Mystery,medium,weeknights,balanced explorer,3,mobile
U094,T024,2025-07-18,1.7,80,email click,0,0,The Office,TV Show,Comedy,TV-14,2005,9,22,9.0,94,Office workers navigate absurd everyday routines.,Comedy,0,short,118.2,Riley,18-24,Fantasy,Mystery,medium,weeknights,balanced explorer,3,mobile
U094,T051,2025-08-04,2.8,72,friend recommendation,0,0,Ripley,TV Show,"Thriller, Drama",TV-MA,2024,1,55,8.1,67,"A grifter is drawn into wealth, deception, and murder.",Thriller,1,short,101.1,Riley,18-24,Fantasy,Mystery,medium,weeknights,balanced explorer,3,mobile
U095,T045,2025-12-16,2.9,59,search,0,0,Murder Mystery,Movie,"Comedy, Mystery",PG-13,2019,1,97,6.0,81,A couple becomes entangled in a murder case on a yacht.,Comedy,0,medium,84.3,Jordan,18-24,Action,Fantasy,short,mixed,comfort rewatcher,6,mobile
U095,T018,2026-01-26,5.0,92,homepage banner,1,1,One Piece,TV Show,"Adventure, Fantasy",TV-14,2023,1,55,8.4,90,Pirates hunt treasure in a live-action adaptation.,Adventure,1,short,111.0,Jordan,18-24,Action,Fantasy,short,mixed,comfort rewatcher,6,mobile
U095,T003,2026-01-30,3.6,81,browse row,0,0,Money Heist,TV Show,"Crime, Thriller",TV-MA,2017,5,50,8.2,91,A criminal mastermind executes an ambitious heist.,Crime,0,short,109.3,Jordan,18-24,Action,Fantasy,short,mixed,comfort rewatcher,6,mobile
U095,T036,2025-01-09,3.5,90,email click,0,1,The Gray Man,Movie,"Action, Thriller",PG-13,2022,1,122,6.5,71,A CIA asset becomes the target of a global manhunt.,Action,1,medium,86.3,Jordan,18-24,Action,Fantasy,short,mixed,comfort rewatcher,6,mobile
U095,T041,2025-02-04,3.2,67,browse row,0,0,The Killer,Movie,"Thriller, Crime",R,2023,1,118,6.8,60,A meticulous assassin faces unexpected consequences.,Thriller,1,medium,86.0,Jordan,18-24,Action,Fantasy,short,mixed,comfort rewatcher,6,mobile
U095,T038,2025-05-15,4.9,86,search,1,1,The Old Guard,Movie,"Action, Fantasy",R,2020,1,125,6.7,67,Immortal mercenaries fight to protect their secret.,Action,1,medium,87.1,Jordan,18-24,Action,Fantasy,short,mixed,comfort rewatcher,6,mobile
U095,T025,2025-01-21,2.6,52,browse row,0,0,Friends,TV Show,"Comedy, Romance",TV-14,1994,10,22,8.9,92,Six friends face life and love in New York.,Comedy,0,short,116.6,Jordan,18-24,Action,Fantasy,short,mixed,comfort rewatcher,6,mobile
U095,T059,2026-02-09,3.2,71,homepage banner,0,0,Anyone But You,Movie,"Romance, Comedy",R,2023,1,103,6.4,77,A fake-couple wedding trip reignites sparks.,Romance,1,medium,87.1,Jordan,18-24,Action,Fantasy,short,mixed,comfort rewatcher,6,mobile
U095,T007,2025-09-17,5.0,94,friend recommendation,1,1,The Witcher,TV Show,"Fantasy, Action",TV-MA,2019,3,57,8.0,86,A monster hunter navigates destiny and politics.,Fantasy,0,short,105.8,Jordan,18-24,Action,Fantasy,short,mixed,comfort rewatcher,6,mobile
U095,T006,2025-11-18,2.8,75,email click,0,0,Bridgerton,TV Show,"Romance, Drama",TV-MA,2020,3,60,7.4,84,Love and scandal shape the London social season.,Romance,1,short,99.2,Jordan,18-24,Action,Fantasy,short,mixed,comfort rewatcher,6,mobile
U095,T049,2026-01-28,2.5,68,homepage banner,0,0,Maestro in Blue,TV Show,"Drama, Romance",TV-MA,2022,1,50,7.8,59,A musician becomes entangled in island secrets.,Drama,1,short,95.7,Jordan,18-24,Action,Fantasy,short,mixed,comfort rewatcher,6,mobile
U095,T005,2025-08-05,4.1,88,homepage banner,1,1,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Jordan,18-24,Action,Fantasy,short,mixed,comfort rewatcher,6,mobile
U095,T031,2025-02-12,3.8,100,email click,0,1,Roma,Movie,Drama,R,2018,1,135,7.7,63,A domestic worker supports a family in 1970s Mexico City.,Drama,0,long,95.9,Jordan,18-24,Action,Fantasy,short,mixed,comfort rewatcher,6,mobile
U095,T012,2025-10-03,3.7,99,email click,0,1,Ozark,TV Show,"Crime, Drama",TV-MA,2017,4,60,8.5,77,A family launders money for a dangerous cartel.,Crime,0,short,108.1,Jordan,18-24,Action,Fantasy,short,mixed,comfort rewatcher,6,mobile
U095,T021,2025-03-20,4.8,77,friend recommendation,1,0,Breaking Bad,TV Show,"Crime, Drama",TV-MA,2008,5,47,9.5,99,A chemistry teacher turns to meth production.,Crime,0,short,124.7,Jordan,18-24,Action,Fantasy,short,mixed,comfort rewatcher,6,mobile
U095,T051,2025-02-12,3.4,71,friend recommendation,0,0,Ripley,TV Show,"Thriller, Drama",TV-MA,2024,1,55,8.1,67,"A grifter is drawn into wealth, deception, and murder.",Thriller,1,short,101.1,Jordan,18-24,Action,Fantasy,short,mixed,comfort rewatcher,6,mobile
U096,T005,2025-09-19,3.6,78,search,0,0,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Morgan,25-34,Sci-Fi,Crime,long,weekends,novelty seeker,9,tv
U096,T039,2026-02-18,3.6,74,search,0,0,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Morgan,25-34,Sci-Fi,Crime,long,weekends,novelty seeker,9,tv
U096,T051,2025-10-02,3.8,91,friend recommendation,0,1,Ripley,TV Show,"Thriller, Drama",TV-MA,2024,1,55,8.1,67,"A grifter is drawn into wealth, deception, and murder.",Thriller,1,short,101.1,Morgan,25-34,Sci-Fi,Crime,long,weekends,novelty seeker,9,tv
U096,T007,2025-07-20,2.8,80,email click,0,0,The Witcher,TV Show,"Fantasy, Action",TV-MA,2019,3,57,8.0,86,A monster hunter navigates destiny and politics.,Fantasy,0,short,105.8,Morgan,25-34,Sci-Fi,Crime,long,weekends,novelty seeker,9,tv
U096,T016,2025-11-21,2.9,51,browse row,0,0,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Morgan,25-34,Sci-Fi,Crime,long,weekends,novelty seeker,9,tv
U096,T003,2025-06-08,4.1,72,homepage banner,1,0,Money Heist,TV Show,"Crime, Thriller",TV-MA,2017,5,50,8.2,91,A criminal mastermind executes an ambitious heist.,Crime,0,short,109.3,Morgan,25-34,Sci-Fi,Crime,long,weekends,novelty seeker,9,tv
U096,T023,2026-01-09,4.1,90,search,1,1,Peaky Blinders,TV Show,"Crime, History",TV-MA,2013,6,58,8.8,83,A Birmingham gang rises after World War I.,Crime,0,short,112.9,Morgan,25-34,Sci-Fi,Crime,long,weekends,novelty seeker,9,tv
U096,T042,2025-01-30,3.6,52,search,0,0,Leave the World Behind,Movie,"Thriller, Drama",R,2023,1,141,6.4,82,A family vacation turns ominous during a blackout.,Thriller,1,long,88.6,Morgan,25-34,Sci-Fi,Crime,long,weekends,novelty seeker,9,tv
U096,T017,2025-02-14,4.3,82,homepage banner,1,0,The Night Agent,TV Show,"Action, Thriller",TV-MA,2023,1,45,7.5,83,An FBI agent uncovers a conspiracy from a late-night call.,Action,1,short,99.9,Morgan,25-34,Sci-Fi,Crime,long,weekends,novelty seeker,9,tv
U097,T030,2025-08-21,3.3,83,email click,0,0,Glass Onion,Movie,"Mystery, Comedy",PG-13,2022,1,139,7.1,85,A detective untangles a billionaire's island murder game.,Mystery,1,long,96.5,Cameron,18-24,Thriller,Action,medium,mixed,novelty seeker,3,mobile
U097,T051,2025-11-08,4.2,96,browse row,1,1,Ripley,TV Show,"Thriller, Drama",TV-MA,2024,1,55,8.1,67,"A grifter is drawn into wealth, deception, and murder.",Thriller,1,short,101.1,Cameron,18-24,Thriller,Action,medium,mixed,novelty seeker,3,mobile
U097,T012,2025-06-08,2.6,72,search,0,0,Ozark,TV Show,"Crime, Drama",TV-MA,2017,4,60,8.5,77,A family launders money for a dangerous cartel.,Crime,0,short,108.1,Cameron,18-24,Thriller,Action,medium,mixed,novelty seeker,3,mobile
U097,T020,2025-03-03,2.0,59,browse row,0,0,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Cameron,18-24,Thriller,Action,medium,mixed,novelty seeker,3,mobile
U097,T059,2025-12-29,3.7,66,search,0,0,Anyone But You,Movie,"Romance, Comedy",R,2023,1,103,6.4,77,A fake-couple wedding trip reignites sparks.,Romance,1,medium,87.1,Cameron,18-24,Thriller,Action,medium,mixed,novelty seeker,3,mobile
U097,T035,2025-12-26,3.2,40,browse row,0,0,The Adam Project,Movie,"Sci-Fi, Adventure",PG-13,2022,1,106,6.7,73,A time-traveling pilot teams up with his younger self.,Sci-Fi,1,medium,88.9,Cameron,18-24,Thriller,Action,medium,mixed,novelty seeker,3,mobile
U097,T050,2025-03-25,3.6,64,homepage banner,0,0,Baby Reindeer,TV Show,"Drama, Thriller",TV-MA,2024,1,33,8.3,86,A comedian faces a stalking nightmare.,Drama,1,short,108.8,Cameron,18-24,Thriller,Action,medium,mixed,novelty seeker,3,mobile
U097,T056,2025-06-27,3.5,85,email click,0,1,Damsel,Movie,"Fantasy, Adventure",PG-13,2024,1,109,6.1,89,A princess fights to survive a dragon-filled cave.,Fantasy,1,medium,87.7,Cameron,18-24,Thriller,Action,medium,mixed,novelty seeker,3,mobile
U097,T032,2025-09-22,3.4,73,friend recommendation,0,0,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Cameron,18-24,Thriller,Action,medium,mixed,novelty seeker,3,mobile
U098,T015,2025-07-10,2.6,100,search,0,1,Heartstopper,TV Show,"Romance, Teen",TV-14,2022,2,31,8.5,87,"Two students navigate identity, friendship, and love.",Romance,1,short,111.1,Jordan,25-34,Sci-Fi,Thriller,long,weeknights,comfort rewatcher,3,mobile
U098,T007,2026-01-19,2.1,100,friend recommendation,0,1,The Witcher,TV Show,"Fantasy, Action",TV-MA,2019,3,57,8.0,86,A monster hunter navigates destiny and politics.,Fantasy,0,short,105.8,Jordan,25-34,Sci-Fi,Thriller,long,weeknights,comfort rewatcher,3,mobile
U098,T016,2026-01-11,3.4,81,browse row,0,0,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Jordan,25-34,Sci-Fi,Thriller,long,weeknights,comfort rewatcher,3,mobile
U098,T052,2026-01-30,3.7,72,browse row,0,0,3 Body Problem,TV Show,"Sci-Fi, Mystery",TV-MA,2024,1,58,7.6,84,Scientists confront a cosmic threat from first contact.,Sci-Fi,1,short,101.2,Jordan,25-34,Sci-Fi,Thriller,long,weeknights,comfort rewatcher,3,mobile
U098,T031,2025-06-21,2.8,82,homepage banner,0,0,Roma,Movie,Drama,R,2018,1,135,7.7,63,A domestic worker supports a family in 1970s Mexico City.,Drama,0,long,95.9,Jordan,25-34,Sci-Fi,Thriller,long,weeknights,comfort rewatcher,3,mobile
U098,T049,2025-05-20,2.2,72,email click,0,0,Maestro in Blue,TV Show,"Drama, Romance",TV-MA,2022,1,50,7.8,59,A musician becomes entangled in island secrets.,Drama,1,short,95.7,Jordan,25-34,Sci-Fi,Thriller,long,weeknights,comfort rewatcher,3,mobile
U098,T048,2025-02-02,1.7,66,friend recommendation,0,0,Klaus,Movie,"Animation, Family",PG,2019,1,96,8.2,69,A postman and a toymaker spark a holiday tradition.,Animation,0,medium,102.7,Jordan,25-34,Sci-Fi,Thriller,long,weeknights,comfort rewatcher,3,mobile
U098,T043,2025-12-31,3.8,63,email click,0,0,Army of the Dead,Movie,"Action, Horror",R,2021,1,148,5.7,58,Mercenaries enter zombie-infested Las Vegas for a heist.,Action,1,long,74.4,Jordan,25-34,Sci-Fi,Thriller,long,weeknights,comfort rewatcher,3,mobile
U098,T061,2025-11-18,3.4,79,browse row,0,0,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Jordan,25-34,Sci-Fi,Thriller,long,weeknights,comfort rewatcher,3,mobile
U098,T040,2025-09-12,4.0,72,homepage banner,1,0,Guillermo del Toro's Pinocchio,Movie,"Animation, Fantasy",PG,2022,1,117,7.6,66,A wooden boy comes to life in wartime Italy.,Animation,1,medium,95.8,Jordan,25-34,Sci-Fi,Thriller,long,weeknights,comfort rewatcher,3,mobile
U099,T040,2025-07-04,2.3,85,browse row,0,1,Guillermo del Toro's Pinocchio,Movie,"Animation, Fantasy",PG,2022,1,117,7.6,66,A wooden boy comes to life in wartime Italy.,Animation,1,medium,95.8,Alex,45-54,Drama,Action,medium,mixed,balanced explorer,5,tv
U099,T031,2025-09-13,3.6,55,email click,0,0,Roma,Movie,Drama,R,2018,1,135,7.7,63,A domestic worker supports a family in 1970s Mexico City.,Drama,0,long,95.9,Alex,45-54,Drama,Action,medium,mixed,balanced explorer,5,tv
U099,T024,2025-03-27,2.9,74,friend recommendation,0,0,The Office,TV Show,Comedy,TV-14,2005,9,22,9.0,94,Office workers navigate absurd everyday routines.,Comedy,0,short,118.2,Alex,45-54,Drama,Action,medium,mixed,balanced explorer,5,tv
U099,T033,2025-03-22,3.7,100,friend recommendation,0,1,Extraction,Movie,"Action, Thriller",R,2020,1,116,6.8,74,A mercenary attempts a dangerous rescue mission.,Action,1,medium,90.2,Alex,45-54,Drama,Action,medium,mixed,balanced explorer,5,tv
U099,T023,2026-01-31,2.9,72,browse row,0,0,Peaky Blinders,TV Show,"Crime, History",TV-MA,2013,6,58,8.8,83,A Birmingham gang rises after World War I.,Crime,0,short,112.9,Alex,45-54,Drama,Action,medium,mixed,balanced explorer,5,tv
U099,T005,2025-10-21,2.3,80,browse row,0,0,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Alex,45-54,Drama,Action,medium,mixed,balanced explorer,5,tv
U099,T018,2025-04-27,3.1,69,email click,0,0,One Piece,TV Show,"Adventure, Fantasy",TV-14,2023,1,55,8.4,90,Pirates hunt treasure in a live-action adaptation.,Adventure,1,short,111.0,Alex,45-54,Drama,Action,medium,mixed,balanced explorer,5,tv
U099,T015,2025-01-02,1.9,85,browse row,0,1,Heartstopper,TV Show,"Romance, Teen",TV-14,2022,2,31,8.5,87,"Two students navigate identity, friendship, and love.",Romance,1,short,111.1,Alex,45-54,Drama,Action,medium,mixed,balanced explorer,5,tv
U099,T014,2025-01-07,2.9,65,search,0,0,Cobra Kai,TV Show,"Comedy, Action",TV-14,2018,6,34,8.4,75,Old karate rivals reignite decades later.,Comedy,0,short,106.5,Alex,45-54,Drama,Action,medium,mixed,balanced explorer,5,tv
U099,T058,2025-01-24,3.8,65,homepage banner,0,0,Carry-On,Movie,"Thriller, Action",PG-13,2024,1,112,6.8,90,An airport employee is blackmailed into a dangerous plot.,Thriller,1,medium,95.0,Alex,45-54,Drama,Action,medium,mixed,balanced explorer,5,tv
U099,T051,2025-07-06,3.1,44,homepage banner,0,0,Ripley,TV Show,"Thriller, Drama",TV-MA,2024,1,55,8.1,67,"A grifter is drawn into wealth, deception, and murder.",Thriller,1,short,101.1,Alex,45-54,Drama,Action,medium,mixed,balanced explorer,5,tv
U099,T003,2025-03-18,3.4,70,search,0,0,Money Heist,TV Show,"Crime, Thriller",TV-MA,2017,5,50,8.2,91,A criminal mastermind executes an ambitious heist.,Crime,0,short,109.3,Alex,45-54,Drama,Action,medium,mixed,balanced explorer,5,tv
U099,T020,2025-01-19,5.0,80,email click,1,0,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Alex,45-54,Drama,Action,medium,mixed,balanced explorer,5,tv
U099,T007,2026-02-16,3.0,66,homepage banner,0,0,The Witcher,TV Show,"Fantasy, Action",TV-MA,2019,3,57,8.0,86,A monster hunter navigates destiny and politics.,Fantasy,0,short,105.8,Alex,45-54,Drama,Action,medium,mixed,balanced explorer,5,tv
U099,T047,2025-04-25,3.1,68,friend recommendation,0,0,The Mitchells vs. the Machines,Movie,"Animation, Comedy",PG,2021,1,113,7.6,74,A quirky family saves the world from a robot uprising.,Animation,1,medium,98.2,Alex,45-54,Drama,Action,medium,mixed,balanced explorer,5,tv
U099,T056,2025-05-08,3.4,64,homepage banner,0,0,Damsel,Movie,"Fantasy, Adventure",PG-13,2024,1,109,6.1,89,A princess fights to survive a dragon-filled cave.,Fantasy,1,medium,87.7,Alex,45-54,Drama,Action,medium,mixed,balanced explorer,5,tv
U100,T030,2025-05-19,3.4,75,browse row,0,0,Glass Onion,Movie,"Mystery, Comedy",PG-13,2022,1,139,7.1,85,A detective untangles a billionaire's island murder game.,Mystery,1,long,96.5,Parker,25-34,Thriller,Fantasy,short,mixed,balanced explorer,5,tv
U100,T036,2025-10-20,3.2,55,friend recommendation,0,0,The Gray Man,Movie,"Action, Thriller",PG-13,2022,1,122,6.5,71,A CIA asset becomes the target of a global manhunt.,Action,1,medium,86.3,Parker,25-34,Thriller,Fantasy,short,mixed,balanced explorer,5,tv
U100,T013,2025-03-03,5.0,89,email click,1,1,Black Mirror,TV Show,"Sci-Fi, Thriller",TV-MA,2011,6,60,8.7,76,Dark anthology tales explore technology's consequences.,Sci-Fi,0,short,109.8,Parker,25-34,Thriller,Fantasy,short,mixed,balanced explorer,5,tv
U100,T002,2025-12-11,4.0,100,browse row,1,1,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Parker,25-34,Thriller,Fantasy,short,mixed,balanced explorer,5,tv
U100,T012,2025-04-02,3.9,75,search,0,0,Ozark,TV Show,"Crime, Drama",TV-MA,2017,4,60,8.5,77,A family launders money for a dangerous cartel.,Crime,0,short,108.1,Parker,25-34,Thriller,Fantasy,short,mixed,balanced explorer,5,tv
U100,T038,2026-02-16,2.1,70,email click,0,0,The Old Guard,Movie,"Action, Fantasy",R,2020,1,125,6.7,67,Immortal mercenaries fight to protect their secret.,Action,1,medium,87.1,Parker,25-34,Thriller,Fantasy,short,mixed,balanced explorer,5,tv
U100,T020,2025-01-24,4.6,90,homepage banner,1,1,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Parker,25-34,Thriller,Fantasy,short,mixed,balanced explorer,5,tv
U100,T060,2025-02-05,1.8,52,homepage banner,0,0,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Parker,25-34,Thriller,Fantasy,short,mixed,balanced explorer,5,tv
U100,T054,2025-05-25,3.2,60,friend recommendation,0,0,Beef,TV Show,"Comedy, Drama",TV-MA,2023,1,35,8.0,73,A road-rage incident spirals into obsession.,Comedy,1,short,101.9,Parker,25-34,Thriller,Fantasy,short,mixed,balanced explorer,5,tv
U100,T007,2025-06-17,2.4,67,browse row,0,0,The Witcher,TV Show,"Fantasy, Action",TV-MA,2019,3,57,8.0,86,A monster hunter navigates destiny and politics.,Fantasy,0,short,105.8,Parker,25-34,Thriller,Fantasy,short,mixed,balanced explorer,5,tv
U100,T043,2025-10-11,2.5,96,homepage banner,0,1,Army of the Dead,Movie,"Action, Horror",R,2021,1,148,5.7,58,Mercenaries enter zombie-infested Las Vegas for a heist.,Action,1,long,74.4,Parker,25-34,Thriller,Fantasy,short,mixed,balanced explorer,5,tv
U100,T034,2025-01-05,3.1,83,friend recommendation,0,0,Enola Holmes,Movie,"Mystery, Adventure",PG-13,2020,1,123,6.6,78,Sherlock's sister searches for her missing mother.,Mystery,1,medium,89.4,Parker,25-34,Thriller,Fantasy,short,mixed,balanced explorer,5,tv
U100,T008,2025-04-13,3.2,78,friend recommendation,0,0,Dark,TV Show,"Sci-Fi, Mystery",TV-MA,2017,3,52,8.7,80,Time-travel secrets emerge in a German town.,Sci-Fi,0,short,111.0,Parker,25-34,Thriller,Fantasy,short,mixed,balanced explorer,5,tv
U101,T006,2026-02-06,3.1,69,friend recommendation,0,0,Bridgerton,TV Show,"Romance, Drama",TV-MA,2020,3,60,7.4,84,Love and scandal shape the London social season.,Romance,1,short,99.2,Jordan,25-34,Crime,Animation,short,mixed,balanced explorer,3,mobile
U101,T054,2026-01-14,4.0,85,email click,1,1,Beef,TV Show,"Comedy, Drama",TV-MA,2023,1,35,8.0,73,A road-rage incident spirals into obsession.,Comedy,1,short,101.9,Jordan,25-34,Crime,Animation,short,mixed,balanced explorer,3,mobile
U101,T042,2025-05-05,3.6,91,homepage banner,0,1,Leave the World Behind,Movie,"Thriller, Drama",R,2023,1,141,6.4,82,A family vacation turns ominous during a blackout.,Thriller,1,long,88.6,Jordan,25-34,Crime,Animation,short,mixed,balanced explorer,3,mobile
U101,T061,2025-07-08,3.6,55,email click,0,0,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Jordan,25-34,Crime,Animation,short,mixed,balanced explorer,3,mobile
U101,T017,2025-09-10,2.6,64,search,0,0,The Night Agent,TV Show,"Action, Thriller",TV-MA,2023,1,45,7.5,83,An FBI agent uncovers a conspiracy from a late-night call.,Action,1,short,99.9,Jordan,25-34,Crime,Animation,short,mixed,balanced explorer,3,mobile
U101,T043,2026-01-11,3.1,66,email click,0,0,Army of the Dead,Movie,"Action, Horror",R,2021,1,148,5.7,58,Mercenaries enter zombie-infested Las Vegas for a heist.,Action,1,long,74.4,Jordan,25-34,Crime,Animation,short,mixed,balanced explorer,3,mobile
U101,T056,2026-01-25,3.4,71,search,0,0,Damsel,Movie,"Fantasy, Adventure",PG-13,2024,1,109,6.1,89,A princess fights to survive a dragon-filled cave.,Fantasy,1,medium,87.7,Jordan,25-34,Crime,Animation,short,mixed,balanced explorer,3,mobile
U101,T014,2025-03-19,3.5,81,browse row,0,0,Cobra Kai,TV Show,"Comedy, Action",TV-14,2018,6,34,8.4,75,Old karate rivals reignite decades later.,Comedy,0,short,106.5,Jordan,25-34,Crime,Animation,short,mixed,balanced explorer,3,mobile
U101,T011,2025-07-29,5.0,80,browse row,1,0,Lupin,TV Show,"Crime, Mystery",TV-14,2021,3,44,7.5,85,A gentleman thief seeks revenge using deception.,Crime,1,short,100.5,Jordan,25-34,Crime,Animation,short,mixed,balanced explorer,3,mobile
U101,T031,2025-04-30,4.3,79,email click,1,0,Roma,Movie,Drama,R,2018,1,135,7.7,63,A domestic worker supports a family in 1970s Mexico City.,Drama,0,long,95.9,Jordan,25-34,Crime,Animation,short,mixed,balanced explorer,3,mobile
U101,T058,2025-06-27,2.2,63,browse row,0,0,Carry-On,Movie,"Thriller, Action",PG-13,2024,1,112,6.8,90,An airport employee is blackmailed into a dangerous plot.,Thriller,1,medium,95.0,Jordan,25-34,Crime,Animation,short,mixed,balanced explorer,3,mobile
U101,T048,2025-06-21,5.0,100,browse row,1,1,Klaus,Movie,"Animation, Family",PG,2019,1,96,8.2,69,A postman and a toymaker spark a holiday tradition.,Animation,0,medium,102.7,Jordan,25-34,Crime,Animation,short,mixed,balanced explorer,3,mobile
U101,T002,2026-01-24,3.7,93,homepage banner,0,1,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Jordan,25-34,Crime,Animation,short,mixed,balanced explorer,3,mobile
U101,T041,2026-01-13,3.5,84,friend recommendation,0,0,The Killer,Movie,"Thriller, Crime",R,2023,1,118,6.8,60,A meticulous assassin faces unexpected consequences.,Thriller,1,medium,86.0,Jordan,25-34,Crime,Animation,short,mixed,balanced explorer,3,mobile
U101,T025,2025-02-23,3.3,100,search,0,1,Friends,TV Show,"Comedy, Romance",TV-14,1994,10,22,8.9,92,Six friends face life and love in New York.,Comedy,0,short,116.6,Jordan,25-34,Crime,Animation,short,mixed,balanced explorer,3,mobile
U101,T050,2025-09-29,3.2,71,search,0,0,Baby Reindeer,TV Show,"Drama, Thriller",TV-MA,2024,1,33,8.3,86,A comedian faces a stalking nightmare.,Drama,1,short,108.8,Jordan,25-34,Crime,Animation,short,mixed,balanced explorer,3,mobile
U101,T019,2025-08-03,2.6,73,homepage banner,0,0,Squid Game,TV Show,"Thriller, Drama",TV-MA,2021,1,55,8.0,97,Cash-strapped players join deadly children's games.,Thriller,1,short,109.1,Jordan,25-34,Crime,Animation,short,mixed,balanced explorer,3,mobile
U102,T011,2025-03-14,2.6,75,friend recommendation,0,0,Lupin,TV Show,"Crime, Mystery",TV-14,2021,3,44,7.5,85,A gentleman thief seeks revenge using deception.,Crime,1,short,100.5,Sam,35-44,Comedy,Thriller,long,mixed,balanced explorer,9,laptop
U102,T035,2025-02-17,2.5,89,browse row,0,1,The Adam Project,Movie,"Sci-Fi, Adventure",PG-13,2022,1,106,6.7,73,A time-traveling pilot teams up with his younger self.,Sci-Fi,1,medium,88.9,Sam,35-44,Comedy,Thriller,long,mixed,balanced explorer,9,laptop
U102,T030,2025-04-29,3.7,100,email click,0,1,Glass Onion,Movie,"Mystery, Comedy",PG-13,2022,1,139,7.1,85,A detective untangles a billionaire's island murder game.,Mystery,1,long,96.5,Sam,35-44,Comedy,Thriller,long,mixed,balanced explorer,9,laptop
U102,T059,2025-07-31,3.8,66,friend recommendation,0,0,Anyone But You,Movie,"Romance, Comedy",R,2023,1,103,6.4,77,A fake-couple wedding trip reignites sparks.,Romance,1,medium,87.1,Sam,35-44,Comedy,Thriller,long,mixed,balanced explorer,9,laptop
U102,T045,2025-08-23,4.1,71,browse row,1,0,Murder Mystery,Movie,"Comedy, Mystery",PG-13,2019,1,97,6.0,81,A couple becomes entangled in a murder case on a yacht.,Comedy,0,medium,84.3,Sam,35-44,Comedy,Thriller,long,mixed,balanced explorer,9,laptop
U102,T038,2025-10-25,3.0,66,browse row,0,0,The Old Guard,Movie,"Action, Fantasy",R,2020,1,125,6.7,67,Immortal mercenaries fight to protect their secret.,Action,1,medium,87.1,Sam,35-44,Comedy,Thriller,long,mixed,balanced explorer,9,laptop
U102,T050,2025-09-16,4.2,89,search,1,1,Baby Reindeer,TV Show,"Drama, Thriller",TV-MA,2024,1,33,8.3,86,A comedian faces a stalking nightmare.,Drama,1,short,108.8,Sam,35-44,Comedy,Thriller,long,mixed,balanced explorer,9,laptop
U102,T061,2025-11-23,3.3,69,homepage banner,0,0,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Sam,35-44,Comedy,Thriller,long,mixed,balanced explorer,9,laptop
U103,T034,2025-10-31,2.5,69,email click,0,0,Enola Holmes,Movie,"Mystery, Adventure",PG-13,2020,1,123,6.6,78,Sherlock's sister searches for her missing mother.,Mystery,1,medium,89.4,Sam,45-54,Thriller,Action,medium,mixed,balanced explorer,2,tv
U103,T040,2025-02-01,3.5,92,homepage banner,0,1,Guillermo del Toro's Pinocchio,Movie,"Animation, Fantasy",PG,2022,1,117,7.6,66,A wooden boy comes to life in wartime Italy.,Animation,1,medium,95.8,Sam,45-54,Thriller,Action,medium,mixed,balanced explorer,2,tv
U103,T020,2025-12-06,2.3,51,search,0,0,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Sam,45-54,Thriller,Action,medium,mixed,balanced explorer,2,tv
U103,T018,2025-05-02,2.8,81,friend recommendation,0,0,One Piece,TV Show,"Adventure, Fantasy",TV-14,2023,1,55,8.4,90,Pirates hunt treasure in a live-action adaptation.,Adventure,1,short,111.0,Sam,45-54,Thriller,Action,medium,mixed,balanced explorer,2,tv
U103,T058,2025-05-14,5.0,97,friend recommendation,1,1,Carry-On,Movie,"Thriller, Action",PG-13,2024,1,112,6.8,90,An airport employee is blackmailed into a dangerous plot.,Thriller,1,medium,95.0,Sam,45-54,Thriller,Action,medium,mixed,balanced explorer,2,tv
U103,T003,2026-02-15,3.5,100,homepage banner,0,1,Money Heist,TV Show,"Crime, Thriller",TV-MA,2017,5,50,8.2,91,A criminal mastermind executes an ambitious heist.,Crime,0,short,109.3,Sam,45-54,Thriller,Action,medium,mixed,balanced explorer,2,tv
U103,T041,2025-12-25,3.4,98,friend recommendation,0,1,The Killer,Movie,"Thriller, Crime",R,2023,1,118,6.8,60,A meticulous assassin faces unexpected consequences.,Thriller,1,medium,86.0,Sam,45-54,Thriller,Action,medium,mixed,balanced explorer,2,tv
U103,T033,2025-06-12,5.0,100,homepage banner,1,1,Extraction,Movie,"Action, Thriller",R,2020,1,116,6.8,74,A mercenary attempts a dangerous rescue mission.,Action,1,medium,90.2,Sam,45-54,Thriller,Action,medium,mixed,balanced explorer,2,tv
U103,T038,2025-05-20,3.3,75,search,0,0,The Old Guard,Movie,"Action, Fantasy",R,2020,1,125,6.7,67,Immortal mercenaries fight to protect their secret.,Action,1,medium,87.1,Sam,45-54,Thriller,Action,medium,mixed,balanced explorer,2,tv
U104,T015,2025-04-14,5.0,91,search,1,1,Heartstopper,TV Show,"Romance, Teen",TV-14,2022,2,31,8.5,87,"Two students navigate identity, friendship, and love.",Romance,1,short,111.1,Quinn,25-34,Romance,Thriller,short,weeknights,novelty seeker,2,laptop
U104,T007,2026-02-04,3.3,92,email click,0,1,The Witcher,TV Show,"Fantasy, Action",TV-MA,2019,3,57,8.0,86,A monster hunter navigates destiny and politics.,Fantasy,0,short,105.8,Quinn,25-34,Romance,Thriller,short,weeknights,novelty seeker,2,laptop
U104,T056,2025-02-25,4.5,100,search,1,1,Damsel,Movie,"Fantasy, Adventure",PG-13,2024,1,109,6.1,89,A princess fights to survive a dragon-filled cave.,Fantasy,1,medium,87.7,Quinn,25-34,Romance,Thriller,short,weeknights,novelty seeker,2,laptop
U104,T049,2025-02-24,4.8,99,search,1,1,Maestro in Blue,TV Show,"Drama, Romance",TV-MA,2022,1,50,7.8,59,A musician becomes entangled in island secrets.,Drama,1,short,95.7,Quinn,25-34,Romance,Thriller,short,weeknights,novelty seeker,2,laptop
U104,T025,2025-08-19,4.1,86,homepage banner,1,1,Friends,TV Show,"Comedy, Romance",TV-14,1994,10,22,8.9,92,Six friends face life and love in New York.,Comedy,0,short,116.6,Quinn,25-34,Romance,Thriller,short,weeknights,novelty seeker,2,laptop
U104,T024,2025-06-10,3.4,67,homepage banner,0,0,The Office,TV Show,Comedy,TV-14,2005,9,22,9.0,94,Office workers navigate absurd everyday routines.,Comedy,0,short,118.2,Quinn,25-34,Romance,Thriller,short,weeknights,novelty seeker,2,laptop
U104,T042,2025-03-03,4.0,90,email click,1,1,Leave the World Behind,Movie,"Thriller, Drama",R,2023,1,141,6.4,82,A family vacation turns ominous during a blackout.,Thriller,1,long,88.6,Quinn,25-34,Romance,Thriller,short,weeknights,novelty seeker,2,laptop
U104,T038,2025-07-03,3.3,84,search,0,0,The Old Guard,Movie,"Action, Fantasy",R,2020,1,125,6.7,67,Immortal mercenaries fight to protect their secret.,Action,1,medium,87.1,Quinn,25-34,Romance,Thriller,short,weeknights,novelty seeker,2,laptop
U104,T021,2025-08-20,2.5,88,friend recommendation,0,1,Breaking Bad,TV Show,"Crime, Drama",TV-MA,2008,5,47,9.5,99,A chemistry teacher turns to meth production.,Crime,0,short,124.7,Quinn,25-34,Romance,Thriller,short,weeknights,novelty seeker,2,laptop
U105,T031,2025-05-16,3.4,100,browse row,0,1,Roma,Movie,Drama,R,2018,1,135,7.7,63,A domestic worker supports a family in 1970s Mexico City.,Drama,0,long,95.9,Jordan,45-54,Thriller,Drama,short,weekends,balanced explorer,8,laptop
U105,T017,2025-02-16,3.0,65,search,0,0,The Night Agent,TV Show,"Action, Thriller",TV-MA,2023,1,45,7.5,83,An FBI agent uncovers a conspiracy from a late-night call.,Action,1,short,99.9,Jordan,45-54,Thriller,Drama,short,weekends,balanced explorer,8,laptop
U105,T024,2026-02-18,4.4,100,friend recommendation,1,1,The Office,TV Show,Comedy,TV-14,2005,9,22,9.0,94,Office workers navigate absurd everyday routines.,Comedy,0,short,118.2,Jordan,45-54,Thriller,Drama,short,weekends,balanced explorer,8,laptop
U105,T018,2026-02-28,3.0,78,email click,0,0,One Piece,TV Show,"Adventure, Fantasy",TV-14,2023,1,55,8.4,90,Pirates hunt treasure in a live-action adaptation.,Adventure,1,short,111.0,Jordan,45-54,Thriller,Drama,short,weekends,balanced explorer,8,laptop
U105,T056,2025-01-21,3.3,80,search,0,0,Damsel,Movie,"Fantasy, Adventure",PG-13,2024,1,109,6.1,89,A princess fights to survive a dragon-filled cave.,Fantasy,1,medium,87.7,Jordan,45-54,Thriller,Drama,short,weekends,balanced explorer,8,laptop
U105,T039,2026-03-04,4.7,97,friend recommendation,1,1,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Jordan,45-54,Thriller,Drama,short,weekends,balanced explorer,8,laptop
U105,T041,2025-03-17,4.7,94,browse row,1,1,The Killer,Movie,"Thriller, Crime",R,2023,1,118,6.8,60,A meticulous assassin faces unexpected consequences.,Thriller,1,medium,86.0,Jordan,45-54,Thriller,Drama,short,weekends,balanced explorer,8,laptop
U105,T032,2025-12-31,1.8,45,search,0,0,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Jordan,45-54,Thriller,Drama,short,weekends,balanced explorer,8,laptop
U105,T044,2025-07-02,2.4,65,homepage banner,0,0,Project Power,Movie,"Action, Sci-Fi",R,2020,1,113,6.0,64,A pill that grants powers sparks chaos in New Orleans.,Action,1,medium,79.2,Jordan,45-54,Thriller,Drama,short,weekends,balanced explorer,8,laptop
U105,T011,2025-09-20,4.5,95,browse row,1,1,Lupin,TV Show,"Crime, Mystery",TV-14,2021,3,44,7.5,85,A gentleman thief seeks revenge using deception.,Crime,1,short,100.5,Jordan,45-54,Thriller,Drama,short,weekends,balanced explorer,8,laptop
U105,T014,2025-12-13,3.2,95,friend recommendation,0,1,Cobra Kai,TV Show,"Comedy, Action",TV-14,2018,6,34,8.4,75,Old karate rivals reignite decades later.,Comedy,0,short,106.5,Jordan,45-54,Thriller,Drama,short,weekends,balanced explorer,8,laptop
U105,T026,2025-05-14,2.4,61,search,0,0,Seinfeld,TV Show,Comedy,TV-14,1989,9,23,8.9,81,A comedian and friends obsess over daily trivialities.,Comedy,0,short,113.3,Jordan,45-54,Thriller,Drama,short,weekends,balanced explorer,8,laptop
U105,T038,2025-01-16,2.6,76,homepage banner,0,0,The Old Guard,Movie,"Action, Fantasy",R,2020,1,125,6.7,67,Immortal mercenaries fight to protect their secret.,Action,1,medium,87.1,Jordan,45-54,Thriller,Drama,short,weekends,balanced explorer,8,laptop
U105,T055,2025-08-20,3.8,90,email click,0,1,Blue Eye Samurai,TV Show,"Animation, Action",TV-MA,2023,1,45,8.7,70,A swordswoman seeks revenge in Edo-period Japan.,Animation,1,short,108.0,Jordan,45-54,Thriller,Drama,short,weekends,balanced explorer,8,laptop
U105,T042,2026-01-19,4.9,88,email click,1,1,Leave the World Behind,Movie,"Thriller, Drama",R,2023,1,141,6.4,82,A family vacation turns ominous during a blackout.,Thriller,1,long,88.6,Jordan,45-54,Thriller,Drama,short,weekends,balanced explorer,8,laptop
U106,T050,2025-02-18,3.7,86,homepage banner,0,1,Baby Reindeer,TV Show,"Drama, Thriller",TV-MA,2024,1,33,8.3,86,A comedian faces a stalking nightmare.,Drama,1,short,108.8,Jamie,45-54,Fantasy,Crime,medium,weekends,balanced explorer,3,mobile
U106,T005,2025-02-22,3.8,80,search,0,0,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Jamie,45-54,Fantasy,Crime,medium,weekends,balanced explorer,3,mobile
U106,T059,2025-03-04,2.9,100,browse row,0,1,Anyone But You,Movie,"Romance, Comedy",R,2023,1,103,6.4,77,A fake-couple wedding trip reignites sparks.,Romance,1,medium,87.1,Jamie,45-54,Fantasy,Crime,medium,weekends,balanced explorer,3,mobile
U106,T022,2025-02-01,2.7,45,search,0,0,Better Call Saul,TV Show,"Crime, Drama",TV-MA,2015,6,46,9.0,96,The morally flexible lawyer begins his transformation.,Crime,0,short,118.8,Jamie,45-54,Fantasy,Crime,medium,weekends,balanced explorer,3,mobile
U106,T024,2025-03-08,2.0,51,search,0,0,The Office,TV Show,Comedy,TV-14,2005,9,22,9.0,94,Office workers navigate absurd everyday routines.,Comedy,0,short,118.2,Jamie,45-54,Fantasy,Crime,medium,weekends,balanced explorer,3,mobile
U106,T039,2026-02-26,3.4,90,homepage banner,0,1,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Jamie,45-54,Fantasy,Crime,medium,weekends,balanced explorer,3,mobile
U106,T029,2025-07-10,2.6,70,browse row,0,0,Bird Box,Movie,"Thriller, Horror",R,2018,1,124,6.6,88,Survivors avoid a mysterious force that drives people mad.,Thriller,0,medium,92.4,Jamie,45-54,Fantasy,Crime,medium,weekends,balanced explorer,3,mobile
U106,T012,2025-10-26,2.9,58,email click,0,0,Ozark,TV Show,"Crime, Drama",TV-MA,2017,4,60,8.5,77,A family launders money for a dangerous cartel.,Crime,0,short,108.1,Jamie,45-54,Fantasy,Crime,medium,weekends,balanced explorer,3,mobile
U106,T023,2025-05-13,3.9,99,browse row,0,1,Peaky Blinders,TV Show,"Crime, History",TV-MA,2013,6,58,8.8,83,A Birmingham gang rises after World War I.,Crime,0,short,112.9,Jamie,45-54,Fantasy,Crime,medium,weekends,balanced explorer,3,mobile
U106,T025,2025-01-12,2.7,96,browse row,0,1,Friends,TV Show,"Comedy, Romance",TV-14,1994,10,22,8.9,92,Six friends face life and love in New York.,Comedy,0,short,116.6,Jamie,45-54,Fantasy,Crime,medium,weekends,balanced explorer,3,mobile
U106,T026,2025-04-12,3.6,100,homepage banner,0,1,Seinfeld,TV Show,Comedy,TV-14,1989,9,23,8.9,81,A comedian and friends obsess over daily trivialities.,Comedy,0,short,113.3,Jamie,45-54,Fantasy,Crime,medium,weekends,balanced explorer,3,mobile
U107,T048,2025-02-17,3.6,88,friend recommendation,0,1,Klaus,Movie,"Animation, Family",PG,2019,1,96,8.2,69,A postman and a toymaker spark a holiday tradition.,Animation,0,medium,102.7,Morgan,35-44,Romance,Action,long,weekends,novelty seeker,2,tv
U107,T025,2025-03-04,3.8,94,browse row,0,1,Friends,TV Show,"Comedy, Romance",TV-14,1994,10,22,8.9,92,Six friends face life and love in New York.,Comedy,0,short,116.6,Morgan,35-44,Romance,Action,long,weekends,novelty seeker,2,tv
U107,T037,2025-08-25,3.9,67,browse row,0,0,To All the Boys I've Loved Before,Movie,"Romance, Comedy",PG-13,2018,1,99,7.0,76,Secret love letters create romantic chaos.,Romance,0,medium,92.8,Morgan,35-44,Romance,Action,long,weekends,novelty seeker,2,tv
U107,T028,2025-03-28,3.1,77,email click,0,0,Marriage Story,Movie,Drama,R,2019,1,137,7.9,68,A couple navigates a painful divorce.,Drama,0,long,99.4,Morgan,35-44,Romance,Action,long,weekends,novelty seeker,2,tv
U107,T011,2025-08-10,3.9,81,homepage banner,0,0,Lupin,TV Show,"Crime, Mystery",TV-14,2021,3,44,7.5,85,A gentleman thief seeks revenge using deception.,Crime,1,short,100.5,Morgan,35-44,Romance,Action,long,weekends,novelty seeker,2,tv
U107,T039,2025-09-12,2.7,72,browse row,0,0,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Morgan,35-44,Romance,Action,long,weekends,novelty seeker,2,tv
U107,T053,2025-07-15,3.5,82,homepage banner,0,0,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Morgan,35-44,Romance,Action,long,weekends,novelty seeker,2,tv
U107,T004,2025-03-30,3.6,96,friend recommendation,0,1,The Queen's Gambit,TV Show,Drama,TV-MA,2020,1,56,8.5,89,A chess prodigy battles addiction and fame.,Drama,1,short,111.7,Morgan,35-44,Romance,Action,long,weekends,novelty seeker,2,tv
U107,T002,2025-04-20,2.6,61,search,0,0,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Morgan,35-44,Romance,Action,long,weekends,novelty seeker,2,tv
U107,T044,2025-05-21,3.0,85,friend recommendation,0,1,Project Power,Movie,"Action, Sci-Fi",R,2020,1,113,6.0,64,A pill that grants powers sparks chaos in New Orleans.,Action,1,medium,79.2,Morgan,35-44,Romance,Action,long,weekends,novelty seeker,2,tv
U108,T005,2025-03-18,2.5,51,browse row,0,0,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Avery,18-24,Crime,Romance,medium,weekends,balanced explorer,2,laptop
U108,T015,2025-11-11,2.9,100,email click,0,1,Heartstopper,TV Show,"Romance, Teen",TV-14,2022,2,31,8.5,87,"Two students navigate identity, friendship, and love.",Romance,1,short,111.1,Avery,18-24,Crime,Romance,medium,weekends,balanced explorer,2,laptop
U108,T043,2025-11-12,2.5,80,search,0,0,Army of the Dead,Movie,"Action, Horror",R,2021,1,148,5.7,58,Mercenaries enter zombie-infested Las Vegas for a heist.,Action,1,long,74.4,Avery,18-24,Crime,Romance,medium,weekends,balanced explorer,2,laptop
U108,T001,2025-11-28,2.1,87,friend recommendation,0,1,Stranger Things,TV Show,"Sci-Fi, Drama",TV-14,2016,4,51,8.7,95,Supernatural mysteries unfold in a small town.,Sci-Fi,0,short,115.5,Avery,18-24,Crime,Romance,medium,weekends,balanced explorer,2,laptop
U108,T033,2025-09-13,3.2,81,homepage banner,0,0,Extraction,Movie,"Action, Thriller",R,2020,1,116,6.8,74,A mercenary attempts a dangerous rescue mission.,Action,1,medium,90.2,Avery,18-24,Crime,Romance,medium,weekends,balanced explorer,2,laptop
U108,T060,2025-10-09,3.2,84,homepage banner,0,0,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Avery,18-24,Crime,Romance,medium,weekends,balanced explorer,2,laptop
U108,T009,2025-02-01,4.5,81,browse row,1,0,Narcos,TV Show,"Crime, Drama",TV-MA,2015,3,49,8.7,78,The rise of Pablo Escobar and the drug wars.,Crime,0,short,110.4,Avery,18-24,Crime,Romance,medium,weekends,balanced explorer,2,laptop
U108,T027,2025-05-24,3.6,81,homepage banner,0,0,The Irishman,Movie,"Crime, Drama",R,2019,1,209,7.8,70,An aging hitman reflects on loyalty and regret.,Crime,0,long,99.0,Avery,18-24,Crime,Romance,medium,weekends,balanced explorer,2,laptop
U108,T057,2025-03-12,3.4,78,homepage banner,0,0,Rebel Moon,Movie,"Sci-Fi, Action",PG-13,2023,1,134,5.6,87,A former soldier gathers warriors to fight an empire.,Sci-Fi,1,long,82.1,Avery,18-24,Crime,Romance,medium,weekends,balanced explorer,2,laptop
U108,T049,2025-04-13,4.1,95,email click,1,1,Maestro in Blue,TV Show,"Drama, Romance",TV-MA,2022,1,50,7.8,59,A musician becomes entangled in island secrets.,Drama,1,short,95.7,Avery,18-24,Crime,Romance,medium,weekends,balanced explorer,2,laptop
U108,T055,2025-05-08,2.9,47,email click,0,0,Blue Eye Samurai,TV Show,"Animation, Action",TV-MA,2023,1,45,8.7,70,A swordswoman seeks revenge in Edo-period Japan.,Animation,1,short,108.0,Avery,18-24,Crime,Romance,medium,weekends,balanced explorer,2,laptop
U108,T007,2026-02-11,2.7,98,browse row,0,1,The Witcher,TV Show,"Fantasy, Action",TV-MA,2019,3,57,8.0,86,A monster hunter navigates destiny and politics.,Fantasy,0,short,105.8,Avery,18-24,Crime,Romance,medium,weekends,balanced explorer,2,laptop
U108,T006,2025-07-15,3.8,73,friend recommendation,0,0,Bridgerton,TV Show,"Romance, Drama",TV-MA,2020,3,60,7.4,84,Love and scandal shape the London social season.,Romance,1,short,99.2,Avery,18-24,Crime,Romance,medium,weekends,balanced explorer,2,laptop
U108,T048,2025-09-03,3.2,87,email click,0,1,Klaus,Movie,"Animation, Family",PG,2019,1,96,8.2,69,A postman and a toymaker spark a holiday tradition.,Animation,0,medium,102.7,Avery,18-24,Crime,Romance,medium,weekends,balanced explorer,2,laptop
U108,T042,2026-02-05,2.6,89,homepage banner,0,1,Leave the World Behind,Movie,"Thriller, Drama",R,2023,1,141,6.4,82,A family vacation turns ominous during a blackout.,Thriller,1,long,88.6,Avery,18-24,Crime,Romance,medium,weekends,balanced explorer,2,laptop
U109,T027,2025-10-17,3.4,75,email click,0,0,The Irishman,Movie,"Crime, Drama",R,2019,1,209,7.8,70,An aging hitman reflects on loyalty and regret.,Crime,0,long,99.0,Jamie,25-34,Animation,Fantasy,medium,weeknights,novelty seeker,9,laptop
U109,T014,2025-06-14,3.9,75,homepage banner,0,0,Cobra Kai,TV Show,"Comedy, Action",TV-14,2018,6,34,8.4,75,Old karate rivals reignite decades later.,Comedy,0,short,106.5,Jamie,25-34,Animation,Fantasy,medium,weeknights,novelty seeker,9,laptop
U109,T061,2025-05-19,3.2,69,search,0,0,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Jamie,25-34,Animation,Fantasy,medium,weeknights,novelty seeker,9,laptop
U109,T031,2025-01-14,3.4,89,friend recommendation,0,1,Roma,Movie,Drama,R,2018,1,135,7.7,63,A domestic worker supports a family in 1970s Mexico City.,Drama,0,long,95.9,Jamie,25-34,Animation,Fantasy,medium,weeknights,novelty seeker,9,laptop
U109,T013,2025-11-02,3.3,76,search,0,0,Black Mirror,TV Show,"Sci-Fi, Thriller",TV-MA,2011,6,60,8.7,76,Dark anthology tales explore technology's consequences.,Sci-Fi,0,short,109.8,Jamie,25-34,Animation,Fantasy,medium,weeknights,novelty seeker,9,laptop
U109,T055,2025-01-16,3.6,76,friend recommendation,0,0,Blue Eye Samurai,TV Show,"Animation, Action",TV-MA,2023,1,45,8.7,70,A swordswoman seeks revenge in Edo-period Japan.,Animation,1,short,108.0,Jamie,25-34,Animation,Fantasy,medium,weeknights,novelty seeker,9,laptop
U109,T059,2025-01-30,4.3,100,homepage banner,1,1,Anyone But You,Movie,"Romance, Comedy",R,2023,1,103,6.4,77,A fake-couple wedding trip reignites sparks.,Romance,1,medium,87.1,Jamie,25-34,Animation,Fantasy,medium,weeknights,novelty seeker,9,laptop
U109,T019,2025-09-29,3.6,75,friend recommendation,0,0,Squid Game,TV Show,"Thriller, Drama",TV-MA,2021,1,55,8.0,97,Cash-strapped players join deadly children's games.,Thriller,1,short,109.1,Jamie,25-34,Animation,Fantasy,medium,weeknights,novelty seeker,9,laptop
U109,T012,2026-01-28,3.0,69,email click,0,0,Ozark,TV Show,"Crime, Drama",TV-MA,2017,4,60,8.5,77,A family launders money for a dangerous cartel.,Crime,0,short,108.1,Jamie,25-34,Animation,Fantasy,medium,weeknights,novelty seeker,9,laptop
U109,T024,2025-04-30,3.7,69,search,0,0,The Office,TV Show,Comedy,TV-14,2005,9,22,9.0,94,Office workers navigate absurd everyday routines.,Comedy,0,short,118.2,Jamie,25-34,Animation,Fantasy,medium,weeknights,novelty seeker,9,laptop
U109,T032,2025-02-21,4.0,77,search,1,0,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Jamie,25-34,Animation,Fantasy,medium,weeknights,novelty seeker,9,laptop
U109,T006,2025-12-03,3.8,89,search,0,1,Bridgerton,TV Show,"Romance, Drama",TV-MA,2020,3,60,7.4,84,Love and scandal shape the London social season.,Romance,1,short,99.2,Jamie,25-34,Animation,Fantasy,medium,weeknights,novelty seeker,9,laptop
U109,T045,2025-05-17,2.6,66,email click,0,0,Murder Mystery,Movie,"Comedy, Mystery",PG-13,2019,1,97,6.0,81,A couple becomes entangled in a murder case on a yacht.,Comedy,0,medium,84.3,Jamie,25-34,Animation,Fantasy,medium,weeknights,novelty seeker,9,laptop
U110,T028,2026-01-27,3.4,89,search,0,1,Marriage Story,Movie,Drama,R,2019,1,137,7.9,68,A couple navigates a painful divorce.,Drama,0,long,99.4,Riley,25-34,Fantasy,Drama,short,weekends,balanced explorer,9,mobile
U110,T045,2025-10-22,2.4,70,homepage banner,0,0,Murder Mystery,Movie,"Comedy, Mystery",PG-13,2019,1,97,6.0,81,A couple becomes entangled in a murder case on a yacht.,Comedy,0,medium,84.3,Riley,25-34,Fantasy,Drama,short,weekends,balanced explorer,9,mobile
U110,T052,2025-07-01,2.6,52,search,0,0,3 Body Problem,TV Show,"Sci-Fi, Mystery",TV-MA,2024,1,58,7.6,84,Scientists confront a cosmic threat from first contact.,Sci-Fi,1,short,101.2,Riley,25-34,Fantasy,Drama,short,weekends,balanced explorer,9,mobile
U110,T020,2025-04-01,3.5,85,search,0,1,Sex Education,TV Show,"Comedy, Drama",TV-MA,2019,4,52,8.2,79,Teen relationships and awkward truths collide at school.,Comedy,0,short,105.7,Riley,25-34,Fantasy,Drama,short,weekends,balanced explorer,9,mobile
U110,T044,2025-10-31,2.6,52,friend recommendation,0,0,Project Power,Movie,"Action, Sci-Fi",R,2020,1,113,6.0,64,A pill that grants powers sparks chaos in New Orleans.,Action,1,medium,79.2,Riley,25-34,Fantasy,Drama,short,weekends,balanced explorer,9,mobile
U110,T030,2026-02-17,3.3,100,friend recommendation,0,1,Glass Onion,Movie,"Mystery, Comedy",PG-13,2022,1,139,7.1,85,A detective untangles a billionaire's island murder game.,Mystery,1,long,96.5,Riley,25-34,Fantasy,Drama,short,weekends,balanced explorer,9,mobile
U110,T060,2025-10-30,4.0,100,browse row,1,1,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Riley,25-34,Fantasy,Drama,short,weekends,balanced explorer,9,mobile
U110,T043,2025-12-27,3.8,75,friend recommendation,0,0,Army of the Dead,Movie,"Action, Horror",R,2021,1,148,5.7,58,Mercenaries enter zombie-infested Las Vegas for a heist.,Action,1,long,74.4,Riley,25-34,Fantasy,Drama,short,weekends,balanced explorer,9,mobile
U111,T052,2025-10-16,3.6,69,search,0,0,3 Body Problem,TV Show,"Sci-Fi, Mystery",TV-MA,2024,1,58,7.6,84,Scientists confront a cosmic threat from first contact.,Sci-Fi,1,short,101.2,Alex,35-44,Drama,Sci-Fi,long,weeknights,novelty seeker,8,mobile
U111,T009,2025-10-16,3.9,81,search,0,0,Narcos,TV Show,"Crime, Drama",TV-MA,2015,3,49,8.7,78,The rise of Pablo Escobar and the drug wars.,Crime,0,short,110.4,Alex,35-44,Drama,Sci-Fi,long,weeknights,novelty seeker,8,mobile
U111,T045,2026-03-05,2.4,59,homepage banner,0,0,Murder Mystery,Movie,"Comedy, Mystery",PG-13,2019,1,97,6.0,81,A couple becomes entangled in a murder case on a yacht.,Comedy,0,medium,84.3,Alex,35-44,Drama,Sci-Fi,long,weeknights,novelty seeker,8,mobile
U111,T028,2025-10-05,2.2,61,friend recommendation,0,0,Marriage Story,Movie,Drama,R,2019,1,137,7.9,68,A couple navigates a painful divorce.,Drama,0,long,99.4,Alex,35-44,Drama,Sci-Fi,long,weeknights,novelty seeker,8,mobile
U111,T032,2025-03-31,4.8,67,homepage banner,1,0,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Alex,35-44,Drama,Sci-Fi,long,weeknights,novelty seeker,8,mobile
U111,T008,2025-01-20,3.3,100,browse row,0,1,Dark,TV Show,"Sci-Fi, Mystery",TV-MA,2017,3,52,8.7,80,Time-travel secrets emerge in a German town.,Sci-Fi,0,short,111.0,Alex,35-44,Drama,Sci-Fi,long,weeknights,novelty seeker,8,mobile
U111,T041,2025-01-29,3.4,99,search,0,1,The Killer,Movie,"Thriller, Crime",R,2023,1,118,6.8,60,A meticulous assassin faces unexpected consequences.,Thriller,1,medium,86.0,Alex,35-44,Drama,Sci-Fi,long,weeknights,novelty seeker,8,mobile
U111,T044,2025-11-05,3.0,81,search,0,0,Project Power,Movie,"Action, Sci-Fi",R,2020,1,113,6.0,64,A pill that grants powers sparks chaos in New Orleans.,Action,1,medium,79.2,Alex,35-44,Drama,Sci-Fi,long,weeknights,novelty seeker,8,mobile
U111,T056,2025-01-11,2.7,78,email click,0,0,Damsel,Movie,"Fantasy, Adventure",PG-13,2024,1,109,6.1,89,A princess fights to survive a dragon-filled cave.,Fantasy,1,medium,87.7,Alex,35-44,Drama,Sci-Fi,long,weeknights,novelty seeker,8,mobile
U111,T011,2025-09-02,3.9,93,browse row,0,1,Lupin,TV Show,"Crime, Mystery",TV-14,2021,3,44,7.5,85,A gentleman thief seeks revenge using deception.,Crime,1,short,100.5,Alex,35-44,Drama,Sci-Fi,long,weeknights,novelty seeker,8,mobile
U111,T053,2025-06-19,3.2,81,email click,0,0,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Alex,35-44,Drama,Sci-Fi,long,weeknights,novelty seeker,8,mobile
U111,T051,2025-04-14,4.6,100,search,1,1,Ripley,TV Show,"Thriller, Drama",TV-MA,2024,1,55,8.1,67,"A grifter is drawn into wealth, deception, and murder.",Thriller,1,short,101.1,Alex,35-44,Drama,Sci-Fi,long,weeknights,novelty seeker,8,mobile
U111,T023,2025-06-24,2.9,87,search,0,1,Peaky Blinders,TV Show,"Crime, History",TV-MA,2013,6,58,8.8,83,A Birmingham gang rises after World War I.,Crime,0,short,112.9,Alex,35-44,Drama,Sci-Fi,long,weeknights,novelty seeker,8,mobile
U111,T030,2026-02-15,4.6,86,friend recommendation,1,1,Glass Onion,Movie,"Mystery, Comedy",PG-13,2022,1,139,7.1,85,A detective untangles a billionaire's island murder game.,Mystery,1,long,96.5,Alex,35-44,Drama,Sci-Fi,long,weeknights,novelty seeker,8,mobile
U111,T014,2025-01-31,3.0,61,browse row,0,0,Cobra Kai,TV Show,"Comedy, Action",TV-14,2018,6,34,8.4,75,Old karate rivals reignite decades later.,Comedy,0,short,106.5,Alex,35-44,Drama,Sci-Fi,long,weeknights,novelty seeker,8,mobile
U111,T013,2025-03-17,3.8,88,email click,0,1,Black Mirror,TV Show,"Sci-Fi, Thriller",TV-MA,2011,6,60,8.7,76,Dark anthology tales explore technology's consequences.,Sci-Fi,0,short,109.8,Alex,35-44,Drama,Sci-Fi,long,weeknights,novelty seeker,8,mobile
U111,T002,2025-12-27,4.0,87,search,1,1,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Alex,35-44,Drama,Sci-Fi,long,weeknights,novelty seeker,8,mobile
U112,T029,2025-09-27,3.3,85,friend recommendation,0,1,Bird Box,Movie,"Thriller, Horror",R,2018,1,124,6.6,88,Survivors avoid a mysterious force that drives people mad.,Thriller,0,medium,92.4,Cameron,25-34,Sci-Fi,Crime,medium,weeknights,balanced explorer,6,laptop
U112,T058,2025-02-07,2.2,70,friend recommendation,0,0,Carry-On,Movie,"Thriller, Action",PG-13,2024,1,112,6.8,90,An airport employee is blackmailed into a dangerous plot.,Thriller,1,medium,95.0,Cameron,25-34,Sci-Fi,Crime,medium,weeknights,balanced explorer,6,laptop
U112,T032,2025-12-27,4.3,87,homepage banner,1,1,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Cameron,25-34,Sci-Fi,Crime,medium,weeknights,balanced explorer,6,laptop
U112,T051,2025-10-28,3.4,87,browse row,0,1,Ripley,TV Show,"Thriller, Drama",TV-MA,2024,1,55,8.1,67,"A grifter is drawn into wealth, deception, and murder.",Thriller,1,short,101.1,Cameron,25-34,Sci-Fi,Crime,medium,weeknights,balanced explorer,6,laptop
U112,T035,2025-06-22,4.0,77,friend recommendation,1,0,The Adam Project,Movie,"Sci-Fi, Adventure",PG-13,2022,1,106,6.7,73,A time-traveling pilot teams up with his younger self.,Sci-Fi,1,medium,88.9,Cameron,25-34,Sci-Fi,Crime,medium,weeknights,balanced explorer,6,laptop
U112,T017,2025-06-15,3.6,87,search,0,1,The Night Agent,TV Show,"Action, Thriller",TV-MA,2023,1,45,7.5,83,An FBI agent uncovers a conspiracy from a late-night call.,Action,1,short,99.9,Cameron,25-34,Sci-Fi,Crime,medium,weeknights,balanced explorer,6,laptop
U112,T015,2025-03-22,2.2,70,homepage banner,0,0,Heartstopper,TV Show,"Romance, Teen",TV-14,2022,2,31,8.5,87,"Two students navigate identity, friendship, and love.",Romance,1,short,111.1,Cameron,25-34,Sci-Fi,Crime,medium,weeknights,balanced explorer,6,laptop
U112,T011,2026-02-10,2.9,59,homepage banner,0,0,Lupin,TV Show,"Crime, Mystery",TV-14,2021,3,44,7.5,85,A gentleman thief seeks revenge using deception.,Crime,1,short,100.5,Cameron,25-34,Sci-Fi,Crime,medium,weeknights,balanced explorer,6,laptop
U112,T002,2025-11-29,2.6,71,friend recommendation,0,0,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Cameron,25-34,Sci-Fi,Crime,medium,weeknights,balanced explorer,6,laptop
U113,T002,2025-12-29,3.5,79,email click,0,0,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Avery,25-34,Thriller,Action,medium,weekends,balanced explorer,4,tv
U113,T056,2025-12-22,3.7,100,email click,0,1,Damsel,Movie,"Fantasy, Adventure",PG-13,2024,1,109,6.1,89,A princess fights to survive a dragon-filled cave.,Fantasy,1,medium,87.7,Avery,25-34,Thriller,Action,medium,weekends,balanced explorer,4,tv
U113,T005,2026-02-07,2.1,62,friend recommendation,0,0,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Avery,25-34,Thriller,Action,medium,weekends,balanced explorer,4,tv
U113,T053,2025-04-25,1.6,63,email click,0,0,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Avery,25-34,Thriller,Action,medium,weekends,balanced explorer,4,tv
U113,T055,2026-02-22,3.8,82,search,0,0,Blue Eye Samurai,TV Show,"Animation, Action",TV-MA,2023,1,45,8.7,70,A swordswoman seeks revenge in Edo-period Japan.,Animation,1,short,108.0,Avery,25-34,Thriller,Action,medium,weekends,balanced explorer,4,tv
U113,T010,2025-07-13,2.6,40,friend recommendation,0,0,Emily in Paris,TV Show,"Comedy, Romance",TV-MA,2020,4,30,6.9,72,A marketer explores work and romance in Paris.,Comedy,1,short,90.6,Avery,25-34,Thriller,Action,medium,weekends,balanced explorer,4,tv
U113,T009,2026-01-11,3.2,98,friend recommendation,0,1,Narcos,TV Show,"Crime, Drama",TV-MA,2015,3,49,8.7,78,The rise of Pablo Escobar and the drug wars.,Crime,0,short,110.4,Avery,25-34,Thriller,Action,medium,weekends,balanced explorer,4,tv
U113,T047,2025-03-07,2.6,77,search,0,0,The Mitchells vs. the Machines,Movie,"Animation, Comedy",PG,2021,1,113,7.6,74,A quirky family saves the world from a robot uprising.,Animation,1,medium,98.2,Avery,25-34,Thriller,Action,medium,weekends,balanced explorer,4,tv
U113,T033,2026-01-09,3.7,88,browse row,0,1,Extraction,Movie,"Action, Thriller",R,2020,1,116,6.8,74,A mercenary attempts a dangerous rescue mission.,Action,1,medium,90.2,Avery,25-34,Thriller,Action,medium,weekends,balanced explorer,4,tv
U113,T051,2025-12-26,3.8,71,email click,0,0,Ripley,TV Show,"Thriller, Drama",TV-MA,2024,1,55,8.1,67,"A grifter is drawn into wealth, deception, and murder.",Thriller,1,short,101.1,Avery,25-34,Thriller,Action,medium,weekends,balanced explorer,4,tv
U114,T004,2026-01-30,3.6,98,email click,0,1,The Queen's Gambit,TV Show,Drama,TV-MA,2020,1,56,8.5,89,A chess prodigy battles addiction and fame.,Drama,1,short,111.7,Morgan,18-24,Sci-Fi,Animation,long,weeknights,balanced explorer,7,laptop
U114,T012,2025-01-17,3.9,85,search,0,1,Ozark,TV Show,"Crime, Drama",TV-MA,2017,4,60,8.5,77,A family launders money for a dangerous cartel.,Crime,0,short,108.1,Morgan,18-24,Sci-Fi,Animation,long,weeknights,balanced explorer,7,laptop
U114,T010,2025-11-05,2.8,56,friend recommendation,0,0,Emily in Paris,TV Show,"Comedy, Romance",TV-MA,2020,4,30,6.9,72,A marketer explores work and romance in Paris.,Comedy,1,short,90.6,Morgan,18-24,Sci-Fi,Animation,long,weeknights,balanced explorer,7,laptop
U114,T002,2026-02-19,2.4,68,email click,0,0,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Morgan,18-24,Sci-Fi,Animation,long,weeknights,balanced explorer,7,laptop
U114,T043,2025-04-24,2.2,55,email click,0,0,Army of the Dead,Movie,"Action, Horror",R,2021,1,148,5.7,58,Mercenaries enter zombie-infested Las Vegas for a heist.,Action,1,long,74.4,Morgan,18-24,Sci-Fi,Animation,long,weeknights,balanced explorer,7,laptop
U114,T041,2025-02-23,3.1,77,homepage banner,0,0,The Killer,Movie,"Thriller, Crime",R,2023,1,118,6.8,60,A meticulous assassin faces unexpected consequences.,Thriller,1,medium,86.0,Morgan,18-24,Sci-Fi,Animation,long,weeknights,balanced explorer,7,laptop
U114,T022,2025-03-14,2.4,50,friend recommendation,0,0,Better Call Saul,TV Show,"Crime, Drama",TV-MA,2015,6,46,9.0,96,The morally flexible lawyer begins his transformation.,Crime,0,short,118.8,Morgan,18-24,Sci-Fi,Animation,long,weeknights,balanced explorer,7,laptop
U114,T053,2026-01-17,2.3,64,browse row,0,0,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Morgan,18-24,Sci-Fi,Animation,long,weeknights,balanced explorer,7,laptop
U114,T060,2025-05-02,4.6,100,friend recommendation,1,1,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Morgan,18-24,Sci-Fi,Animation,long,weeknights,balanced explorer,7,laptop
U114,T021,2025-06-13,3.1,84,search,0,0,Breaking Bad,TV Show,"Crime, Drama",TV-MA,2008,5,47,9.5,99,A chemistry teacher turns to meth production.,Crime,0,short,124.7,Morgan,18-24,Sci-Fi,Animation,long,weeknights,balanced explorer,7,laptop
U114,T006,2025-11-22,3.6,91,browse row,0,1,Bridgerton,TV Show,"Romance, Drama",TV-MA,2020,3,60,7.4,84,Love and scandal shape the London social season.,Romance,1,short,99.2,Morgan,18-24,Sci-Fi,Animation,long,weeknights,balanced explorer,7,laptop
U114,T037,2026-02-25,2.8,60,friend recommendation,0,0,To All the Boys I've Loved Before,Movie,"Romance, Comedy",PG-13,2018,1,99,7.0,76,Secret love letters create romantic chaos.,Romance,0,medium,92.8,Morgan,18-24,Sci-Fi,Animation,long,weeknights,balanced explorer,7,laptop
U114,T026,2025-08-17,2.9,89,browse row,0,1,Seinfeld,TV Show,Comedy,TV-14,1989,9,23,8.9,81,A comedian and friends obsess over daily trivialities.,Comedy,0,short,113.3,Morgan,18-24,Sci-Fi,Animation,long,weeknights,balanced explorer,7,laptop
U114,T030,2025-05-16,3.1,59,search,0,0,Glass Onion,Movie,"Mystery, Comedy",PG-13,2022,1,139,7.1,85,A detective untangles a billionaire's island murder game.,Mystery,1,long,96.5,Morgan,18-24,Sci-Fi,Animation,long,weeknights,balanced explorer,7,laptop
U115,T032,2025-12-21,3.9,88,browse row,0,1,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Quinn,35-44,Thriller,Drama,medium,mixed,novelty seeker,9,mobile
U115,T045,2025-06-29,4.8,77,friend recommendation,1,0,Murder Mystery,Movie,"Comedy, Mystery",PG-13,2019,1,97,6.0,81,A couple becomes entangled in a murder case on a yacht.,Comedy,0,medium,84.3,Quinn,35-44,Thriller,Drama,medium,mixed,novelty seeker,9,mobile
U115,T023,2026-02-07,2.0,59,browse row,0,0,Peaky Blinders,TV Show,"Crime, History",TV-MA,2013,6,58,8.8,83,A Birmingham gang rises after World War I.,Crime,0,short,112.9,Quinn,35-44,Thriller,Drama,medium,mixed,novelty seeker,9,mobile
U115,T036,2026-01-04,3.5,57,browse row,0,0,The Gray Man,Movie,"Action, Thriller",PG-13,2022,1,122,6.5,71,A CIA asset becomes the target of a global manhunt.,Action,1,medium,86.3,Quinn,35-44,Thriller,Drama,medium,mixed,novelty seeker,9,mobile
U115,T017,2025-01-25,3.8,69,homepage banner,0,0,The Night Agent,TV Show,"Action, Thriller",TV-MA,2023,1,45,7.5,83,An FBI agent uncovers a conspiracy from a late-night call.,Action,1,short,99.9,Quinn,35-44,Thriller,Drama,medium,mixed,novelty seeker,9,mobile
U115,T010,2025-08-13,2.4,76,homepage banner,0,0,Emily in Paris,TV Show,"Comedy, Romance",TV-MA,2020,4,30,6.9,72,A marketer explores work and romance in Paris.,Comedy,1,short,90.6,Quinn,35-44,Thriller,Drama,medium,mixed,novelty seeker,9,mobile
U115,T019,2025-03-27,4.7,89,homepage banner,1,1,Squid Game,TV Show,"Thriller, Drama",TV-MA,2021,1,55,8.0,97,Cash-strapped players join deadly children's games.,Thriller,1,short,109.1,Quinn,35-44,Thriller,Drama,medium,mixed,novelty seeker,9,mobile
U115,T003,2025-09-10,4.5,78,homepage banner,1,0,Money Heist,TV Show,"Crime, Thriller",TV-MA,2017,5,50,8.2,91,A criminal mastermind executes an ambitious heist.,Crime,0,short,109.3,Quinn,35-44,Thriller,Drama,medium,mixed,novelty seeker,9,mobile
U115,T040,2025-06-29,3.2,82,email click,0,0,Guillermo del Toro's Pinocchio,Movie,"Animation, Fantasy",PG,2022,1,117,7.6,66,A wooden boy comes to life in wartime Italy.,Animation,1,medium,95.8,Quinn,35-44,Thriller,Drama,medium,mixed,novelty seeker,9,mobile
U115,T044,2025-07-12,1.8,35,browse row,0,0,Project Power,Movie,"Action, Sci-Fi",R,2020,1,113,6.0,64,A pill that grants powers sparks chaos in New Orleans.,Action,1,medium,79.2,Quinn,35-44,Thriller,Drama,medium,mixed,novelty seeker,9,mobile
U115,T030,2026-03-01,3.6,88,homepage banner,0,1,Glass Onion,Movie,"Mystery, Comedy",PG-13,2022,1,139,7.1,85,A detective untangles a billionaire's island murder game.,Mystery,1,long,96.5,Quinn,35-44,Thriller,Drama,medium,mixed,novelty seeker,9,mobile
U116,T029,2025-11-30,2.7,82,search,0,0,Bird Box,Movie,"Thriller, Horror",R,2018,1,124,6.6,88,Survivors avoid a mysterious force that drives people mad.,Thriller,0,medium,92.4,Avery,35-44,Fantasy,Animation,medium,weekends,novelty seeker,8,tv
U116,T044,2025-03-25,3.7,99,homepage banner,0,1,Project Power,Movie,"Action, Sci-Fi",R,2020,1,113,6.0,64,A pill that grants powers sparks chaos in New Orleans.,Action,1,medium,79.2,Avery,35-44,Fantasy,Animation,medium,weekends,novelty seeker,8,tv
U116,T013,2025-02-07,2.0,54,browse row,0,0,Black Mirror,TV Show,"Sci-Fi, Thriller",TV-MA,2011,6,60,8.7,76,Dark anthology tales explore technology's consequences.,Sci-Fi,0,short,109.8,Avery,35-44,Fantasy,Animation,medium,weekends,novelty seeker,8,tv
U116,T007,2025-05-31,4.3,96,browse row,1,1,The Witcher,TV Show,"Fantasy, Action",TV-MA,2019,3,57,8.0,86,A monster hunter navigates destiny and politics.,Fantasy,0,short,105.8,Avery,35-44,Fantasy,Animation,medium,weekends,novelty seeker,8,tv
U116,T016,2025-06-13,4.3,74,friend recommendation,1,0,You,TV Show,"Thriller, Drama",TV-MA,2018,4,47,7.7,82,An obsessive man invades the lives of his targets.,Thriller,0,short,101.6,Avery,35-44,Fantasy,Animation,medium,weekends,novelty seeker,8,tv
U116,T053,2025-02-23,5.0,100,browse row,1,1,Avatar: The Last Airbender,TV Show,"Fantasy, Adventure",TV-14,2024,1,50,7.2,88,Young heroes master elements to end a war.,Fantasy,1,short,98.4,Avery,35-44,Fantasy,Animation,medium,weekends,novelty seeker,8,tv
U116,T057,2025-06-25,2.4,60,search,0,0,Rebel Moon,Movie,"Sci-Fi, Action",PG-13,2023,1,134,5.6,87,A former soldier gathers warriors to fight an empire.,Sci-Fi,1,long,82.1,Avery,35-44,Fantasy,Animation,medium,weekends,novelty seeker,8,tv
U116,T018,2025-07-12,4.6,65,search,1,0,One Piece,TV Show,"Adventure, Fantasy",TV-14,2023,1,55,8.4,90,Pirates hunt treasure in a live-action adaptation.,Adventure,1,short,111.0,Avery,35-44,Fantasy,Animation,medium,weekends,novelty seeker,8,tv
U116,T042,2026-01-10,2.2,40,browse row,0,0,Leave the World Behind,Movie,"Thriller, Drama",R,2023,1,141,6.4,82,A family vacation turns ominous during a blackout.,Thriller,1,long,88.6,Avery,35-44,Fantasy,Animation,medium,weekends,novelty seeker,8,tv
U116,T056,2025-10-08,4.6,83,browse row,1,0,Damsel,Movie,"Fantasy, Adventure",PG-13,2024,1,109,6.1,89,A princess fights to survive a dragon-filled cave.,Fantasy,1,medium,87.7,Avery,35-44,Fantasy,Animation,medium,weekends,novelty seeker,8,tv
U116,T039,2025-06-23,3.0,66,email click,0,0,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Avery,35-44,Fantasy,Animation,medium,weekends,novelty seeker,8,tv
U116,T061,2025-11-11,2.5,63,homepage banner,0,0,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Avery,35-44,Fantasy,Animation,medium,weekends,novelty seeker,8,tv
U116,T048,2025-12-27,2.5,87,browse row,0,1,Klaus,Movie,"Animation, Family",PG,2019,1,96,8.2,69,A postman and a toymaker spark a holiday tradition.,Animation,0,medium,102.7,Avery,35-44,Fantasy,Animation,medium,weekends,novelty seeker,8,tv
U116,T040,2025-08-09,5.0,60,search,1,0,Guillermo del Toro's Pinocchio,Movie,"Animation, Fantasy",PG,2022,1,117,7.6,66,A wooden boy comes to life in wartime Italy.,Animation,1,medium,95.8,Avery,35-44,Fantasy,Animation,medium,weekends,novelty seeker,8,tv
U116,T012,2025-11-07,2.7,65,homepage banner,0,0,Ozark,TV Show,"Crime, Drama",TV-MA,2017,4,60,8.5,77,A family launders money for a dangerous cartel.,Crime,0,short,108.1,Avery,35-44,Fantasy,Animation,medium,weekends,novelty seeker,8,tv
U116,T006,2025-03-22,2.9,89,browse row,0,1,Bridgerton,TV Show,"Romance, Drama",TV-MA,2020,3,60,7.4,84,Love and scandal shape the London social season.,Romance,1,short,99.2,Avery,35-44,Fantasy,Animation,medium,weekends,novelty seeker,8,tv
U116,T035,2025-02-21,3.1,74,friend recommendation,0,0,The Adam Project,Movie,"Sci-Fi, Adventure",PG-13,2022,1,106,6.7,73,A time-traveling pilot teams up with his younger self.,Sci-Fi,1,medium,88.9,Avery,35-44,Fantasy,Animation,medium,weekends,novelty seeker,8,tv
U117,T039,2025-04-08,2.3,56,homepage banner,0,0,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Morgan,45-54,Romance,Sci-Fi,long,weeknights,comfort rewatcher,2,tv
U117,T058,2025-12-23,3.0,49,email click,0,0,Carry-On,Movie,"Thriller, Action",PG-13,2024,1,112,6.8,90,An airport employee is blackmailed into a dangerous plot.,Thriller,1,medium,95.0,Morgan,45-54,Romance,Sci-Fi,long,weeknights,comfort rewatcher,2,tv
U117,T009,2026-01-05,3.0,100,email click,0,1,Narcos,TV Show,"Crime, Drama",TV-MA,2015,3,49,8.7,78,The rise of Pablo Escobar and the drug wars.,Crime,0,short,110.4,Morgan,45-54,Romance,Sci-Fi,long,weeknights,comfort rewatcher,2,tv
U117,T021,2025-05-16,3.1,71,friend recommendation,0,0,Breaking Bad,TV Show,"Crime, Drama",TV-MA,2008,5,47,9.5,99,A chemistry teacher turns to meth production.,Crime,0,short,124.7,Morgan,45-54,Romance,Sci-Fi,long,weeknights,comfort rewatcher,2,tv
U117,T030,2025-06-02,2.9,87,search,0,1,Glass Onion,Movie,"Mystery, Comedy",PG-13,2022,1,139,7.1,85,A detective untangles a billionaire's island murder game.,Mystery,1,long,96.5,Morgan,45-54,Romance,Sci-Fi,long,weeknights,comfort rewatcher,2,tv
U117,T042,2025-02-19,2.8,100,browse row,0,1,Leave the World Behind,Movie,"Thriller, Drama",R,2023,1,141,6.4,82,A family vacation turns ominous during a blackout.,Thriller,1,long,88.6,Morgan,45-54,Romance,Sci-Fi,long,weeknights,comfort rewatcher,2,tv
U117,T034,2025-07-21,4.2,90,email click,1,1,Enola Holmes,Movie,"Mystery, Adventure",PG-13,2020,1,123,6.6,78,Sherlock's sister searches for her missing mother.,Mystery,1,medium,89.4,Morgan,45-54,Romance,Sci-Fi,long,weeknights,comfort rewatcher,2,tv
U117,T049,2025-10-09,4.0,100,homepage banner,1,1,Maestro in Blue,TV Show,"Drama, Romance",TV-MA,2022,1,50,7.8,59,A musician becomes entangled in island secrets.,Drama,1,short,95.7,Morgan,45-54,Romance,Sci-Fi,long,weeknights,comfort rewatcher,2,tv
U117,T006,2025-03-20,4.7,79,browse row,1,0,Bridgerton,TV Show,"Romance, Drama",TV-MA,2020,3,60,7.4,84,Love and scandal shape the London social season.,Romance,1,short,99.2,Morgan,45-54,Romance,Sci-Fi,long,weeknights,comfort rewatcher,2,tv
U117,T025,2025-07-04,3.7,62,browse row,0,0,Friends,TV Show,"Comedy, Romance",TV-14,1994,10,22,8.9,92,Six friends face life and love in New York.,Comedy,0,short,116.6,Morgan,45-54,Romance,Sci-Fi,long,weeknights,comfort rewatcher,2,tv
U117,T024,2025-08-07,3.2,86,browse row,0,1,The Office,TV Show,Comedy,TV-14,2005,9,22,9.0,94,Office workers navigate absurd everyday routines.,Comedy,0,short,118.2,Morgan,45-54,Romance,Sci-Fi,long,weeknights,comfort rewatcher,2,tv
U118,T050,2026-02-26,2.7,61,email click,0,0,Baby Reindeer,TV Show,"Drama, Thriller",TV-MA,2024,1,33,8.3,86,A comedian faces a stalking nightmare.,Drama,1,short,108.8,Alex,25-34,Fantasy,Action,medium,mixed,balanced explorer,4,laptop
U118,T040,2025-09-03,4.2,62,search,1,0,Guillermo del Toro's Pinocchio,Movie,"Animation, Fantasy",PG,2022,1,117,7.6,66,A wooden boy comes to life in wartime Italy.,Animation,1,medium,95.8,Alex,25-34,Fantasy,Action,medium,mixed,balanced explorer,4,laptop
U118,T054,2025-02-19,3.4,77,browse row,0,0,Beef,TV Show,"Comedy, Drama",TV-MA,2023,1,35,8.0,73,A road-rage incident spirals into obsession.,Comedy,1,short,101.9,Alex,25-34,Fantasy,Action,medium,mixed,balanced explorer,4,laptop
U118,T037,2025-04-16,3.4,68,search,0,0,To All the Boys I've Loved Before,Movie,"Romance, Comedy",PG-13,2018,1,99,7.0,76,Secret love letters create romantic chaos.,Romance,0,medium,92.8,Alex,25-34,Fantasy,Action,medium,mixed,balanced explorer,4,laptop
U118,T056,2025-11-23,3.5,73,friend recommendation,0,0,Damsel,Movie,"Fantasy, Adventure",PG-13,2024,1,109,6.1,89,A princess fights to survive a dragon-filled cave.,Fantasy,1,medium,87.7,Alex,25-34,Fantasy,Action,medium,mixed,balanced explorer,4,laptop
U118,T042,2025-02-11,2.7,84,homepage banner,0,0,Leave the World Behind,Movie,"Thriller, Drama",R,2023,1,141,6.4,82,A family vacation turns ominous during a blackout.,Thriller,1,long,88.6,Alex,25-34,Fantasy,Action,medium,mixed,balanced explorer,4,laptop
U118,T001,2025-03-01,3.5,100,friend recommendation,0,1,Stranger Things,TV Show,"Sci-Fi, Drama",TV-14,2016,4,51,8.7,95,Supernatural mysteries unfold in a small town.,Sci-Fi,0,short,115.5,Alex,25-34,Fantasy,Action,medium,mixed,balanced explorer,4,laptop
U118,T041,2026-02-06,2.7,35,homepage banner,0,0,The Killer,Movie,"Thriller, Crime",R,2023,1,118,6.8,60,A meticulous assassin faces unexpected consequences.,Thriller,1,medium,86.0,Alex,25-34,Fantasy,Action,medium,mixed,balanced explorer,4,laptop
U118,T018,2025-08-30,3.8,86,homepage banner,0,1,One Piece,TV Show,"Adventure, Fantasy",TV-14,2023,1,55,8.4,90,Pirates hunt treasure in a live-action adaptation.,Adventure,1,short,111.0,Alex,25-34,Fantasy,Action,medium,mixed,balanced explorer,4,laptop
U118,T039,2025-12-05,3.4,83,friend recommendation,0,0,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Alex,25-34,Fantasy,Action,medium,mixed,balanced explorer,4,laptop
U118,T048,2025-02-16,2.7,97,email click,0,1,Klaus,Movie,"Animation, Family",PG,2019,1,96,8.2,69,A postman and a toymaker spark a holiday tradition.,Animation,0,medium,102.7,Alex,25-34,Fantasy,Action,medium,mixed,balanced explorer,4,laptop
U118,T026,2025-07-18,2.4,64,search,0,0,Seinfeld,TV Show,Comedy,TV-14,1989,9,23,8.9,81,A comedian and friends obsess over daily trivialities.,Comedy,0,short,113.3,Alex,25-34,Fantasy,Action,medium,mixed,balanced explorer,4,laptop
U119,T017,2025-07-15,5.0,96,friend recommendation,1,1,The Night Agent,TV Show,"Action, Thriller",TV-MA,2023,1,45,7.5,83,An FBI agent uncovers a conspiracy from a late-night call.,Action,1,short,99.9,Riley,18-24,Mystery,Romance,short,weekends,novelty seeker,2,laptop
U119,T009,2025-04-06,4.0,88,homepage banner,1,1,Narcos,TV Show,"Crime, Drama",TV-MA,2015,3,49,8.7,78,The rise of Pablo Escobar and the drug wars.,Crime,0,short,110.4,Riley,18-24,Mystery,Romance,short,weekends,novelty seeker,2,laptop
U119,T031,2025-01-23,3.3,72,friend recommendation,0,0,Roma,Movie,Drama,R,2018,1,135,7.7,63,A domestic worker supports a family in 1970s Mexico City.,Drama,0,long,95.9,Riley,18-24,Mystery,Romance,short,weekends,novelty seeker,2,laptop
U119,T002,2025-08-14,3.4,87,homepage banner,0,1,The Crown,TV Show,"Drama, History",TV-MA,2016,6,58,8.6,88,A dramatized history of the British royal family.,Drama,0,short,112.4,Riley,18-24,Mystery,Romance,short,weekends,novelty seeker,2,laptop
U119,T023,2025-05-15,3.0,73,search,0,0,Peaky Blinders,TV Show,"Crime, History",TV-MA,2013,6,58,8.8,83,A Birmingham gang rises after World War I.,Crime,0,short,112.9,Riley,18-24,Mystery,Romance,short,weekends,novelty seeker,2,laptop
U119,T036,2026-03-05,3.4,91,friend recommendation,0,1,The Gray Man,Movie,"Action, Thriller",PG-13,2022,1,122,6.5,71,A CIA asset becomes the target of a global manhunt.,Action,1,medium,86.3,Riley,18-24,Mystery,Romance,short,weekends,novelty seeker,2,laptop
U119,T061,2025-10-16,3.1,75,browse row,0,0,The Gentlemen,TV Show,"Crime, Comedy",TV-MA,2024,1,52,8.1,75,An aristocrat inherits a criminal empire beneath his estate.,Crime,1,short,103.5,Riley,18-24,Mystery,Romance,short,weekends,novelty seeker,2,laptop
U119,T028,2025-03-19,4.1,100,browse row,1,1,Marriage Story,Movie,Drama,R,2019,1,137,7.9,68,A couple navigates a painful divorce.,Drama,0,long,99.4,Riley,18-24,Mystery,Romance,short,weekends,novelty seeker,2,laptop
U119,T051,2025-02-13,4.5,90,friend recommendation,1,1,Ripley,TV Show,"Thriller, Drama",TV-MA,2024,1,55,8.1,67,"A grifter is drawn into wealth, deception, and murder.",Thriller,1,short,101.1,Riley,18-24,Mystery,Romance,short,weekends,novelty seeker,2,laptop
U119,T032,2026-02-18,3.6,96,email click,0,1,Don't Look Up,Movie,"Comedy, Sci-Fi",R,2021,1,138,7.2,90,Scientists struggle to warn humanity about a comet.,Comedy,1,long,99.0,Riley,18-24,Mystery,Romance,short,weekends,novelty seeker,2,laptop
U119,T055,2025-07-31,4.6,61,email click,1,0,Blue Eye Samurai,TV Show,"Animation, Action",TV-MA,2023,1,45,8.7,70,A swordswoman seeks revenge in Edo-period Japan.,Animation,1,short,108.0,Riley,18-24,Mystery,Romance,short,weekends,novelty seeker,2,laptop
U119,T060,2025-04-27,2.6,90,email click,0,1,Society of the Snow,Movie,"Drama, Survival",R,2023,1,145,7.8,72,Survivors of a crash struggle to endure in the Andes.,Drama,1,long,99.6,Riley,18-24,Mystery,Romance,short,weekends,novelty seeker,2,laptop
U119,T043,2025-02-01,3.2,66,homepage banner,0,0,Army of the Dead,Movie,"Action, Horror",R,2021,1,148,5.7,58,Mercenaries enter zombie-infested Las Vegas for a heist.,Action,1,long,74.4,Riley,18-24,Mystery,Romance,short,weekends,novelty seeker,2,laptop
U120,T046,2025-08-03,5.0,100,email click,1,1,Red Notice,Movie,"Action, Comedy",PG-13,2021,1,118,6.3,92,An FBI profiler chases two rival art thieves.,Action,1,medium,90.6,Casey,18-24,Comedy,Action,long,weeknights,balanced explorer,7,laptop
U120,T003,2025-12-18,3.1,69,homepage banner,0,0,Money Heist,TV Show,"Crime, Thriller",TV-MA,2017,5,50,8.2,91,A criminal mastermind executes an ambitious heist.,Crime,0,short,109.3,Casey,18-24,Comedy,Action,long,weeknights,balanced explorer,7,laptop
U120,T028,2025-10-21,3.1,80,search,0,0,Marriage Story,Movie,Drama,R,2019,1,137,7.9,68,A couple navigates a painful divorce.,Drama,0,long,99.4,Casey,18-24,Comedy,Action,long,weeknights,balanced explorer,7,laptop
U120,T005,2025-09-01,4.0,100,friend recommendation,1,1,Wednesday,TV Show,"Fantasy, Mystery",TV-14,2022,1,48,8.1,93,Wednesday Addams solves mysteries at Nevermore.,Fantasy,1,short,108.9,Casey,18-24,Comedy,Action,long,weeknights,balanced explorer,7,laptop
U120,T041,2025-02-10,3.0,78,homepage banner,0,0,The Killer,Movie,"Thriller, Crime",R,2023,1,118,6.8,60,A meticulous assassin faces unexpected consequences.,Thriller,1,medium,86.0,Casey,18-24,Comedy,Action,long,weeknights,balanced explorer,7,laptop
U120,T001,2026-01-01,2.6,63,browse row,0,0,Stranger Things,TV Show,"Sci-Fi, Drama",TV-14,2016,4,51,8.7,95,Supernatural mysteries unfold in a small town.,Sci-Fi,0,short,115.5,Casey,18-24,Comedy,Action,long,weeknights,balanced explorer,7,laptop
U120,T017,2025-09-15,4.2,100,email click,1,1,The Night Agent,TV Show,"Action, Thriller",TV-MA,2023,1,45,7.5,83,An FBI agent uncovers a conspiracy from a late-night call.,Action,1,short,99.9,Casey,18-24,Comedy,Action,long,weeknights,balanced explorer,7,laptop
U120,T026,2025-09-22,3.6,84,email click,0,0,Seinfeld,TV Show,Comedy,TV-14,1989,9,23,8.9,81,A comedian and friends obsess over daily trivialities.,Comedy,0,short,113.3,Casey,18-24,Comedy,Action,long,weeknights,balanced explorer,7,laptop
U120,T048,2025-12-13,2.9,86,email click,0,1,Klaus,Movie,"Animation, Family",PG,2019,1,96,8.2,69,A postman and a toymaker spark a holiday tradition.,Animation,0,medium,102.7,Casey,18-24,Comedy,Action,long,weeknights,balanced explorer,7,laptop
U120,T011,2025-03-17,2.8,44,browse row,0,0,Lupin,TV Show,"Crime, Mystery",TV-14,2021,3,44,7.5,85,A gentleman thief seeks revenge using deception.,Crime,1,short,100.5,Casey,18-24,Comedy,Action,long,weeknights,balanced explorer,7,laptop
U120,T022,2026-01-23,3.6,76,homepage banner,0,0,Better Call Saul,TV Show,"Crime, Drama",TV-MA,2015,6,46,9.0,96,The morally flexible lawyer begins his transformation.,Crime,0,short,118.8,Casey,18-24,Comedy,Action,long,weeknights,balanced explorer,7,laptop
U120,T007,2025-03-30,3.5,86,search,0,1,The Witcher,TV Show,"Fantasy, Action",TV-MA,2019,3,57,8.0,86,A monster hunter navigates destiny and politics.,Fantasy,0,short,105.8,Casey,18-24,Comedy,Action,long,weeknights,balanced explorer,7,laptop
U120,T024,2025-04-19,4.2,93,search,1,1,The Office,TV Show,Comedy,TV-14,2005,9,22,9.0,94,Office workers navigate absurd everyday routines.,Comedy,0,short,118.2,Casey,18-24,Comedy,Action,long,weeknights,balanced explorer,7,laptop
U120,T039,2025-03-06,2.0,73,browse row,0,0,"Tick, Tick... Boom!",Movie,"Drama, Musical",PG-13,2021,1,121,7.5,65,An aspiring composer faces artistic and personal pressure.,Drama,1,medium,94.5,Casey,18-24,Comedy,Action,long,weeknights,balanced explorer,7,laptop
U120,T010,2025-08-05,2.9,85,browse row,0,1,Emily in Paris,TV Show,"Comedy, Romance",TV-MA,2020,4,30,6.9,72,A marketer explores work and romance in Paris.,Comedy,1,short,90.6,Casey,18-24,Comedy,Action,long,weeknights,balanced explorer,7,laptop
U120,T047,2025-12-16,4.7,71,homepage banner,1,0,The Mitchells vs. the Machines,Movie,"Animation, Comedy",PG,2021,1,113,7.6,74,A quirky family saves the world from a robot uprising.,Animation,1,medium,98.2,Casey,18-24,Comedy,Action,long,weeknights,balanced explorer,7,laptop
|