Tiger Play Store
Contains ads
1+
Downloads
1+
Users
App Description
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tiger Play Store</title>
<!-- Firebase SDK -->
<script src="https://www.gstatic.com/firebasejs/9.6.1/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.6.1/firebase-firestore-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.6.1/firebase-storage-compat.js"></script>
<style>
:root {
--primary: #6a11cb;
--secondary: #2575fc;
--accent: #ff2a6d;
--accent-glow: rgba(255, 42, 109, 0.5);
--dark: #0c0e27;
--darker: #05071a;
--light: #ffffff;
--gray: #8a8d9c;
--card-bg: rgba(255, 255, 255, 0.05);
--card-border: rgba(255, 255, 255, 0.1);
--neon-shadow: 0 0 10px rgba(106, 17, 203, 0.5), 0 0 20px rgba(37, 117, 252, 0.3);
--neon-glow: 0 0 15px var(--accent-glow);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background: linear-gradient(135deg, var(--darker), var(--dark));
color: var(--light);
min-height: 100vh;
line-height: 1.6;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Header Styles */
header {
background: rgba(12, 14, 39, 0.8);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--card-border);
position: sticky;
top: 0;
z-index: 100;
}
.header-content {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 0;
}
.logo {
display: flex;
align-items: center;
gap: 10px;
}
.logo-icon {
width: 40px;
height: 40px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: var(--neon-shadow);
}
.logo-text {
font-size: 24px;
font-weight: 700;
background: linear-gradient(to right, var(--primary), var(--secondary));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.nav-links {
display: flex;
gap: 25px;
}
.nav-link {
color: var(--light);
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
position: relative;
}
.nav-link:hover {
color: var(--accent);
}
.nav-link.active {
color: var(--accent);
}
.nav-link.active::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 100%;
height: 2px;
background: var(--accent);
box-shadow: var(--neon-glow);
}
/* Hero Section */
.hero {
padding: 80px 0;
text-align: center;
background: radial-gradient(circle at top, rgba(106, 17, 203, 0.2), transparent 70%);
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 20px;
background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
text-shadow: var(--neon-shadow);
}
.hero p {
font-size: 1.2rem;
max-width: 600px;
margin: 0 auto 30px;
color: var(--gray);
}
.cta-button {
display: inline-block;
padding: 12px 30px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
border: none;
border-radius: 30px;
font-weight: 600;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: var(--neon-shadow);
text-decoration: none;
}
.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(106, 17, 203, 0.4);
}
/* App Grid */
.section-title {
font-size: 2rem;
margin: 40px 0 20px;
text-align: center;
position: relative;
}
.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 3px;
background: linear-gradient(to right, var(--primary), var(--secondary));
border-radius: 3px;
}
.app-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 25px;
margin: 40px 0;
}
.app-card {
background: var(--card-bg);
border-radius: 15px;
overflow: hidden;
transition: all 0.3s ease;
border: 1px solid var(--card-border);
backdrop-filter: blur(10px);
}
.app-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), var(--neon-glow);
border-color: var(--accent);
}
.app-icon {
width: 100%;
height: 180px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
color: white;
}
.app-info {
padding: 20px;
}
.app-name {
font-size: 1.3rem;
margin-bottom: 8px;
font-weight: 600;
}
.app-developer {
color: var(--gray);
font-size: 0.9rem;
margin-bottom: 10px;
}
.app-description {
font-size: 0.95rem;
margin-bottom: 15px;
color: #ccc;
}
.app-actions {
display: flex;
justify-content: space-between;
align-items: center;
}
.download-btn {
padding: 8px 20px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
border: none;
border-radius: 20px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: var(--neon-shadow);
}
.download-btn:hover {
background: linear-gradient(135deg, var(--secondary), var(--primary));
transform: scale(1.05);
}
.app-rating {
display: flex;
align-items: center;
gap: 5px;
color: gold;
}
/* Upload Form */
.upload-section {
background: var(--card-bg);
border-radius: 15px;
padding: 30px;
margin: 40px 0;
border: 1px solid var(--card-border);
}
.form-group {
margin-bottom: 20px;
}
.form-label {
display: block;
margin-bottom: 8px;
font-weight: 500;
}
.form-input {
width: 100%;
padding: 12px 15px;
background: rgba(255, 255, 255, 0.1);
border: 1px solid var(--card-border);
border-radius: 8px;
color: var(--light);
font-size: 1rem;
transition: all 0.3s ease;
}
.form-input:focus {
outline: none;
border-color: var(--accent);
box-shadow: 0 0 0 2px var(--accent-glow);
}
.file-input {
padding: 10px;
}
.submit-btn {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
border: none;
padding: 12px 25px;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: var(--neon-shadow);
}
.submit-btn:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(106, 17, 203, 0.4);
}
/* Footer */
footer {
background: var(--darker);
padding: 40px 0;
margin-top: 60px;
border-top: 1px solid var(--card-border);
}
.footer-content {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 30px;
}
.footer-section {
flex: 1;
min-width: 250px;
}
.footer-heading {
font-size: 1.2rem;
margin-bottom: 20px;
color: var(--accent);
}
.footer-links {
list-style: none;
}
.footer-links li {
margin-bottom: 10px;
}
.footer-links a {
color: var(--gray);
text-decoration: none;
transition: color 0.3s ease;
}
.footer-links a:hover {
color: var(--accent);
}
.copyright {
text-align: center;
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid var(--card-border);
color: var(--gray);
font-size: 0.9rem;
}
/* Modal */
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
z-index: 1000;
align-items: center;
justify-content: center;
}
.modal-content {
background: var(--dark);
border-radius: 15px;
padding: 30px;
max-width: 500px;
width: 90%;
border: 1px solid var(--card-border);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), var(--neon-glow);
}
.modal-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.modal-title {
font-size: 1.5rem;
color: var(--accent);
}
.close-btn {
background: none;
border: none;
color: var(--light);
font-size: 1.5rem;
cursor: pointer;
transition: color 0.3s ease;
}
.close-btn:hover {
color: var(--accent);
}
/* Responsive */
@media (max-width: 768px) {
.header-content {
flex-direction: column;
gap: 15px;
}
.hero h1 {
font-size: 2.5rem;
}
.app-grid {
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
}
/* Loading Animation */
.loader {
display: inline-block;
width: 20px;
height: 20px;
border: 3px solid rgba(255, 255, 255, 0.3);
border-radius: 50%;
border-top-color: var(--accent);
animation: spin 1s ease-in-out infinite;
margin-right: 10px;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
</style>
</head>
<body>
<!-- Header -->
<header>
<div class="container">
<div class="header-content">
<div class="logo">
<div class="logo-icon">
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tiger Play Store</title>
<!-- Firebase SDK -->
<script src="https://www.gstatic.com/firebasejs/9.6.1/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.6.1/firebase-firestore-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.6.1/firebase-storage-compat.js"></script>
<style>
:root {
--primary: #6a11cb;
--secondary: #2575fc;
--accent: #ff2a6d;
--accent-glow: rgba(255, 42, 109, 0.5);
--dark: #0c0e27;
--darker: #05071a;
--light: #ffffff;
--gray: #8a8d9c;
--card-bg: rgba(255, 255, 255, 0.05);
--card-border: rgba(255, 255, 255, 0.1);
--neon-shadow: 0 0 10px rgba(106, 17, 203, 0.5), 0 0 20px rgba(37, 117, 252, 0.3);
--neon-glow: 0 0 15px var(--accent-glow);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background: linear-gradient(135deg, var(--darker), var(--dark));
color: var(--light);
min-height: 100vh;
line-height: 1.6;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Header Styles */
header {
background: rgba(12, 14, 39, 0.8);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--card-border);
position: sticky;
top: 0;
z-index: 100;
}
.header-content {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 0;
}
.logo {
display: flex;
align-items: center;
gap: 10px;
}
.logo-icon {
width: 40px;
height: 40px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: var(--neon-shadow);
}
.logo-text {
font-size: 24px;
font-weight: 700;
background: linear-gradient(to right, var(--primary), var(--secondary));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.nav-links {
display: flex;
gap: 25px;
}
.nav-link {
color: var(--light);
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
position: relative;
}
.nav-link:hover {
color: var(--accent);
}
.nav-link.active {
color: var(--accent);
}
.nav-link.active::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 100%;
height: 2px;
background: var(--accent);
box-shadow: var(--neon-glow);
}
/* Hero Section */
.hero {
padding: 80px 0;
text-align: center;
background: radial-gradient(circle at top, rgba(106, 17, 203, 0.2), transparent 70%);
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 20px;
background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
text-shadow: var(--neon-shadow);
}
.hero p {
font-size: 1.2rem;
max-width: 600px;
margin: 0 auto 30px;
color: var(--gray);
}
.cta-button {
display: inline-block;
padding: 12px 30px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
border: none;
border-radius: 30px;
font-weight: 600;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: var(--neon-shadow);
text-decoration: none;
}
.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(106, 17, 203, 0.4);
}
/* App Grid */
.section-title {
font-size: 2rem;
margin: 40px 0 20px;
text-align: center;
position: relative;
}
.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 3px;
background: linear-gradient(to right, var(--primary), var(--secondary));
border-radius: 3px;
}
.app-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 25px;
margin: 40px 0;
}
.app-card {
background: var(--card-bg);
border-radius: 15px;
overflow: hidden;
transition: all 0.3s ease;
border: 1px solid var(--card-border);
backdrop-filter: blur(10px);
}
.app-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), var(--neon-glow);
border-color: var(--accent);
}
.app-icon {
width: 100%;
height: 180px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
color: white;
}
.app-info {
padding: 20px;
}
.app-name {
font-size: 1.3rem;
margin-bottom: 8px;
font-weight: 600;
}
.app-developer {
color: var(--gray);
font-size: 0.9rem;
margin-bottom: 10px;
}
.app-description {
font-size: 0.95rem;
margin-bottom: 15px;
color: #ccc;
}
.app-actions {
display: flex;
justify-content: space-between;
align-items: center;
}
.download-btn {
padding: 8px 20px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
border: none;
border-radius: 20px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: var(--neon-shadow);
}
.download-btn:hover {
background: linear-gradient(135deg, var(--secondary), var(--primary));
transform: scale(1.05);
}
.app-rating {
display: flex;
align-items: center;
gap: 5px;
color: gold;
}
/* Upload Form */
.upload-section {
background: var(--card-bg);
border-radius: 15px;
padding: 30px;
margin: 40px 0;
border: 1px solid var(--card-border);
}
.form-group {
margin-bottom: 20px;
}
.form-label {
display: block;
margin-bottom: 8px;
font-weight: 500;
}
.form-input {
width: 100%;
padding: 12px 15px;
background: rgba(255, 255, 255, 0.1);
border: 1px solid var(--card-border);
border-radius: 8px;
color: var(--light);
font-size: 1rem;
transition: all 0.3s ease;
}
.form-input:focus {
outline: none;
border-color: var(--accent);
box-shadow: 0 0 0 2px var(--accent-glow);
}
.file-input {
padding: 10px;
}
.submit-btn {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
border: none;
padding: 12px 25px;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: var(--neon-shadow);
}
.submit-btn:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(106, 17, 203, 0.4);
}
/* Footer */
footer {
background: var(--darker);
padding: 40px 0;
margin-top: 60px;
border-top: 1px solid var(--card-border);
}
.footer-content {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 30px;
}
.footer-section {
flex: 1;
min-width: 250px;
}
.footer-heading {
font-size: 1.2rem;
margin-bottom: 20px;
color: var(--accent);
}
.footer-links {
list-style: none;
}
.footer-links li {
margin-bottom: 10px;
}
.footer-links a {
color: var(--gray);
text-decoration: none;
transition: color 0.3s ease;
}
.footer-links a:hover {
color: var(--accent);
}
.copyright {
text-align: center;
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid var(--card-border);
color: var(--gray);
font-size: 0.9rem;
}
/* Modal */
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
z-index: 1000;
align-items: center;
justify-content: center;
}
.modal-content {
background: var(--dark);
border-radius: 15px;
padding: 30px;
max-width: 500px;
width: 90%;
border: 1px solid var(--card-border);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), var(--neon-glow);
}
.modal-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.modal-title {
font-size: 1.5rem;
color: var(--accent);
}
.close-btn {
background: none;
border: none;
color: var(--light);
font-size: 1.5rem;
cursor: pointer;
transition: color 0.3s ease;
}
.close-btn:hover {
color: var(--accent);
}
/* Responsive */
@media (max-width: 768px) {
.header-content {
flex-direction: column;
gap: 15px;
}
.hero h1 {
font-size: 2.5rem;
}
.app-grid {
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
}
/* Loading Animation */
.loader {
display: inline-block;
width: 20px;
height: 20px;
border: 3px solid rgba(255, 255, 255, 0.3);
border-radius: 50%;
border-top-color: var(--accent);
animation: spin 1s ease-in-out infinite;
margin-right: 10px;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
</style>
</head>
<body>
<!-- Header -->
<header>
<div class="container">
<div class="header-content">
<div class="logo">
<div class="logo-icon">
Created On
Oct 31, 2025
Build an App Like This
Do you want to build an app like this for your business or entertainment?
AppsGeyser - Free App Builder allows to convert any content into Android Apps in few easy steps without coding or software. Just chose a ready-to-go template to create and design your own mobile applications for free.
AppsGeyser - Free App Builder allows to convert any content into Android Apps in few easy steps without coding or software. Just chose a ready-to-go template to create and design your own mobile applications for free.