File size: 54,230 Bytes
0504ebb | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Royale Casino - Social Sweepstakes Casino</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">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
neonBlue: '#00f2ff',
neonMagenta: '#ff00ff',
neonGreen: '#00ff7f',
darkBg: '#0a0a0f',
},
animation: {
'marquee': 'marquee 30s linear infinite',
'marquee-reverse': 'marquee-reverse 30s linear infinite',
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'float': 'float 6s ease-in-out infinite',
'float2': 'float 8s ease-in-out infinite',
'float3': 'float 10s ease-in-out infinite',
},
keyframes: {
marquee: {
'0%': { transform: 'translateX(0%)' },
'100%': { transform: 'translateX(-100%)' },
},
'marquee-reverse': {
'0%': { transform: 'translateX(-100%)' },
'100%': { transform: 'translateX(0%)' },
},
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-20px)' },
},
}
}
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
background-color: #0a0a0f;
color: #fff;
overflow-x: hidden;
position: relative;
}
h1, h2, h3, h4, h5 {
font-family: 'Orbitron', sans-serif;
}
.glass-card {
background: rgba(20, 20, 30, 0.5);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(0, 242, 255, 0.2);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.neon-text {
text-shadow: 0 0 10px rgba(0, 242, 255, 0.7), 0 0 20px rgba(0, 242, 255, 0.5);
}
.magenta-text {
text-shadow: 0 0 10px rgba(255, 0, 255, 0.7), 0 0 20px rgba(255, 0, 255, 0.5);
}
.jackpot-counter {
font-family: 'Orbitron', sans-serif;
text-shadow: 0 0 10px rgba(0, 242, 255, 0.8), 0 0 20px rgba(0, 242, 255, 0.6);
letter-spacing: 2px;
}
.trust-bar {
background: linear-gradient(90deg, rgba(0, 242, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
}
.step-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 242, 255, 0.3);
}
.flip-card {
perspective: 1000px;
height: 200px;
}
.flip-card-inner {
position: relative;
width: 100%;
height: 100%;
text-align: center;
transition: transform 0.6s;
transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner {
transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
position: absolute;
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
border-radius: 12px;
overflow: hidden;
}
.flip-card-back {
transform: rotateY(180deg);
display: flex;
flex-direction: column;
justify-content: center;
padding: 20px;
}
.rtp-meter {
height: 8px;
background: rgba(255, 255, 255, 0.1);
border-radius: 4px;
overflow: hidden;
}
.rtp-fill {
height: 100%;
background: linear-gradient(90deg, #00f2ff, #ff00ff);
}
.volatility-meter {
display: flex;
gap: 4px;
margin-top: 8px;
}
.vol-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.2);
}
.vol-dot.active {
background: linear-gradient(90deg, #00f2ff, #ff00ff);
}
.promo-banner {
background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), rgba(255, 0, 255, 0.1));
position: relative;
overflow: hidden;
}
.clover {
position: absolute;
font-size: 2rem;
opacity: 0.7;
z-index: 0;
}
.testimonial-card {
transition: all 0.3s ease;
}
.testimonial-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(255, 0, 255, 0.3);
}
.faq-item .faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
max-height: 200px;
}
.player-counter {
font-family: 'Orbitron', sans-serif;
text-shadow: 0 0 10px rgba(255, 0, 255, 0.8), 0 0 20px rgba(255, 0, 255, 0.6);
}
.social-icon {
transition: all 0.3s ease;
}
.social-icon:hover {
transform: translateY(-5px);
filter: drop-shadow(0 0 8px rgba(0, 242, 255, 0.8));
}
.glow {
box-shadow: 0 0 15px rgba(0, 242, 255, 0.5), 0 0 30px rgba(255, 0, 255, 0.3);
}
.btn-neon {
background: linear-gradient(90deg, #00f2ff, #ff00ff);
transition: all 0.3s ease;
}
.btn-neon:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 242, 255, 0.4), 0 5px 15px rgba(255, 0, 255, 0.4);
}
.countdown-box {
background: rgba(0, 0, 0, 0.3);
border: 1px solid rgba(0, 242, 255, 0.3);
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 242, 255, 0.2);
}
.marquee-container {
overflow: hidden;
position: relative;
}
.marquee {
display: flex;
width: 200%;
animation: marquee 20s linear infinite;
}
.marquee-reverse {
display: flex;
width: 200%;
animation: marquee-reverse 20s linear infinite;
}
@keyframes marquee {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
@keyframes marquee-reverse {
0% { transform: translateX(-50%); }
100% { transform: translateX(0); }
}
.marquee-item {
flex: 0 0 auto;
width: calc(100% / 12);
}
@media (max-width: 768px) {
.marquee-item {
width: calc(100% / 6);
}
.steps-container {
flex-direction: column;
}
.game-grid {
grid-template-columns: repeat(2, 1fr);
}
.features-grid {
grid-template-columns: repeat(1, 1fr);
}
.testimonials-grid {
grid-template-columns: repeat(1, 1fr);
}
}
</style>
</head>
<body class="bg-darkBg">
<!-- Background Glowing Orbs -->
<div class="fixed -top-20 -right-20 w-64 h-64 rounded-full bg-neonBlue opacity-20 blur-3xl animate-pulse-slow z-0"></div>
<div class="fixed -bottom-20 -left-20 w-64 h-64 rounded-full bg-neonMagenta opacity-20 blur-3xl animate-pulse-slow z-0"></div>
<!-- Floating Clovers -->
<div class="clover animate-float" style="top: 20px; left: 5%;">🍀</div>
<div class="clover animate-float2" style="top: 60px; right: 8%;">🍀</div>
<div class="clover animate-float3" style="bottom: 40px; left: 12%;">🍀</div>
<div class="clover animate-float" style="bottom: 20px; right: 15%;">🍀</div>
<!-- Sticky Header -->
<header class="fixed top-0 left-0 w-full z-50 py-3 px-4 bg-black/80 backdrop-blur-md border-b border-neonBlue/30">
<div class="max-w-7xl mx-auto flex items-center justify-between">
<!-- Logo Placeholder -->
<div class="flex items-center">
<div class="bg-gray-800 border-2 border-dashed rounded-xl w-16 h-16 mr-3"></div>
<h1 class="text-2xl font-bold neon-text">ROYALE CASINO</h1>
</div>
<!-- Jackpot Counter -->
<div class="jackpot-counter text-xl font-bold text-neonBlue">
<span id="jackpot">8,752,409</span>
</div>
<!-- Auth Buttons -->
<div class="flex space-x-3">
<a href="https://nioplay.net" class="px-4 py-2 rounded-lg bg-neonBlue/20 text-neonBlue border border-neonBlue font-bold hover:bg-neonBlue/30 transition">LOGIN</a>
<a href="https://nioplay.net" class="px-4 py-2 rounded-lg bg-gradient-to-r from-neonBlue to-neonMagenta text-white font-bold glow hover:opacity-90 transition">SIGN UP</a>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="pt-32 pb-20 px-4 relative z-10">
<div class="max-w-7xl mx-auto text-center">
<h1 class="text-4xl md:text-6xl font-bold mb-6 neon-text">WELCOME TO <span class="magenta-text">ROYALE CASINO</span></h1>
<p class="text-xl text-gray-300 max-w-3xl mx-auto mb-10">Experience the ultimate social casino sweepstakes with thousands of free games and chances to win real prizes!</p>
<div class="flex justify-center space-x-4 mb-16">
<a href="https://nioplay.net" class="btn-neon px-8 py-4 rounded-xl text-white font-bold text-lg">PLAY NOW</a>
<a href="https://nioplay.net" class="px-8 py-4 rounded-xl bg-black/50 border-2 border-neonBlue text-neonBlue font-bold text-lg hover:bg-neonBlue/10 transition">LEARN MORE</a>
</div>
<!-- Trust Bar -->
<div class="trust-bar glass-card rounded-2xl p-6 mb-16">
<h3 class="text-lg font-bold text-neonBlue mb-4">TRUSTED BY THE BEST PROVIDERS</h3>
<div class="marquee-container overflow-hidden">
<div class="marquee flex">
<!-- 12 Game Providers -->
<div class="marquee-item flex justify-center items-center px-4">
<div class="bg-gray-700 w-16 h-16 rounded-lg"></div>
</div>
<div class="marquee-item flex justify-center items-center px-4">
<div class="bg-gray-700 w-16 h-16 rounded-lg"></div>
</div>
<div class="marquee-item flex justify-center items-center px-4">
<div class="bg-gray-700 w-16 h-16 rounded-lg"></div>
</div>
<div class="marquee-item flex justify-center items-center px-4">
<div class="bg-gray-700 w-16 h-16 rounded-lg"></div>
</div>
<div class="marquee-item flex justify-center items-center px-4">
<div class="bg-gray-700 w-16 h-16 rounded-lg"></div>
</div>
<div class="marquee-item flex justify-center items-center px-4">
<div class="bg-gray-700 w-16 h-16 rounded-lg"></div>
</div>
<div class="marquee-item flex justify-center items-center px-4">
<div class="bg-gray-700 w-16 h-16 rounded-lg"></div>
</div>
<div class="marquee-item flex justify-center items-center px-4">
<div class="bg-gray-700 w-16 h-16 rounded-lg"></div>
</div>
<div class="marquee-item flex justify-center items-center px-4">
<div class="bg-gray-700 w-16 h-16 rounded-lg"></div>
</div>
<div class="marquee-item flex justify-center items-center px-4">
<div class="bg-gray-700 w-16 h-16 rounded-lg"></div>
</div>
<div class="marquee-item flex justify-center items-center px-4">
<div class="bg-gray-700 w-16 h-16 rounded-lg"></div>
</div>
<div class="marquee-item flex justify-center items-center px-4">
<div class="bg-gray-700 w-16 h-16 rounded-lg"></div>
</div>
</div>
</div>
</div>
<!-- Hero Image Placeholder -->
<div class="glass-card rounded-2xl overflow-hidden h-64 md:h-96 w-full max-w-5xl mx-auto mb-16 flex items-center justify-center">
<div class="bg-gray-800 border-2 border-dashed rounded-xl w-full h-full"></div>
</div>
</div>
</section>
<!-- 3 Easy Steps -->
<section class="py-16 px-4 relative z-10">
<div class="max-w-7xl mx-auto">
<h2 class="text-3xl font-bold text-center mb-16">
GET STARTED IN <span class="text-transparent bg-clip-text bg-gradient-to-r from-neonBlue to-neonMagenta">3 EASY STEPS</span>
</h2>
<div class="steps-container flex flex-col md:flex-row justify-center gap-8">
<!-- Step 1 -->
<div class="step-card glass-card rounded-2xl p-8 flex-1 transition-all duration-300">
<div class="text-5xl text-neonBlue font-bold mb-4">1</div>
<h3 class="text-xl font-bold mb-3">Create Account</h3>
<p class="text-gray-300 mb-6">Sign up with your email in seconds. No credit card required!</p>
<div class="flex justify-center mb-4">
<div class="bg-gray-700 w-16 h-16 rounded-full flex items-center justify-center">
<i class="fas fa-user-plus text-2xl text-neonBlue"></i>
</div>
</div>
</div>
<!-- Step 2 -->
<div class="step-card glass-card rounded-2xl p-8 flex-1 transition-all duration-300">
<div class="text-5xl text-neonMagenta font-bold mb-4">2</div>
<h3 class="text-xl font-bold mb-3">Claim Bonus</h3>
<p class="text-gray-300 mb-6">Get your welcome bonus of 50,000 free coins instantly!</p>
<div class="flex justify-center mb-4">
<div class="bg-gray-700 w-16 h-16 rounded-full flex items-center justify-center">
<i class="fas fa-gift text-2xl text-neonMagenta"></i>
</div>
</div>
</div>
<!-- Step 3 -->
<div class="step-card glass-card rounded-2xl p-8 flex-1 transition-all duration-300">
<div class="text-5xl text-neonGreen font-bold mb-4">3</div>
<h3 class="text-xl font-bold mb-3">Start Playing</h3>
<p class="text-gray-300 mb-6">Choose from hundreds of games and start having fun!</p>
<div class="flex justify-center mb-4">
<div class="bg-gray-700 w-16 h-16 rounded-full flex items-center justify-center">
<i class="fas fa-play text-2xl text-neonGreen"></i>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Why Choose Us -->
<section class="py-16 px-4 relative z-10">
<div class="max-w-7xl mx-auto">
<h2 class="text-3xl font-bold text-center mb-16">
WHY CHOOSE <span class="text-transparent bg-clip-text bg-gradient-to-r from-neonBlue to-neonMagenta">ROYALE CASINO</span>
</h2>
<div class="features-grid grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Feature 1 -->
<div class="feature-card glass-card rounded-2xl p-6 transition-all duration-300">
<div class="w-16 h-16 rounded-full bg-gradient-to-br from-neonBlue to-neonMagenta flex items-center justify-center mb-6">
<i class="fas fa-coins text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Daily Free Coins</h3>
<p class="text-gray-300">Claim free coins every day just for logging in!</p>
</div>
<!-- Feature 2 -->
<div class="feature-card glass-card rounded-2xl p-6 transition-all duration-300">
<div class="w-16 h-16 rounded-full bg-gradient-to-br from-neonBlue to-neonMagenta flex items-center justify-center mb-6">
<i class="fas fa-trophy text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Real Prizes</h3>
<p class="text-gray-300">Win real cash prizes through our sweepstakes!</p>
</div>
<!-- Feature 3 -->
<div class="feature-card glass-card rounded-2xl p-6 transition-all duration-300">
<div class="w-16 h-16 rounded-full bg-gradient-to-br from-neonBlue to-neonMagenta flex items-center justify-center mb-6">
<i class="fas fa-shield-alt text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Safe & Secure</h3>
<p class="text-gray-300">Your data is protected with bank-level security.</p>
</div>
<!-- Feature 4 -->
<div class="feature-card glass-card rounded-2xl p-6 transition-all duration-300">
<div class="w-16 h-16 rounded-full bg-gradient-to-br from-neonBlue to-neonMagenta flex items-center justify-center mb-6">
<i class="fas fa-headset text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">24/7 Support</h3>
<p class="text-gray-300">Our support team is always ready to help you.</p>
</div>
</div>
<!-- Feature Image Placeholder -->
<div class="glass-card rounded-2xl overflow-hidden h-64 w-full max-w-4xl mx-auto mt-16 flex items-center justify-center">
<div class="bg-gray-800 border-2 border-dashed rounded-xl w-full h-full"></div>
</div>
</div>
</section>
<!-- Games Grid -->
<section class="py-16 px-4 relative z-10">
<div class="max-w-7xl mx-auto">
<div class="flex justify-between items-center mb-8">
<h2 class="text-3xl font-bold">
POPULAR <span class="text-transparent bg-clip-text bg-gradient-to-r from-neonBlue to-neonMagenta">GAMES</span>
</h2>
<a href="https://nioplay.net" class="btn-neon px-6 py-3 rounded-lg text-white font-bold">VIEW ALL GAMES</a>
</div>
<div class="game-grid grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-6 mb-12">
<!-- Game 1 -->
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front glass-card rounded-xl overflow-hidden">
<div class="h-full flex flex-col">
<div class="h-40 bg-gray-800 flex items-center justify-center">
<div class="bg-gray-700 w-24 h-24 rounded-lg"></div>
</div>
<div class="p-4">
<h3 class="font-bold text-lg">Neon Riches</h3>
<p class="text-gray-400 text-sm">Slot Machine</p>
</div>
</div>
</div>
<div class="flip-card-back glass-card rounded-xl">
<h3 class="font-bold text-lg mb-2">Neon Riches</h3>
<div class="mb-3">
<p class="text-sm text-gray-300 mb-1">RTP: 96.5%</p>
<div class="rtp-meter">
<div class="rtp-fill" style="width: 96.5%"></div>
</div>
</div>
<div>
<p class="text-sm text-gray-300 mb-1">Volatility: Medium</p>
<div class="volatility-meter">
<div class="vol-dot"></div>
<div class="vol-dot active"></div>
<div class="vol-dot active"></div>
<div class="vol-dot"></div>
<div class="vol-dot"></div>
</div>
</div>
</div>
</div>
</div>
<!-- Game 2 -->
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front glass-card rounded-xl overflow-hidden">
<div class="h-full flex flex-col">
<div class="h-40 bg-gray-800 flex items-center justify-center">
<div class="bg-gray-700 w-24 h-24 rounded-lg"></div>
</div>
<div class="p-4">
<h3 class="font-bold text-lg">Magma Jackpot</h3>
<p class="text-gray-400 text-sm">Progressive</p>
</div>
</div>
</div>
<div class="flip-card-back glass-card rounded-xl">
<h3 class="font-bold text-lg mb-2">Magma Jackpot</h3>
<div class="mb-3">
<p class="text-sm text-gray-300 mb-1">RTP: 95.2%</p>
<div class="rtp-meter">
<div class="rtp-fill" style="width: 95.2%"></div>
</div>
</div>
<div>
<p class="text-sm text-gray-300 mb-1">Volatility: High</p>
<div class="volatility-meter">
<div class="vol-dot active"></div>
<div class="vol-dot active"></div>
<div class="vol-dot active"></div>
<div class="vol-dot active"></div>
<div class="vol-dot"></div>
</div>
</div>
</div>
</div>
</div>
<!-- Game 3 -->
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front glass-card rounded-xl overflow-hidden">
<div class="h-full flex flex-col">
<div class="h-40 bg-gray-800 flex items-center justify-center">
<div class="bg-gray-700 w-24 h-24 rounded-lg"></div>
</div>
<div class="p-4">
<h3 class="font-bold text-lg">Royal Poker</h3>
<p class="text-gray-400 text-sm">Card Game</p>
</div>
</div>
</div>
<div class="flip-card-back glass-card rounded-xl">
<h3 class="font-bold text-lg mb-2">Royal Poker</h3>
<div class="mb-3">
<p class="text-sm text-gray-300 mb-1">RTP: 98.1%</p>
<div class="rtp-meter">
<div class="rtp-fill" style="width: 98.1%"></div>
</div>
</div>
<div>
<p class="text-sm text-gray-300 mb-1">Volatility: Low</p>
<div class="volatility-meter">
<div class="vol-dot active"></div>
<div class="vol-dot"></div>
<div class="vol-dot"></div>
<div class="vol-dot"></div>
<div class="vol-dot"></div>
</div>
</div>
</div>
</div>
</div>
<!-- Game 4 -->
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front glass-card rounded-xl overflow-hidden">
<div class="h-full flex flex-col">
<div class="h-40 bg-gray-800 flex items-center justify-center">
<div class="bg-gray-700 w-24 h-24 rounded-lg"></div>
</div>
<div class="p-4">
<h3 class="font-bold text-lg">Diamond Wilds</h3>
<p class="text-gray-400 text-sm">Slot Machine</p>
</div>
</div>
</div>
<div class="flip-card-back glass-card rounded-xl">
<h3 class="font-bold text-lg mb-2">Diamond Wilds</h3>
<div class="mb-3">
<p class="text-sm text-gray-300 mb-1">RTP: 96.8%</p>
<div class="rtp-meter">
<div class="rtp-fill" style="width: 96.8%"></div>
</div>
</div>
<div>
<p class="text-sm text-gray-300 mb-1">Volatility: Medium</p>
<div class="volatility-meter">
<div class="vol-dot"></div>
<div class="vol-dot active"></div>
<div class="vol-dot active"></div>
<div class="vol-dot"></div>
<div class="vol-dot"></div>
</div>
</div>
</div>
</div>
</div>
<!-- Game 5 -->
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front glass-card rounded-xl overflow-hidden">
<div class="h-full flex flex-col">
<div class="h-40 bg-gray-800 flex items-center justify-center">
<div class="bg-gray-700 w-24 h-24 rounded-lg"></div>
</div>
<div class="p-4">
<h3 class="font-bold text-lg">Fortune Wheel</h3>
<p class="text-gray-400 text-sm">Wheel Game</p>
</div>
</div>
</div>
<div class="flip-card-back glass-card rounded-xl">
<h3 class="font-bold text-lg mb-2">Fortune Wheel</h3>
<div class="mb-3">
<p class="text-sm text-gray-300 mb-1">RTP: 94.7%</p>
<div class="rtp-meter">
<div class="rtp-fill" style="width: 94.7%"></div>
</div>
</div>
<div>
<p class="text-sm text-gray-300 mb-1">Volatility: High</p>
<div class="volatility-meter">
<div class="vol-dot active"></div>
<div class="vol-dot active"></div>
<div class="vol-dot active"></div>
<div class="vol-dot active"></div>
<div class="vol-dot"></div>
</div>
</div>
</div>
</div>
</div>
<!-- Game 6 -->
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front glass-card rounded-xl overflow-hidden">
<div class="h-full flex flex-col">
<div class="h-40 bg-gray-800 flex items-center justify-center">
<div class="bg-gray-700 w-24 h-24 rounded-lg"></div>
</div>
<div class="p-4">
<h3 class="font-bold text-lg">Blackjack Royale</h3>
<p class="text-gray-400 text-sm">Card Game</p>
</div>
</div>
</div>
<div class="flip-card-back glass-card rounded-xl">
<h3 class="font-bold text-lg mb-2">Blackjack Royale</h3>
<div class="mb-3">
<p class="text-sm text-gray-300 mb-1">RTP: 99.2%</p>
<div class="rtp-meter">
<div class="rtp-fill" style="width: 99.2%"></div>
</div>
</div>
<div>
<p class="text-sm text-gray-300 mb-1">Volatility: Low</p>
<div class="volatility-meter">
<div class="vol-dot active"></div>
<div class="vol-dot"></div>
<div class="vol-dot"></div>
<div class="vol-dot"></div>
<div class="vol-dot"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Game Image Placeholder -->
<div class="glass-card rounded-2xl overflow-hidden h-64 w-full max-w-4xl mx-auto flex items-center justify-center">
<div class="bg-gray-800 border-2 border-dashed rounded-xl w-full h-full"></div>
</div>
</div>
</section>
<!-- Promo Banner -->
<section class="py-16 px-4 relative z-10">
<div class="max-w-7xl mx-auto">
<div class="promo-banner glass-card rounded-2xl p-8 md:p-12">
<div class="flex flex-col md:flex-row items-center">
<div class="flex-1 mb-8 md:mb-0 md:pr-8">
<h2 class="text-3xl font-bold mb-4">GOLDEN CLOVERS BONUS</h2>
<p class="text-gray-300 mb-6">Enter promo code <span class="font-bold text-neonGreen">LUCKY777</span> to claim your 100,000 FREE coins!</p>
<div class="flex mb-6">
<input type="text" placeholder="Enter promo code" class="flex-1 bg-black/50 border border-neonBlue rounded-l-xl py-3 px-4 text-white focus:outline-none focus:ring-2 focus:ring-neonBlue">
<button class="btn-neon px-6 py-3 rounded-r-xl font-bold">CLAIM</button>
</div>
<div class="text-center">
<p class="text-gray-400 mb-2">Offer expires in:</p>
<div class="flex justify-center space-x-2">
<div class="countdown-box rounded-lg py-2 px-3">
<div class="text-2xl font-bold" id="hours">23</div>
<div class="text-xs">HOURS</div>
</div>
<div class="countdown-box rounded-lg py-2 px-3">
<div class="text-2xl font-bold" id="minutes">11</div>
<div class="text-xs">MINUTES</div>
</div>
<div class="countdown-box rounded-lg py-2 px-3">
<div class="text-2xl font-bold" id="seconds">09</div>
<div class="text-xs">SECONDS</div>
</div>
</div>
</div>
</div>
<div class="flex-1">
<div class="bg-gray-800 border-2 border-dashed rounded-xl w-full h-64"></div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-16 px-4 relative z-10">
<div class="max-w-7xl mx-auto">
<h2 class="text-3xl font-bold text-center mb-16">
PLAYER <span class="text-transparent bg-clip-text bg-gradient-to-r from-neonBlue to-neonMagenta">TESTIMONIALS</span>
</h2>
<div class="testimonials-grid grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="testimonial-card glass-card rounded-2xl p-6">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-gray-700 mr-4"></div>
<div>
<h3 class="font-bold">Alex J.</h3>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
<p class="text-gray-300 mb-4">"I won $500 in my first week! The games are so fun and the bonuses are amazing."</p>
<div class="text-xs text-gray-500">Posted on Trustpilot</div>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-card glass-card rounded-2xl p-6">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-gray-700 mr-4"></div>
<div>
<h3 class="font-bold">Sarah M.</h3>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
<p class="text-gray-300 mb-4">"Best social casino out there! The daily free coins keep me playing without spending money."</p>
<div class="text-xs text-gray-500">Posted on Trustpilot</div>
</div>
<!-- Testimonial 3 -->
<div class="testimonial-card glass-card rounded-2xl p-6">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-gray-700 mr-4"></div>
<div>
<h3 class="font-bold">Mike T.</h3>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
</div>
<p class="text-gray-300 mb-4">"The game selection is incredible. I love the sweepstakes events where you can win real cash!"</p>
<div class="text-xs text-gray-500">Posted on Trustpilot</div>
</div>
</div>
<!-- Testimonial Image Placeholder -->
<div class="glass-card rounded-2xl overflow-hidden h-64 w-full max-w-4xl mx-auto mt-16 flex items-center justify-center">
<div class="bg-gray-800 border-2 border-dashed rounded-xl w-full h-full"></div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section class="py-16 px-4">
<div class="max-w-5xl mx-auto">
<h2 class="text-3xl font-bold text-center mb-16">
Frequently <span class="text-transparent bg-clip-text bg-gradient-to-r from-neonBlue to-neonMagenta">Asked Questions</span>
</h2>
<div class="glass-card rounded-2xl overflow-hidden">
<div class="faq-item">
<div class="faq-question p-6 flex justify-between items-center cursor-pointer border-b border-neonBlue/20">
<h3 class="text-lg font-bold">How do I get started at Royale Casino?</h3>
<i class="fa-solid fa-plus text-neonBlue"></i>
</div>
<div class="faq-answer">
<div class="p-6 pt-0">
<p class="text-gray-300">
Getting started is simple! Just click the 'Sign Up' button at the top right, fill in your details, and verify your email. You'll get 10,000 free coins instantly to start playing.
</p>
</div>
</div>
</div>
<div class="faq-item">
<div class="faq-question p-6 flex justify-between items-center cursor-pointer border-b border-neonBlue/20">
<h3 class="text-lg font-bold">Is Royale Casino free to play?</h3>
<i class="fa-solid fa-plus text-neonBlue"></i>
</div>
<div class="faq-answer">
<div class="p-6 pt-0">
<p class="text-gray-300">
Yes! Royale Casino is a sweepstakes social casino where you play for fun with virtual coins. We offer multiple ways to get free coins daily without spending any money.
</p>
</div>
</div>
</div>
<div class="faq-item">
<div class="faq-question p-6 flex justify-between items-center cursor-pointer border-b border-neonBlue/20">
<h3 class="text-lg font-bold">Can I win real prizes?</h3>
<i class="fa-solid fa-plus text-neonBlue"></i>
</div>
<div class="faq-answer">
<div class="p-6 pt-0">
<p class="text-gray-300">
Absolutely! While we focus on social gaming, we frequently run sweepstakes events where players can win real cash prizes, gift cards, and other exciting rewards.
</p>
</div>
</div>
</div>
<div class="faq-item">
<div class="faq-question p-6 flex justify-between items-center cursor-pointer border-b border-neonBlue/20">
<h3 class="text-lg font-bold">How do I claim my daily free coins?</h3>
<i class="fa-solid fa-plus text-neonBlue"></i>
</div>
<div class="faq-answer">
<div class="p-6 pt-0">
<p class="text-gray-300">
Simply log in to your account every 24 hours and visit the 'Promotions' page. You'll see your daily free coins waiting to be claimed, with bigger bonuses for consecutive days!
</p>
</div>
</div>
</div>
<div class="faq-item">
<div class="faq-question p-6 flex justify-between items-center cursor-pointer">
<h3 class="text-lg font-bold">What makes Royale Casino different from others?</h3>
<i class="fa-solid fa-plus text-neonBlue"></i>
</div>
<div class="faq-answer">
<div class="p-6 pt-0">
<p class="text-gray-300">
We pride ourselves on premium graphics, smooth gameplay, and generous rewards. Our unique sweepstakes model gives everyone a chance at real prizes without risking real money.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Final CTA -->
<section class="py-20 px-4 relative z-10">
<div class="max-w-4xl mx-auto text-center">
<h2 class="text-4xl font-bold mb-6">JOIN THE FUN TODAY!</h2>
<p class="text-xl text-gray-300 mb-10">Be part of our growing community of players</p>
<div class="player-counter text-5xl font-bold mb-10">
<span id="playerCount">12,589</span> PLAYERS AND COUNTING!
</div>
<a href="https://nioplay.net" class="btn-neon px-10 py-5 rounded-xl text-white font-bold text-xl inline-block">GET STARTED NOW</a>
<!-- CTA Image Placeholder -->
<div class="glass-card rounded-2xl overflow-hidden h-64 w-full max-w-3xl mx-auto mt-16 flex items-center justify-center">
<div class="bg-gray-800 border-2 border-dashed rounded-xl w-full h-full"></div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="pt-16 pb-8 px-4 relative z-10">
<div class="max-w-7xl mx-auto">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-12">
<!-- Logo and Description -->
<div>
<div class="flex items-center mb-6">
<div class="bg-gray-800 border-2 border-dashed rounded-xl w-16 h-16 mr-3"></div>
<h2 class="text-2xl font-bold neon-text">ROYALE CASINO</h2>
</div>
<p class="text-gray-400 mb-6">Experience the thrill of social casino gaming with Royale Casino. Play for fun, win for real!</p>
<div class="flex space-x-4">
<a href="https://nioplay.net" class="social-icon text-2xl text-neonBlue hover:text-neonMagenta"><i class="fab fa-facebook"></i></a>
<a href="https://nioplay.net" class="social-icon text-2xl text-neonBlue hover:text-neonMagenta"><i class="fab fa-instagram"></i></a>
<a href="https://nioplay.net" class="social-icon text-2xl text-neonBlue hover:text-neonMagenta"><i class="fab fa-twitter"></i></a>
<a href="https://nioplay.net" class="social-icon text-2xl text-neonBlue hover:text-neonMagenta"><i class="fab fa-discord"></i></a>
</div>
</div>
<!-- Quick Links -->
<div>
<h3 class="text-lg font-bold mb-6 text-neonBlue">Quick Links</h3>
<ul class="space-y-3">
<li><a href="https://nioplay.net" class="text-gray-400 hover:text-neonBlue transition">Home</a></li>
<li><a href="https://nioplay.net" class="text-gray-400 hover:text-neonBlue transition">Games</a></li>
<li><a href="https://nioplay.net" class="text-gray-400 hover:text-neonBlue transition">Promotions</a></li>
<li><a href="https://nioplay.net" class="text-gray-400 hover:text-neonBlue transition">Sweepstakes</a></li>
<li><a href="https://nioplay.net" class="text-gray-400 hover:text-neonBlue transition">FAQ</a></li>
</ul>
</div>
<!-- Legal -->
<div>
<h3 class="text-lg font-bold mb-6 text-neonBlue">Legal</h3>
<ul class="space-y-3">
<li><a href="https://nioplay.net" class="text-gray-400 hover:text-neonBlue transition">Terms of Service</a></li>
<li><a href="https://nioplay.net" class="text-gray-400 hover:text-neonBlue transition">Privacy Policy</a></li>
<li><a href="https://nioplay.net" class="text-gray-400 hover:text-neonBlue transition">Responsible Gaming</a></li>
<li><a href="https://nioplay.net" class="text-gray-400 hover:text-neonBlue transition">Cookie Policy</a></li>
</ul>
</div>
<!-- Download App -->
<div>
<h3 class="text-lg font-bold mb-6 text-neonBlue">Download Our App</h3>
<p class="text-gray-400 mb-6">Take Royale Casino with you wherever you go!</p>
<div class="flex flex-col space-y-4">
<a href="https://nioplay.net" class="bg-black/30 border border-gray-700 rounded-xl py-3 px-6 flex items-center hover:bg-neonBlue/10 transition">
<i class="fab fa-apple text-3xl mr-3"></i>
<div>
<div class="text-xs">Download on the</div>
<div class="font-bold">App Store</div>
</div>
</a>
<a href="https://nioplay.net" class="bg-black/30 border border-gray-700 rounded-xl py-3 px-6 flex items-center hover:bg-neonBlue/10 transition">
<i class="fab fa-google-play text-2xl mr-3"></i>
<div>
<div class="text-xs">Get it on</div>
<div class="font-bold">Google Play</div>
</div>
</a>
</div>
</div>
</div>
<!-- Disclaimer -->
<div class="border-t border-gray-800 pt-8 text-center">
<p class="text-gray-500 text-sm mb-2">DISCLAIMER: Royale Casino is a social sweepstakes casino. This is not a gambling site. Players participate for entertainment purposes only. No real money gambling takes place on this platform.</p>
<p class="text-gray-500 text-sm">© 2023 Royale Casino. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Jackpot Counter
let jackpotValue = 8752409;
const jackpotElement = document.getElementById('jackpot');
setInterval(() => {
jackpotValue += Math.floor(Math.random() * 100);
jackpotElement.textContent = jackpotValue.toLocaleString();
}, 2000);
// Player Counter
let playerCount = 12589;
const playerElement = document.getElementById('playerCount');
setInterval(() => {
playerCount += Math.floor(Math.random() * 3);
playerElement.textContent = playerCount.toLocaleString();
}, 3000);
// Countdown Timer
let hours = 23;
let minutes = 11;
let seconds = 9;
const hoursElement = document.getElementById('hours');
const minutesElement = document.getElementById('minutes');
const secondsElement = document.getElementById('seconds');
const countdown = setInterval(() => {
seconds--;
if (seconds < 0) {
seconds = 59;
minutes--;
if (minutes < 0) {
minutes = 59;
hours--;
if (hours < 0) {
clearInterval(countdown);
hours = 0;
minutes = 0;
seconds = 0;
}
}
}
hoursElement.textContent = hours.toString().padStart(2, '0');
minutesElement.textContent = minutes.toString().padStart(2, '0');
secondsElement.textContent = seconds.toString().padStart(2, '0');
}, 1000);
// FAQ Accordion
const faqItems = document.querySelectorAll('.faq-item');
faqItems.forEach(item => {
const question = item.querySelector('.faq-question');
const icon = question.querySelector('i');
question.addEventListener('click', () => {
const isActive = item.classList.contains('active');
// Close all items first
faqItems.forEach(faq => {
faq.classList.remove('active');
faq.querySelector('i').className = 'fa-solid fa-plus text-neonBlue';
});
// Toggle current item if wasn't active
if(!isActive) {
item.classList.add('active');
icon.className = 'fa-solid fa-minus text-neonBlue';
}
});
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
</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=ProjectGenesis/royale-casino-landing" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |