/* Global Styles */
:root {
    --primary-color: #6c5ce7;
    --secondary-color: #a29bfe;
    --accent-color: #fd79a8;
    --dark-color: #2d3436;
    --light-color: #f5f6fa;
    --success-color: #00b894;
    --warning-color: #fdcb6e;
    --danger-color: #d63031;
    --gray-color: #636e72;
    --light-gray: #dfe6e9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light-color);
    color: var(--dark-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(0);
}

.btn.disabled {
    background-color: var(--gray-color);
    cursor: not-allowed;
    opacity: 0.7;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

.search-box {
    display: flex;
    align-items: center;
}

.search-box input {
    padding: 10px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 30px 0 0 30px;
    outline: none;
    width: 200px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: var(--primary-color);
    width: 250px;
}

.search-box button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background-color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero h1 span {
    font-weight: 800;
    color: var(--accent-color);
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item .number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item .label {
    font-size: 14px;
    opacity: 0.8;
}

/* Filters Section */
.filters {
    background-color: white;
    padding: 30px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.filters .container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-color);
    font-size: 14px;
}

.filter-group select {
    padding: 10px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    background-color: white;
    cursor: pointer;
    min-width: 180px;
}

#apply-filters {
    margin-left: auto;
    padding: 10px 25px;
}

/* Games Grid */
.games-grid {
    padding: 50px 0;
}

.games-grid h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: var(--dark-color);
}

.games-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.game-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.game-card .game-image {
    height: 180px;
    width: 100%;
    object-fit: cover;
}

.game-card .game-info {
    padding: 20px;
}

.game-card .game-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.game-card .game-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--gray-color);
}

.game-card .game-meta .platform {
    display: flex;
    align-items: center;
}

.game-card .game-meta .platform img {
    height: 16px;
    margin-right: 5px;
}

.game-card .game-desc {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-card .game-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-card .game-rating {
    color: var(--warning-color);
    font-weight: 600;
}

.game-card .download-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
}

.game-card .download-btn:hover {
    background-color: var(--secondary-color);
}

.game-card .game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.pagination button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination button:hover {
    background-color: var(--secondary-color);
}

.pagination button:disabled {
    background-color: var(--light-gray);
    cursor: not-allowed;
    opacity: 0.7;
}

.page-info {
    font-weight: 600;
    color: var(--gray-color);
}

/* Testimonials Section */
.testimonials {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
    color: var(--dark-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card .rating {
    color: var(--warning-color);
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-card p:before,
.testimonial-card p:after {
    content: '"';
    font-size: 24px;
    color: var(--secondary-color);
    opacity: 0.3;
}

.testimonial-card .user {
    display: flex;
    align-items: center;
}

.testimonial-card .user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-card .user span {
    font-weight: 600;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    opacity: 0.7;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul li a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* Installer Page Styles */
.installer-container {
    padding: 60px 0;
}

.installer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.installer-header h1 {
    font-size: 32px;
    color: var(--dark-color);
}

.verified-badge {
    display: flex;
    align-items: center;
    background-color: var(--success-color);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
}

.verified-badge img {
    height: 20px;
    margin-right: 8px;
}

.installer-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.installer-steps:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--light-gray);
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 32px;
    height: 32px;
    background-color: var(--light-gray);
    color: var(--gray-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.step-text {
    font-size: 14px;
    color: var(--gray-color);
    font-weight: 500;
}

.step.active .step-number {
    background-color: var(--primary-color);
    color: white;
}

.step.active .step-text {
    color: var(--dark-color);
    font-weight: 600;
}

.progress-container {
    margin-bottom: 40px;
}

.progress-bar {
    height: 10px;
    background-color: var(--light-gray);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6c5ce7 0%, #a29bfe 100%);
    border-radius: 5px;
    width: 0;
    transition: width 1s ease;
}

.progress-text {
    text-align: right;
    font-weight: 600;
    color: var(--gray-color);
}

.timer-container {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.timer-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.timer-content h3 {
    font-size: 16px;
    color: var(--gray-color);
    margin-bottom: 5px;
}

.timer {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    font-family: monospace;
}

.scan-container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.scan-container h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.scan-result {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.scan-result img {
    width: 150px;
    height: auto;
    object-fit: contain;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    padding: 10px;
    background-color: #f8f9fa;
}

.scan-details {
    flex: 1;
}

.scan-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.scan-engine {
    font-weight: 600;
}

.scan-status {
    font-weight: 600;
}

.scan-status.clean {
    color: var(--success-color);
}

.scan-status.warning {
    color: var(--warning-color);
}

.scan-status.danger {
    color: var(--danger-color);
}

.scan-summary {
    text-align: center;
    font-size: 14px;
    color: var(--gray-color);
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.reviews-container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.reviews-container h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.review-card {
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    padding: 20px;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.review-info {
    flex: 1;
}

.review-name {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.review-rating {
    color: var(--warning-color);
    font-size: 14px;
}

.review-content p {
    font-style: italic;
    color: var(--gray-color);
}

.unlock-container {
    text-align: center;
    margin-bottom: 40px;
}

#unlock-button {
    padding: 15px 30px;
    font-size: 18px;
    margin-bottom: 15px;
}

#unlock-button i {
    margin-right: 10px;
}

.unlock-note {
    color: var(--gray-color);
    font-size: 14px;
}

.tips-container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tips-container h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.tips-container ul {
    list-style: none;
}

.tips-container ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.tips-container ul li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--success-color);
}

/* VIP Page Styles */
.vip-hero {
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.vip-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.vip-hero h1 span {
    color: var(--accent-color);
}

.vip-hero p {
    font-size: 20px;
    max-width: 600px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.vip-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.vip-stats .stat-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    backdrop-filter: blur(5px);
}

.vip-stats .stat-item i {
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.vip-stats .stat-item .number {
    font-size: 28px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.vip-stats .stat-item .label {
    font-size: 14px;
    opacity: 0.8;
}

.vip-features {
    padding: 80px 0;
}

.vip-features h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.feature-card p {
    color: var(--gray-color);
    font-size: 15px;
}

.vip-pricing {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.vip-pricing h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.price {
    margin-bottom: 30px;
}

.price .amount {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.price .period {
    font-size: 14px;
    color: var(--gray-color);
}

.pricing-card ul.features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-card ul.features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.pricing-card ul.features li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--success-color);
}

.select-plan {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
}

.vip-testimonials {
    padding: 80px 0;
}

.vip-testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content .rating {
    color: var(--warning-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-content .user {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-content .user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.user-info {
    text-align: left;
}

.user-info .name {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.user-info .membership {
    font-size: 14px;
    color: var(--gray-color);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-controls button {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-controls button:hover {
    background-color: var(--secondary-color);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background-color: var(--light-gray);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background-color: var(--primary-color);
}

.vip-faq {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.vip-faq h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    font-size: 18px;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--gray-color);
}

.faq-item.active .faq-question {
    background-color: #f8f9fa;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    header .container {
        flex-direction: column;
    }

    .logo {
        margin-bottom: 15px;
    }

    nav ul {
        margin-bottom: 15px;
    }

    .search-box {
        width: 100%;
        max-width: 400px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .stats {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 1 150px;
    }

    .filters .container {
        flex-wrap: wrap;
    }

    #apply-filters {
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .installer-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .verified-badge {
        margin-top: 15px;
    }

    .scan-result {
        flex-direction: column;
    }

    .scan-result img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 20px;
    }

    .vip-hero h1 {
        font-size: 36px;
    }

    .vip-stats {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px 10px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .installer-steps {
        flex-wrap: wrap;
        gap: 20px;
    }

    .installer-steps:before {
        display: none;
    }

    .step {
        flex: 1 1 100px;
    }

    .vip-hero h1 {
        font-size: 28px;
    }

    .vip-hero p {
        font-size: 16px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
/* Trending Page Styles */
.trending-hero {
    background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.trending-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.trending-hero h1 span {
    font-weight: 800;
    color: var(--light-color);
}

.trending-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.time-filter button {
    background: none;
    border: none;
    padding: 8px 15px;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.time-filter button.active {
    background-color: var(--primary-color);
    color: white;
}

.time-filter button:not(.active):hover {
    background-color: var(--light-gray);
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.trending-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.stat-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-card i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-card h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.game-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.game-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.game-item:last-child {
    border-bottom: none;
}

.rank {
    width: 25px;
    height: 25px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    margin-right: 15px;
}

.game-item .name {
    flex: 1;
    font-weight: 500;
}

.game-item .downloads {
    font-size: 12px;
    color: var(--gray-color);
}

.game-item .change {
    font-size: 12px;
    font-weight: 600;
}

.game-item .change.up {
    color: var(--success-color);
}

.game-item .change.down {
    color: var(--danger-color);
}

.game-item .vip-only {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-color);
    background-color: rgba(253, 121, 168, 0.1);
    padding: 3px 8px;
    border-radius: 30px;
}

.genre-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.genre-tabs button {
    background: none;
    border: 1px solid var(--light-gray);
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.genre-tabs button.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.genre-tabs button:not(.active):hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.genre-content {
    display: none;
}

.genre-content.active {
    display: block;
}

/* New Releases Page Styles */
.new-releases-hero {
    background: linear-gradient(135deg, #00b894 0%, #55efc4 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.new-releases-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.new-releases-hero h1 span {
    font-weight: 800;
    color: var(--dark-color);
}

.new-releases-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.release-filters {
    background-color: white;
    padding: 30px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.release-filters .container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

#apply-release-filters {
    margin-left: auto;
}

.upcoming-releases {
    padding: 50px 0;
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.upcoming-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    position: relative;
}

.upcoming-card.vip-only {
    border: 2px solid var(--accent-color);
}

.vip-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.release-date {
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 90px;
}

.release-date .day {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.release-date .month {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 5px 0;
}

.release-date .year {
    font-size: 14px;
    opacity: 0.8;
}

.upcoming-info {
    padding: 20px;
    flex: 1;
}

.upcoming-info h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.upcoming-info p {
    color: var(--gray-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.upcoming-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--gray-color);
    margin-bottom: 15px;
}

.upcoming-meta .platform i {
    margin-right: 5px;
}

.notify-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-btn:hover {
    background-color: var(--secondary-color);
}

.upcoming-image {
    width: 120px;
    object-fit: cover;
    display: none;
}

@media (min-width: 992px) {
    .upcoming-image {
        display: block;
    }
}

.recent-releases {
    padding: 50px 0;
}

.view-options {
    display: flex;
    gap: 10px;
}

.view-option {
    background: none;
    border: 1px solid var(--light-gray);
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-option.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.view-option:not(.active):hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.releases-list {
    display: none;
}

.release-newsletter {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
}

.newsletter-form button {
    background-color: var(--dark-color);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 0 5px 5px 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #1e272e;
}

.privacy-note {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 15px;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #0984e3 0%, #74b9ff 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-hero h1 span {
    font-weight: 800;
    color: var(--light-color);
}

.contact-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.contact-options {
    padding: 60px 0;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.option-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.option-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.option-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.option-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    font-weight: 600;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.contact-form-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.form-container {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
}

.form-container h2 {
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.faq-container h2 {
    margin-bottom: 30px;
    text-align: center;
}

.faq-list {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    overflow: hidden;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 18px;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    padding: 15px 0;
    color: var(--gray-color);
}

.faq-item.active .faq-question {
    background-color: var(--primary-color);
    color: white;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.contact-info {
    padding: 60px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    margin-bottom: 20px;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.info-card h3 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.info-card p {
    margin-bottom: 10px;
    color: var(--gray-color);
}

.info-card a {
    color: var(--primary-color);
    font-weight: 500;
}
.top-rated-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: gold;
    color: #000;
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 12px;
  }
.achievement-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #333;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  animation: slideIn 0.5s forwards;
  z-index: 1000;
}
@keyframes slideIn {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}
.bonus-gift {
    background: rgba(253, 121, 168, 0.1);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
  }
  .bonus-gift img {
    width: 50px;
    height: 50px;
  }
  .easter-egg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .egg-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
  }
 
.countdown-timer {
  margin-bottom: 20px;
  text-align: center;
}
.progress-bar {
  height: 5px;
  background: #e0e0e0;
  border-radius: 5px;
  margin-top: 10px;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--primary-color);
  border-radius: 5px;
  transition: width 1s linear;
}
.user-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #333;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.3s ease;
    z-index: 999;
  }
  .user-notification.show {
    opacity: 1;
    transform: translateX(0);
  }
  .countdown-wrapper {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .countdown-bar {
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    margin-top: 10px;
    overflow: hidden;
  }
  
  .countdown-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe);
    transition: width 1s linear;
  }
  
  #unlock-button.disabled {
    background: #95a5a6;
    cursor: not-allowed;
  }
  
  #unlock-button:not(.disabled):hover {
    background: #fd79a8;
  }
  /* Installer Page Styles */
.installer-container {
    padding: 40px 0;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    background: #00b894;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    margin: 10px 0;
}

.verified-badge i {
    margin-right: 8px;
}

.progress-container {
    margin: 30px 0;
}

.progress-bar {
    height: 10px;
    background: #f1f1f1;
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe);
    transition: width 0.3s ease;
}

.virus-scan {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.scan-result {
    color: #00b894;
    font-weight: bold;
    margin: 10px 0;
}

.antivirus-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.av-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.av-item .clean {
    color: #00b894;
}

#unlock-button {
    background: #6c5ce7;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

#unlock-button:hover {
    background: #5649c0;
}

#unlock-button i {
    margin-right: 10px;
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.modal-body {
    text-align: center;
}

.modal-body i {
    font-size: 50px;
    color: #6c5ce7;
    margin-bottom: 20px;
}

.modal-body .btn {
    margin-top: 20px;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .giftcards-grid {
        grid-template-columns: 1fr;
    }
    
    .giftcard-image {
        height: 150px;
    }
}
/* Hide desktop content on mobile */
.mobile-device .desktop-only {
    display: none !important;
}

/* Hide mobile content on desktop */
.desktop-device .mobile-only {
    display: none !important;
}

/* Example mobile-specific styles */
.mobile-device .download-btn {
    padding: 15px;
    font-size: 1.2rem;
}
/* Level indicator */
#level-indicator {
    position: fixed;
    top: 10px;
    right: 10px;
    background: #6c5ce7;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Level notification */
.level-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #00b894;
    color: white;
    padding: 15px;
    border-radius: 8px;
    max-width: 300px;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.level-notification.show {
    transform: translateX(0);
}

/* Level-locked content */
[data-required-level] {
    display: none;
    position: relative;
}

[data-required-level]::before {
    content: "Unlocks at Level " attr(data-required-level);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

[data-required-level][style*="display: block"]::before {
    display: none;
}
[data-recommended="true"] {
    border-left: 3px solid #6c5ce7;
    background-color: rgba(108, 92, 231, 0.1);
}