File size: 43,820 Bytes
8746559 c979202 8746559 c979202 8746559 c979202 8746559 f622b52 8746559 c979202 8746559 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>iHeadline RobotRanks 2025 | Rankings & Live Updates</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
.live-pulse {
animation: pulse 2s infinite;
}
.bot-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.news-ticker {
animation: ticker 30s linear infinite;
}
@keyframes ticker {
0% { transform: translateX(100%); }
100% { transform: translateX(-100%); }
}
.damage-high {
background-color: #f87171;
}
.damage-medium {
background-color: #fbbf24;
}
.damage-low {
background-color: #34d399;
}
</style>
</head>
<body class="bg-gray-900 text-white">
<!-- Header with Navigation -->
<header class="bg-black py-4 border-b-4 border-red-600 sticky top-0 z-50">
<div class="container mx-auto px-4 flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fas fa-robot text-red-500 text-3xl"></i>
<h1 class="text-2xl font-bold bg-gradient-to-r from-red-500 to-yellow-500 bg-clip-text text-transparent">RobotRanks 2025</h1>
</div>
<nav class="hidden md:flex space-x-6">
<a href="#" class="hover:text-red-400 font-medium">RANKINGS</a>
<a href="#" class="hover:text-red-400 font-medium">SCHEDULE</a>
<a href="#" class="hover:text-red-400 font-medium">TEAMS</a>
<a href="#" class="hover:text-red-400 font-medium">HISTORY</a>
<a href="#" class="hover:text-red-400 font-medium">SHOP</a>
</nav>
<div class="flex items-center space-x-4">
<button class="bg-red-600 hover:bg-red-700 px-4 py-2 rounded-md font-bold">
<i class="fas fa-ticket-alt mr-2"></i>Subscribe
</button>
<button class="md:hidden text-2xl">
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</header>
<!-- Live News Ticker -->
<div class="bg-red-600 py-2 overflow-hidden">
<div class="container mx-auto px-4 relative">
<div class="absolute left-0 top-0 bottom-0 flex items-center bg-black px-4 z-10">
<span class="font-bold uppercase text-sm flex items-center">
<span class="live-pulse h-2 w-2 bg-white rounded-full mr-2"></span>
Breaking
</span>
</div>
<div class="news-ticker whitespace-nowrap pl-24">
<span class="mr-8">⚡ Tombstone suffers first KO loss in 3 years to newcomer Malice 2.0</span>
<span class="mr-8">🔥 BattleBots announces 2025 World Championship in Las Vegas with $1M prize</span>
<span class="mr-8">💥 Hydra's flipper sets new power record at 28ft vertical flip</span>
<span class="mr-8">🔧 Witch Doctor reveals radical new anti-horizontal configuration</span>
</div>
</div>
</div>
<!-- Hero Section -->
<section class="relative h-96 bg-gradient-to-b from-gray-800 to-gray-900 overflow-hidden">
<div class="absolute inset-0 bg-[url('https://battlebots.com/wp-content/uploads/2021/11/BB7_Website_Header_1920x1080.jpg')] bg-cover bg-center opacity-30"></div>
<div class="container mx-auto px-4 h-full flex flex-col justify-center relative z-10">
<h2 class="text-4xl md:text-6xl font-bold mb-4">2025 iHeadline RobotRanks WORLD RANKINGS</h2>
<p class="text-xl md:text-2xl max-w-2xl mb-8">The ultimate robot combat competition featuring the most destructive machines on Earth</p>
<div class="flex space-x-4">
<button class="bg-red-600 hover:bg-red-700 px-6 py-3 rounded-md font-bold text-lg">
WATCH LIVE <i class="fas fa-play ml-2"></i>
</button>
<button class="bg-transparent border-2 border-white hover:bg-white hover:text-black px-6 py-3 rounded-md font-bold text-lg">
LEARN MORE
</button>
</div>
</div>
</section>
<!-- Main Content -->
<main class="container mx-auto px-4 py-8">
<!-- Rankings Section -->
<section class="mb-12">
<div class="flex justify-between items-center mb-6">
<h2 class="text-3xl font-bold border-l-4 border-red-500 pl-4">TOP 10 BATTLEBOTS</h2>
<div class="flex items-center">
<span class="mr-2">Last updated: <span id="update-time" class="font-bold">Just now</span></span>
<button id="refresh-btn" class="bg-gray-700 hover:bg-gray-600 p-2 rounded-full">
<i class="fas fa-sync-alt"></i>
</button>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-6">
<!-- Rank 1 -->
<div class="bot-card bg-gray-800 rounded-lg overflow-hidden transition-all duration-300 shadow-lg">
<div class="relative">
<img src="https://battlebots.com/wp-content/uploads/2021/11/Tombstone_Website_Header_1920x1080.jpg" alt="Tombstone" class="w-full h-48 object-cover">
<div class="absolute top-2 left-2 bg-yellow-500 text-black font-bold px-3 py-1 rounded-full flex items-center">
<i class="fas fa-trophy mr-1"></i> #1
</div>
</div>
<div class="p-4">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-bold">Tombstone</h3>
<span class="bg-red-500 text-xs px-2 py-1 rounded-full">CHAMPION</span>
</div>
<p class="text-gray-300 text-sm mb-3">Ray Billings | Horizontal Spinner</p>
<div class="flex justify-between text-sm mb-3">
<div>
<span class="font-bold">12-1</span> Record
</div>
<div>
<span class="font-bold">9</span> KOs
</div>
<div>
<span class="font-bold">98%</span> Win Rate
</div>
</div>
<div class="w-full bg-gray-700 rounded-full h-2 mb-3">
<div class="damage-high h-2 rounded-full" style="width: 95%"></div>
</div>
<div class="flex justify-between text-xs">
<span>Destruction Rating</span>
<span>95/100</span>
</div>
</div>
</div>
<!-- Rank 2 -->
<div class="bot-card bg-gray-800 rounded-lg overflow-hidden transition-all duration-300 shadow-lg">
<div class="relative">
<img src="https://battlebots.com/wp-content/uploads/2021/11/WitchDoctor_Website_Header_1920x1080.jpg" alt="Witch Doctor" class="w-full h-48 object-cover">
<div class="absolute top-2 left-2 bg-gray-300 text-black font-bold px-3 py-1 rounded-full flex items-center">
<i class="fas fa-medal mr-1"></i> #2
</div>
</div>
<div class="p-4">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-bold">Witch Doctor</h3>
<span class="bg-purple-500 text-xs px-2 py-1 rounded-full">FINALIST</span>
</div>
<p class="text-gray-300 text-sm mb-3">Andrea Suarez | Vertical Spinner</p>
<div class="flex justify-between text-sm mb-3">
<div>
<span class="font-bold">11-2</span> Record
</div>
<div>
<span class="font-bold">7</span> KOs
</div>
<div>
<span class="font-bold">92%</span> Win Rate
</div>
</div>
<div class="w-full bg-gray-700 rounded-full h-2 mb-3">
<div class="damage-high h-2 rounded-full" style="width: 88%"></div>
</div>
<div class="flex justify-between text-xs">
<span>Destruction Rating</span>
<span>88/100</span>
</div>
</div>
</div>
<!-- Rank 3 -->
<div class="bot-card bg-gray-800 rounded-lg overflow-hidden transition-all duration-300 shadow-lg">
<div class="relative">
<img src="https://battlebots.com/wp-content/uploads/2021/11/Hydra_Website_Header_1920x1080.jpg" alt="Hydra" class="w-full h-48 object-cover">
<div class="absolute top-2 left-2 bg-amber-600 text-black font-bold px-3 py-1 rounded-full flex items-center">
<i class="fas fa-award mr-1"></i> #3
</div>
</div>
<div class="p-4">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-bold">Hydra</h3>
<span class="bg-blue-500 text-xs px-2 py-1 rounded-full">SEMI-FINALIST</span>
</div>
<p class="text-gray-300 text-sm mb-3">Jake Ewert | Flipper</p>
<div class="flex justify-between text-sm mb-3">
<div>
<span class="font-bold">10-3</span> Record
</div>
<div>
<span class="font-bold">6</span> KOs
</div>
<div>
<span class="font-bold">90%</span> Win Rate
</div>
</div>
<div class="w-full bg-gray-700 rounded-full h-2 mb-3">
<div class="damage-medium h-2 rounded-full" style="width: 75%"></div>
</div>
<div class="flex justify-between text-xs">
<span>Destruction Rating</span>
<span>75/100</span>
</div>
</div>
</div>
<!-- Rank 4 -->
<div class="bot-card bg-gray-800 rounded-lg overflow-hidden transition-all duration-300 shadow-lg">
<div class="relative">
<img src="https://battlebots.com/wp-content/uploads/2021/11/SawBlaze_Website_Header_1920x1080.jpg" alt="SawBlaze" class="w-full h-48 object-cover">
<div class="absolute top-2 left-2 bg-gray-400 text-black font-bold px-3 py-1 rounded-full">
#4
</div>
</div>
<div class="p-4">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-bold">SawBlaze</h3>
<span class="bg-blue-500 text-xs px-2 py-1 rounded-full">SEMI-FINALIST</span>
</div>
<p class="text-gray-300 text-sm mb-3">Jamison Go | Hammer Saw</p>
<div class="flex justify-between text-sm mb-3">
<div>
<span class="font-bold">9-3</span> Record
</div>
<div>
<span class="font-bold">5</span> KOs
</div>
<div>
<span class="font-bold">85%</span> Win Rate
</div>
</div>
<div class="w-full bg-gray-700 rounded-full h-2 mb-3">
<div class="damage-medium h-2 rounded-full" style="width: 82%"></div>
</div>
<div class="flex justify-between text-xs">
<span>Destruction Rating</span>
<span>82/100</span>
</div>
</div>
</div>
<!-- Rank 5 -->
<div class="bot-card bg-gray-800 rounded-lg overflow-hidden transition-all duration-300 shadow-lg">
<div class="relative">
<img src="https://battlebots.com/wp-content/uploads/2021/11/EndGame_Website_Header_1920x1080.jpg" alt="End Game" class="w-full h-48 object-cover">
<div class="absolute top-2 left-2 bg-gray-400 text-black font-bold px-3 py-1 rounded-full">
#5
</div>
</div>
<div class="p-4">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-bold">End Game</h3>
<span class="bg-green-500 text-xs px-2 py-1 rounded-full">QUARTER-FINALIST</span>
</div>
<p class="text-gray-300 text-sm mb-3">Jack Barker | Vertical Spinner</p>
<div class="flex justify-between text-sm mb-3">
<div>
<span class="font-bold">8-3</span> Record
</div>
<div>
<span class="font-bold">6</span> KOs
</div>
<div>
<span class="font-bold">80%</span> Win Rate
</div>
</div>
<div class="w-full bg-gray-700 rounded-full h-2 mb-3">
<div class="damage-high h-2 rounded-full" style="width: 90%"></div>
</div>
<div class="flex justify-between text-xs">
<span>Destruction Rating</span>
<span>90/100</span>
</div>
</div>
</div>
<!-- Rank 6 -->
<div class="bot-card bg-gray-800 rounded-lg overflow-hidden transition-all duration-300 shadow-lg">
<div class="relative">
<img src="https://battlebots.com/wp-content/uploads/2021/11/Minotaur_Website_Header_1920x1080.jpg" alt="Minotaur" class="w-full h-48 object-cover">
<div class="absolute top-2 left-2 bg-gray-400 text-black font-bold px-3 py-1 rounded-full">
#6
</div>
</div>
<div class="p-4">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-bold">Minotaur</h3>
<span class="bg-green-500 text-xs px-2 py-1 rounded-full">QUARTER-FINALIST</span>
</div>
<p class="text-gray-300 text-sm mb-3">Daniel Freitas | Drum Spinner</p>
<div class="flex justify-between text-sm mb-3">
<div>
<span class="font-bold">8-4</span> Record
</div>
<div>
<span class="font-bold">5</span> KOs
</div>
<div>
<span class="font-bold">78%</span> Win Rate
</div>
</div>
<div class="w-full bg-gray-700 rounded-full h-2 mb-3">
<div class="damage-high h-2 rounded-full" style="width: 87%"></div>
</div>
<div class="flex justify-between text-xs">
<span>Destruction Rating</span>
<span>87/100</span>
</div>
</div>
</div>
<!-- Rank 7 -->
<div class="bot-card bg-gray-800 rounded-lg overflow-hidden transition-all duration-300 shadow-lg">
<div class="relative">
<img src="https://battlebots.com/wp-content/uploads/2021/11/Whiplash_Website_Header_1920x1080.jpg" alt="Whiplash" class="w-full h-48 object-cover">
<div class="absolute top-2 left-2 bg-gray-400 text-black font-bold px-3 py-1 rounded-full">
#7
</div>
</div>
<div class="p-4">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-bold">Whiplash</h3>
<span class="bg-green-500 text-xs px-2 py-1 rounded-full">QUARTER-FINALIST</span>
</div>
<p class="text-gray-300 text-sm mb-3">Matthew Vasquez | Lifter/Spinner</p>
<div class="flex justify-between text-sm mb-3">
<div>
<span class="font-bold">7-4</span> Record
</div>
<div>
<span class="font-bold">4</span> KOs
</div>
<div>
<span class="font-bold">75%</span> Win Rate
</div>
</div>
<div class="w-full bg-gray-700 rounded-full h-2 mb-3">
<div class="damage-medium h-2 rounded-full" style="width: 70%"></div>
</div>
<div class="flex justify-between text-xs">
<span>Destruction Rating</span>
<span>70/100</span>
</div>
</div>
</div>
<!-- Rank 8 -->
<div class="bot-card bg-gray-800 rounded-lg overflow-hidden transition-all duration-300 shadow-lg">
<div class="relative">
<img src="https://battlebots.com/wp-content/uploads/2021/11/BlackDragon_Website_Header_1920x1080.jpg" alt="Black Dragon" class="w-full h-48 object-cover">
<div class="absolute top-2 left-2 bg-gray-400 text-black font-bold px-3 py-1 rounded-full">
#8
</div>
</div>
<div class="p-4">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-bold">Black Dragon</h3>
<span class="bg-yellow-500 text-xs px-2 py-1 rounded-full">ROUND OF 16</span>
</div>
<p class="text-gray-300 text-sm mb-3">Team Black Dragon | Vertical Spinner</p>
<div class="flex justify-between text-sm mb-3">
<div>
<span class="font-bold">7-5</span> Record
</div>
<div>
<span class="font-bold">5</span> KOs
</div>
<div>
<span class="font-bold">72%</span> Win Rate
</div>
</div>
<div class="w-full bg-gray-700 rounded-full h-2 mb-3">
<div class="damage-medium h-2 rounded-full" style="width: 78%"></div>
</div>
<div class="flex justify-between text-xs">
<span>Destruction Rating</span>
<span>78/100</span>
</div>
</div>
</div>
<!-- Rank 9 -->
<div class="bot-card bg-gray-800 rounded-lg overflow-hidden transition-all duration-300 shadow-lg">
<div class="relative">
<img src="https://battlebots.com/wp-content/uploads/2021/11/Rotator_Website_Header_1920x1080.jpg" alt="Rotator" class="w-full h-48 object-cover">
<div class="absolute top-2 left-2 bg-gray-400 text-black font-bold px-3 py-1 rounded-full">
#9
</div>
</div>
<div class="p-4">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-bold">Rotator</h3>
<span class="bg-yellow-500 text-xs px-2 py-1 rounded-full">ROUND OF 16</span>
</div>
<p class="text-gray-300 text-sm mb-3">Victor Soto | Dual Horizontal Spinner</p>
<div class="flex justify-between text-sm mb-3">
<div>
<span class="font-bold">6-5</span> Record
</div>
<div>
<span class="font-bold">4</span> KOs
</div>
<div>
<span class="font-bold">70%</span> Win Rate
</div>
</div>
<div class="w-full bg-gray-700 rounded-full h-2 mb-3">
<div class="damage-medium h-2 rounded-full" style="width: 80%"></div>
</div>
<div class="flex justify-between text-xs">
<span>Destruction Rating</span>
<span>80/100</span>
</div>
</div>
</div>
<!-- Rank 10 -->
<div class="bot-card bg-gray-800 rounded-lg overflow-hidden transition-all duration-300 shadow-lg">
<div class="relative">
<img src="https://battlebots.com/wp-content/uploads/2021/11/LockJaw_Website_Header_1920x1080.jpg" alt="Lock-Jaw" class="w-full h-48 object-cover">
<div class="absolute top-2 left-2 bg-gray-400 text-black font-bold px-3 py-1 rounded-full">
#10
</div>
</div>
<div class="p-4">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-bold">Lock-Jaw</h3>
<span class="bg-yellow-500 text-xs px-2 py-1 rounded-full">ROUND OF 16</span>
</div>
<p class="text-gray-300 text-sm mb-3">Donald Hutson | Vertical Spinner</p>
<div class="flex justify-between text-sm mb-3">
<div>
<span class="font-bold">6-6</span> Record
</div>
<div>
<span class="font-bold">3</span> KOs
</div>
<div>
<span class="font-bold">68%</span> Win Rate
</div>
</div>
<div class="w-full bg-gray-700 rounded-full h-2 mb-3">
<div class="damage-low h-2 rounded-full" style="width: 65%"></div>
</div>
<div class="flex justify-between text-xs">
<span>Destruction Rating</span>
<span>65/100</span>
</div>
</div>
</div>
</div>
<div class="mt-8 text-center">
<button class="bg-gray-700 hover:bg-gray-600 px-6 py-3 rounded-md font-bold">
VIEW FULL RANKINGS <i class="fas fa-chevron-down ml-2"></i>
</button>
</div>
</section>
<!-- Upcoming Matches -->
<section class="mb-12">
<h2 class="text-3xl font-bold border-l-4 border-red-500 pl-4 mb-6">UPCOMING MATCHES</h2>
<div class="bg-gray-800 rounded-lg overflow-hidden">
<div class="grid grid-cols-12 bg-gray-700 text-sm font-bold py-2 px-4">
<div class="col-span-3">DATE & TIME</div>
<div class="col-span-3">RED CORNER</div>
<div class="col-span-1 text-center">VS</div>
<div class="col-span-3">BLUE CORNER</div>
<div class="col-span-2 text-right">LOCATION</div>
</div>
<!-- Match 1 -->
<div class="grid grid-cols-12 border-b border-gray-700 hover:bg-gray-750 py-3 px-4 items-center">
<div class="col-span-3">
<div class="font-bold">June 15, 2025</div>
<div class="text-sm text-gray-300">7:00 PM PST</div>
</div>
<div class="col-span-3 flex items-center">
<img src="https://battlebots.com/wp-content/uploads/2021/11/Tombstone_Website_Header_1920x1080.jpg" alt="Tombstone" class="w-10 h-10 rounded-full mr-2">
<span>Tombstone</span>
</div>
<div class="col-span-1 text-center text-red-500 font-bold">VS</div>
<div class="col-span-3 flex items-center">
<img src="https://battlebots.com/wp-content/uploads/2021/11/Minotaur_Website_Header_1920x1080.jpg" alt="Minotaur" class="w-10 h-10 rounded-full mr-2">
<span>Minotaur</span>
</div>
<div class="col-span-2 text-right">
<span class="bg-red-500 text-xs px-2 py-1 rounded-full">LIVE ON ESPN</span>
</div>
</div>
<!-- Match 2 -->
<div class="grid grid-cols-12 border-b border-gray-700 hover:bg-gray-750 py-3 px-4 items-center">
<div class="col-span-3">
<div class="font-bold">June 22, 2025</div>
<div class="text-sm text-gray-300">5:00 PM PST</div>
</div>
<div class="col-span-3 flex items-center">
<img src="https://battlebots.com/wp-content/uploads/2021/11/WitchDoctor_Website_Header_1920x1080.jpg" alt="Witch Doctor" class="w-10 h-10 rounded-full mr-2">
<span>Witch Doctor</span>
</div>
<div class="col-span-1 text-center text-red-500 font-bold">VS</div>
<div class="col-span-3 flex items-center">
<img src="https://battlebots.com/wp-content/uploads/2021/11/Hydra_Website_Header_1920x1080.jpg" alt="Hydra" class="w-10 h-10 rounded-full mr-2">
<span>Hydra</span>
</div>
<div class="col-span-2 text-right">
<span class="bg-yellow-500 text-black text-xs px-2 py-1 rounded-full">PAY-PER-VIEW</span>
</div>
</div>
<!-- Match 3 -->
<div class="grid grid-cols-12 border-b border-gray-700 hover:bg-gray-750 py-3 px-4 items-center">
<div class="col-span-3">
<div class="font-bold">June 29, 2025</div>
<div class="text-sm text-gray-300">6:30 PM PST</div>
</div>
<div class="col-span-3 flex items-center">
<img src="https://battlebots.com/wp-content/uploads/2021/11/SawBlaze_Website_Header_1920x1080.jpg" alt="SawBlaze" class="w-10 h-10 rounded-full mr-2">
<span>SawBlaze</span>
</div>
<div class="col-span-1 text-center text-red-500 font-bold">VS</div>
<div class="col-span-3 flex items-center">
<img src="https://battlebots.com/wp-content/uploads/2021/11/EndGame_Website_Header_1920x1080.jpg" alt="End Game" class="w-10 h-10 rounded-full mr-2">
<span>End Game</span>
</div>
<div class="col-span-2 text-right">
<span class="bg-blue-500 text-xs px-2 py-1 rounded-full">DISCOVERY+</span>
</div>
</div>
<!-- Match 4 -->
<div class="grid grid-cols-12 hover:bg-gray-750 py-3 px-4 items-center">
<div class="col-span-3">
<div class="font-bold">July 6, 2025</div>
<div class="text-sm text-gray-300">8:00 PM PST</div>
</div>
<div class="col-span-3 flex items-center">
<img src="https://battlebots.com/wp-content/uploads/2021/11/Whiplash_Website_Header_1920x1080.jpg" alt="Whiplash" class="w-10 h-10 rounded-full mr-2">
<span>Whiplash</span>
</div>
<div class="col-span-1 text-center text-red-500 font-bold">VS</div>
<div class="col-span-3 flex items-center">
<img src="https://battlebots.com/wp-content/uploads/2021/11/Rotator_Website_Header_1920x1080.jpg" alt="Rotator" class="w-10 h-10 rounded-full mr-2">
<span>Rotator</span>
</div>
<div class="col-span-2 text-right">
<span class="bg-red-500 text-xs px-2 py-1 rounded-full">LIVE ON ESPN</span>
</div>
</div>
</div>
</section>
<!-- Latest News -->
<section class="mb-12">
<div class="flex justify-between items-center mb-6">
<h2 class="text-3xl font-bold border-l-4 border-red-500 pl-4">LATEST NEWS</h2>
<a href="#" class="text-red-400 hover:text-red-300 font-medium">VIEW ALL NEWS <i class="fas fa-chevron-right ml-1"></i></a>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- News 1 -->
<div class="bg-gray-800 rounded-lg overflow-hidden hover:shadow-xl transition-all duration-300">
<img src="https://battlebots.com/wp-content/uploads/2023/05/BattleBots-Champions-II-Announcement-Header.jpg" alt="News" class="w-full h-48 object-cover">
<div class="p-4">
<div class="flex justify-between items-center mb-2">
<span class="text-xs text-gray-400">June 10, 2025</span>
<span class="text-xs bg-red-500 px-2 py-1 rounded-full">BREAKING</span>
</div>
<h3 class="text-xl font-bold mb-2">BattleBots Announces $1M World Championship in Las Vegas</h3>
<p class="text-gray-300 text-sm mb-3">The biggest robot combat event in history will take place at the T-Mobile Arena in December 2025 with the largest prize pool ever.</p>
<a href="#" class="text-red-400 hover:text-red-300 text-sm font-medium">READ MORE <i class="fas fa-chevron-right ml-1"></i></a>
</div>
</div>
<!-- News 2 -->
<div class="bg-gray-800 rounded-lg overflow-hidden hover:shadow-xl transition-all duration-300">
<img src="https://battlebots.com/wp-content/uploads/2021/11/Tombstone_Website_Header_1920x1080.jpg" alt="News" class="w-full h-48 object-cover">
<div class="p-4">
<div class="flex justify-between items-center mb-2">
<span class="text-xs text-gray-400">June 8, 2025</span>
<span class="text-xs bg-blue-500 px-2 py-1 rounded-full">ANALYSIS</span>
</div>
<h3 class="text-xl font-bold mb-2">Tombstone's 3-Year Undefeated Streak Ends in Shocking KO</h3>
<p class="text-gray-300 text-sm mb-3">Ray Billings' legendary bot was defeated by newcomer Malice 2.0 in a match that lasted just 42 seconds. Experts analyze what went wrong.</p>
<a href="#" class="text-red-400 hover:text-red-300 text-sm font-medium">READ MORE <i class="fas fa-chevron-right ml-1"></i></a>
</div>
</div>
<!-- News 3 -->
<div class="bg-gray-800 rounded-lg overflow-hidden hover:shadow-xl transition-all duration-300">
<img src="https://battlebots.com/wp-content/uploads/2021/11/Hydra_Website_Header_1920x1080.jpg" alt="News" class="w-full h-48 object-cover">
<div class="p-4">
<div class="flex justify-between items-center mb-2">
<span class="text-xs text-gray-400">June 5, 2025</span>
<span class="text-xs bg-green-500 px-2 py-1 rounded-full">TECH</span>
</div>
<h3 class="text-xl font-bold mb-2">Hydra's Flipper Sets New Power Record at 28ft Vertical Flip</h3>
<p class="text-gray-300 text-sm mb-3">Jake Ewert's flipper bot has broken its own record with a new pneumatic system that launches opponents nearly 30 feet into the air.</p>
<a href="#" class="text-red-400 hover:text-red-300 text-sm font-medium">READ MORE <i class="fas fa-chevron-right ml-1"></i></a>
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section>
<h2 class="text-3xl font-bold border-l-4 border-red-500 pl-4 mb-6">2025 SEASON STATS</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<!-- Stat 1 -->
<div class="bg-gray-800 rounded-lg p-6 text-center">
<div class="text-5xl font-bold text-red-500 mb-2">42</div>
<div class="text-gray-300 uppercase text-sm">Total Fights</div>
</div>
<!-- Stat 2 -->
<div class="bg-gray-800 rounded-lg p-6 text-center">
<div class="text-5xl font-bold text-red-500 mb-2">31</div>
<div class="text-gray-300 uppercase text-sm">KO Victories</div>
</div>
<!-- Stat 3 -->
<div class="bg-gray-800 rounded-lg p-6 text-center">
<div class="text-5xl font-bold text-red-500 mb-2">11</div>
<div class="text-gray-300 uppercase text-sm">Judges Decisions</div>
</div>
<!-- Stat 4 -->
<div class="bg-gray-800 rounded-lg p-6 text-center">
<div class="text-5xl font-bold text-red-500 mb-2">9.2</div>
<div class="text-gray-300 uppercase text-sm">Avg Fight Duration (min)</div>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="bg-black py-8 mt-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-xl font-bold mb-4">BATTLEBOTS</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">About</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">History</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Rules</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">FAQ</a></li>
</ul>
</div>
<div>
<h3 class="text-xl font-bold mb-4">COMPETITION</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Rankings</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Schedule</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Teams</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Arena</a></li>
</ul>
</div>
<div>
<h3 class="text-xl font-bold mb-4">MEDIA</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">News</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Photos</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Videos</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Podcast</a></li>
</ul>
</div>
<div>
<h3 class="text-xl font-bold mb-4">CONNECT</h3>
<div class="flex space-x-4 mb-4">
<a href="#" class="text-gray-400 hover:text-white text-2xl"><i class="fab fa-facebook"></i></a>
<a href="#" class="text-gray-400 hover:text-white text-2xl"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white text-2xl"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-white text-2xl"><i class="fab fa-youtube"></i></a>
</div>
<p class="text-gray-400 text-sm">Subscribe to our newsletter for updates:</p>
<div class="mt-2 flex">
<input type="email" placeholder="Your email" class="bg-gray-700 text-white px-3 py-2 rounded-l-md focus:outline-none focus:ring-2 focus:ring-red-500 w-full">
<button class="bg-red-600 hover:bg-red-700 px-4 py-2 rounded-r-md">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-500 text-sm">
<p>© 2025 iHeadline RobotRanks. All rights reserved. | <a href="#" class="hover:text-white">Privacy Policy</a> | <a href="#" class="hover:text-white">Terms of Service</a></p>
</div>
</div>
</footer>
<!-- Live Update Script -->
<script>
// Refresh button functionality
document.getElementById('refresh-btn').addEventListener('click', function() {
this.classList.add('animate-spin');
setTimeout(() => {
this.classList.remove('animate-spin');
// Update the time
const now = new Date();
document.getElementById('update-time').textContent = now.toLocaleTimeString();
// Simulate a small ranking change
const rankElements = document.querySelectorAll('.bot-card:nth-child(3) .bg-amber-600');
rankElements.forEach(el => {
el.classList.remove('bg-amber-600');
el.classList.add('bg-gray-300');
el.innerHTML = '<i class="fas fa-medal mr-1"></i> #4';
});
// Show notification
const newsTicker = document.querySelector('.news-ticker');
const newItem = document.createElement('span');
newItem.className = 'mr-8';
newItem.innerHTML = '🔄 Rankings updated - Hydra drops to #4 after controversial judges decision';
newsTicker.appendChild(newItem);
}, 1000);
});
// Simulate live updates every 30 seconds
setInterval(() => {
const newsItems = [
'⚡ New fight announced: SawBlaze vs End Game for July 6th main event',
'🔥 Team Whyachi reveals new 360° spinning weapon for Fusion 3.0',
'💥 BattleBots partners with NASA for special "Space Robots" exhibition match',
'🔧 Rusty returns with all-new titanium armor and upgraded weapon system'
];
const randomNews = newsItems[Math.floor(Math.random() * newsItems.length)];
const newsTicker = document.querySelector('.news-ticker');
const newItem = document.createElement('span');
newItem.className = 'mr-8';
newItem.innerHTML = randomNews;
newsTicker.appendChild(newItem);
// Update time
const now = new Date();
document.getElementById('update-time').textContent = now.toLocaleTimeString();
}, 30000);
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=privateuserh/robotranks-vbeta1-01" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |