/* DM King Apps - Ultra Compatible CSS */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap');

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: Inter, Arial, sans-serif;
    background-color: #0F172A;
    color: #F8FAFC;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Outfit, Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

p {
    color: #94A3B8;
    font-size: 18px;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Global Container */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: block;
    visibility: visible;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.gradient-text {
    background-image: linear-gradient(135deg, #4F46E5, #7C3AED, #EC4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gold-text {
    background-image: linear-gradient(135deg, #F59E0B, #FBBF24, #F59E0B);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0F172A;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader-wrapper.hidden {
    display: none;
}

.loader {
    width: 60px;
    height: 60px;
    border: 3px solid #1E293B;
    border-top-color: #4F46E5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 24px;
    background-color: #0F172A;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    background-image: linear-gradient(135deg, #4F46E5, #7C3AED);
    border-radius: 50%;
    opacity: 0.1;
}

.shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -5%;
}

.shape:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -5%;
    background-image: linear-gradient(135deg, #F59E0B, #FBBF24);
}

.shape:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 20%;
    background-image: linear-gradient(135deg, #10B981, #34D399);
}

.hero-banner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    margin-bottom: 40px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-tagline {
    font-size: 20px;
    color: #94A3B8;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-image: linear-gradient(135deg, #4F46E5, #7C3AED, #EC4899);
    color: #FFFFFF;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.5);
}

.cta-button svg {
    width: 20px;
    height: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #64748B;
    font-size: 14px;
}

.apps-section {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-left: 24px;
    padding-right: 24px;
}

.app-card {
    background-color: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.app-card:hover {
    transform: translateY(-10px);
    border-color: #4F46E5;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.app-card.accent-blue {
    border-top: 4px solid #4F46E5;
}

.app-card.accent-purple {
    border-top: 4px solid #7C3AED;
}

.app-card.accent-green {
    border-top: 4px solid #10B981;
}

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-info h3 {
    color: #F8FAFC;
    margin-bottom: 12px;
    font-size: 24px;
}

.app-info p {
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.app-features {
    list-style: none;
    margin-bottom: 32px;
    padding-left: 0;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 8px;
    padding-bottom: 8px;
    color: #94A3B8;
    font-size: 15px;
}

.app-features li svg {
    width: 20px;
    height: 20px;
    color: #10B981;
    flex-shrink: 0;
}

.playstore-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-image: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 28px;
    border-radius: 12px;
    color: #F8FAFC;
    font-weight: 500;
}

.playstore-btn:hover {
    transform: translateY(-2px);
    border-color: #4F46E5;
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.3);
}

.playstore-btn img {
    width: 24px;
    height: 24px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text small {
    font-size: 11px;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-text strong {
    font-size: 16px;
}

.stats-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #1E293B;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 32px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    font-family: Outfit, Arial, sans-serif;
    background-image: linear-gradient(135deg, #F59E0B, #FBBF24, #F59E0B);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    color: #94A3B8;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer {
    background-image: linear-gradient(180deg, #1E293B, #0F172A);
    padding-top: 60px;
    padding-bottom: 0;
    position: relative;
}

.footer-content {
    text-align: center;
    padding-bottom: 40px;
}

.footer-logo {
    font-family: Outfit, Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-tagline {
    color: #94A3B8;
    font-size: 16px;
    margin-bottom: 32px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #94A3B8;
}

.social-link:hover {
    background-image: linear-gradient(135deg, #4F46E5, #7C3AED);
    border-color: transparent;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.4);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.copyright {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 24px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright p {
    color: #64748B;
    font-size: 14px;
}

.copyright a {
    color: #818CF8;
}

.copyright a:hover {
    color: #10B981;
}

/* Footer Navigation Links */
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px;
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links a,
.footer-btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: rgba(79, 70, 229, 0.15);
    border: 1px solid rgba(79, 70, 229, 0.3);
    border-radius: 50px;
    color: #818CF8;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-btn:hover {
    background-color: rgba(79, 70, 229, 0.3);
    border-color: rgba(79, 70, 229, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.2);
}

.reveal {
    opacity: 1;
    transform: none;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.delay-1 {
    opacity: 1;
}

.delay-2 {
    opacity: 1;
}

.delay-3 {
    opacity: 1;
}

.delay-4 {
    opacity: 1;
}

@media screen and (max-width: 1024px) {
    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero-banner {
        max-width: 600px;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 14px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 20px;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero {
        padding: 40px 16px;
        min-height: 0;
        padding-top: 80px;
        padding-bottom: 100px;
    }

    .hero-banner {
        max-width: 100%;
        margin-bottom: 32px;
        border-radius: 16px;
    }

    .hero-tagline {
        margin-bottom: 32px;
    }

    .cta-button {
        padding: 16px 32px;
        font-size: 16px;
    }

    .scroll-indicator {
        display: none;
    }

    .apps-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .apps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .app-card {
        padding: 24px;
    }

    .app-icon {
        width: 64px;
        height: 64px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-item {
        padding: 20px;
    }

    .footer-content {
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .playstore-btn {
        width: 100%;
        justify-content: center;
    }

    .social-links {
        gap: 12px;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }
}

/* ==========================================
   EMBEDDED INFO SECTIONS (About, Contact, Privacy)
   ========================================== */

.info-section {
    padding: 100px 0;
    position: relative;
}

.about-section {
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
}

.contact-section {
    background: #1E293B;
}

.privacy-section {
    background: linear-gradient(180deg, #1E293B 0%, #0F172A 100%);
}

.info-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* About Section Styles */
.info-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.about-brand {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
    border-radius: 20px;
    margin-bottom: 40px;
}

.brand-logo {
    font-family: Outfit, Arial, sans-serif;
    font-size: 42px;
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.brand-tagline {
    color: #94A3B8;
    font-size: 18px;
    margin: 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.info-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.info-block:hover {
    background: rgba(79, 70, 229, 0.1);
    border-color: rgba(79, 70, 229, 0.3);
    transform: translateY(-4px);
}

.info-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.info-block h4 {
    color: #F8FAFC;
    font-size: 20px;
    margin-bottom: 12px;
}

.info-block p {
    color: #94A3B8;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Contact Section Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.contact-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(79, 70, 229, 0.15);
    border-color: rgba(79, 70, 229, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
}

.contact-card-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.contact-card h4 {
    color: #F8FAFC;
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-card p {
    color: #64748B;
    font-size: 14px;
    margin-bottom: 12px;
}

.contact-link {
    color: #818CF8;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #A78BFA;
}

.contact-highlight {
    color: #10B981;
    font-size: 16px;
    font-weight: 700;
    display: block;
}

.support-note {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    padding: 24px 32px;
    text-align: center;
}

.support-note h4 {
    color: #FBBF24;
    font-size: 18px;
    margin-bottom: 8px;
}

.support-note p {
    color: #94A3B8;
    font-size: 15px;
    margin: 0;
}

/* Privacy Section Styles */
.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.privacy-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px;
    position: relative;
    transition: all 0.3s ease;
}

.privacy-card:hover {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(79, 70, 229, 0.3);
    transform: translateY(-4px);
}

.privacy-number {
    position: absolute;
    top: -12px;
    left: 24px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
}

.privacy-card h4 {
    color: #F8FAFC;
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 8px;
}

.privacy-card p {
    color: #94A3B8;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.privacy-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-card ul li {
    color: #94A3B8;
    font-size: 14px;
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
}

.privacy-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

/* Responsive Styles for Info Sections */
@media screen and (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .info-section {
        padding: 60px 0;
    }

    .info-card {
        padding: 24px;
    }

    .about-brand {
        padding: 24px;
    }

    .brand-logo {
        font-size: 32px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .info-block {
        padding: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-card {
        padding: 24px 20px;
    }

    .privacy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .privacy-card {
        padding: 24px;
    }

    .support-note {
        padding: 20px;
    }
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.footer-links a {
    color: #94A3B8;
    font-size: 14px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
    color: #818CF8;
    transform: translateY(-2px);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(79, 70, 229, 0.1);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #94A3B8;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #EF4444;
    color: #EF4444;
    transform: rotate(90deg);
}

.modal-content {
    padding: 40px;
}

.modal-content h2 {
    color: #F8FAFC;
    font-size: 32px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-content h4 {
    color: #F8FAFC;
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.modal-content p {
    color: #94A3B8;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.modal-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
}

.modal-content ul li {
    color: #94A3B8;
    font-size: 15px;
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.modal-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.modal-date {
    color: #64748B;
    font-size: 13px;
    margin-bottom: 24px;
}

/* About Modal */
.about-hero {
    text-align: center;
    padding: 32px 0;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: 16px;
}

.about-logo {
    font-family: Outfit, Arial, sans-serif;
    font-size: 36px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.about-tagline {
    color: #94A3B8;
    font-size: 16px;
}

/* Contact Modal */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(79, 70, 229, 0.1);
    border-color: rgba(79, 70, 229, 0.3);
    transform: translateX(8px);
}

.contact-icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
    border-radius: 12px;
}

.contact-info h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
}

.contact-info p {
    margin: 0;
    font-size: 14px;
}

.contact-info a {
    color: #818CF8;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #A78BFA;
}

/* Feedback Form */
.feedback-form {
    margin-top: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #F8FAFC;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #F8FAFC;
    font-size: 15px;
    font-family: Inter, Arial, sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4F46E5;
    background: rgba(79, 70, 229, 0.1);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748B;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394A3B8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.form-group select option {
    background: #1E293B;
    color: #F8FAFC;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    border: none;
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4);
}

.submit-btn svg {
    width: 20px;
    height: 20px;
}

/* Feedback Success */
.feedback-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feedback-success h4 {
    color: #10B981;
    font-size: 24px;
    margin-bottom: 12px;
}

.feedback-success p {
    color: #94A3B8;
    font-size: 15px;
}

/* Modal Scrollbar */
.modal-container::-webkit-scrollbar {
    width: 6px;
}

.modal-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.modal-container::-webkit-scrollbar-thumb {
    background: rgba(79, 70, 229, 0.5);
    border-radius: 3px;
}

.modal-container::-webkit-scrollbar-thumb:hover {
    background: rgba(79, 70, 229, 0.7);
}

/* Mobile Modal Styles */
@media screen and (max-width: 768px) {
    .footer-links {
        gap: 16px;
        padding: 20px 16px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .modal-container {
        max-height: 90vh;
        border-radius: 20px 20px 0 0;
        margin-top: auto;
    }

    .modal-content {
        padding: 32px 24px;
    }

    .modal-content h2 {
        font-size: 26px;
    }

    .about-logo {
        font-size: 28px;
    }

    .contact-item {
        padding: 16px;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
}

/* ==========================================
   SEPARATE PAGES STYLES
   ========================================== */

/* Back Button */
.back-button {
    position: fixed;
    top: 24px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #F8FAFC;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: rgba(79, 70, 229, 0.3);
    border-color: rgba(79, 70, 229, 0.5);
    transform: translateX(-4px);
}

.back-button svg {
    width: 18px;
    height: 18px;
}

/* Page Section */
.page-section {
    min-height: 100vh;
    padding: 100px 24px 60px;
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    display: block;
    visibility: visible;
}

.page-section .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: block;
    visibility: visible;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 48px;
    color: #F8FAFC;
    margin-bottom: 16px;
}

.page-date {
    color: #64748B;
    font-size: 14px;
}

.page-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Footer Button Styles */
.footer-btn {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(79, 70, 229, 0.15);
    border: 1px solid rgba(79, 70, 229, 0.3);
    border-radius: 50px;
    color: #818CF8;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-btn:hover {
    background: rgba(79, 70, 229, 0.3);
    border-color: rgba(79, 70, 229, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.2);
}

/* Policy Cards */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.policy-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.policy-card:hover {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(79, 70, 229, 0.3);
    transform: translateY(-4px);
}

.policy-number {
    position: absolute;
    top: -14px;
    left: 28px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.4);
}

.policy-card h3 {
    color: #F8FAFC;
    font-size: 20px;
    margin-bottom: 16px;
    margin-top: 8px;
}

.policy-card p {
    color: #94A3B8;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.policy-card ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
}

.policy-card ul li {
    color: #94A3B8;
    font-size: 14px;
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.policy-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.policy-card a {
    color: #818CF8;
    transition: color 0.3s ease;
}

.policy-card a:hover {
    color: #A78BFA;
}

/* About Page Styles */
.brand-hero {
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    margin-bottom: 48px;
}

.brand-logo-large {
    font-family: Outfit, Arial, sans-serif;
    font-size: 48px;
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.brand-tagline-large {
    color: #94A3B8;
    font-size: 20px;
    margin: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.about-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.about-card:hover {
    background: rgba(79, 70, 229, 0.1);
    border-color: rgba(79, 70, 229, 0.3);
    transform: translateY(-4px);
}

.about-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.about-card h3 {
    color: #F8FAFC;
    font-size: 22px;
    margin-bottom: 12px;
}

.about-card p {
    color: #94A3B8;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Our Apps Section */
.our-apps-section {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
}

.our-apps-section h2 {
    text-align: center;
    margin-bottom: 32px;
    color: #F8FAFC;
}

.apps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.app-item:hover {
    background: rgba(79, 70, 229, 0.1);
    border-color: rgba(79, 70, 229, 0.3);
}

.app-item img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.app-details h4 {
    color: #F8FAFC;
    font-size: 18px;
    margin-bottom: 4px;
}

.app-details p {
    color: #94A3B8;
    font-size: 14px;
    margin: 0;
}

/* Contact Page Styles */
.contact-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.contact-page-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-page-card:hover {
    background: rgba(79, 70, 229, 0.15);
    border-color: rgba(79, 70, 229, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
}

.contact-page-icon {
    font-size: 44px;
    margin-bottom: 16px;
    display: block;
}

.contact-page-card h3 {
    color: #F8FAFC;
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-page-card p {
    color: #64748B;
    font-size: 14px;
    margin-bottom: 16px;
}

.contact-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    border-radius: 50px;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

.contact-time {
    color: #10B981;
    font-size: 18px;
    font-weight: 700;
    display: block;
}

/* Support Banner */
.support-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 20px;
    margin-bottom: 32px;
}

.support-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.support-text h3 {
    color: #FBBF24;
    font-size: 20px;
    margin-bottom: 8px;
}

.support-text p {
    color: #94A3B8;
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

/* Quick Links */
.quick-links {
    text-align: center;
}

.quick-links h3 {
    color: #F8FAFC;
    margin-bottom: 20px;
}

.links-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.quick-link {
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #94A3B8;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: rgba(79, 70, 229, 0.2);
    border-color: rgba(79, 70, 229, 0.4);
    color: #818CF8;
}

/* Feedback Page Styles */
.feedback-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px;
}

.feedback-page-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feedback-page-form .form-group {
    margin-bottom: 24px;
}

.feedback-page-form label {
    display: block;
    color: #F8FAFC;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.feedback-page-form input,
.feedback-page-form select,
.feedback-page-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #F8FAFC;
    font-size: 15px;
    font-family: Inter, Arial, sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.feedback-page-form input:focus,
.feedback-page-form select:focus,
.feedback-page-form textarea:focus {
    outline: none;
    border-color: #4F46E5;
    background: rgba(79, 70, 229, 0.1);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

.feedback-page-form input::placeholder,
.feedback-page-form textarea::placeholder {
    color: #64748B;
}

.feedback-page-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394A3B8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px;
    padding-right: 44px;
}

.feedback-page-form select option {
    background: #1E293B;
    color: #F8FAFC;
}

.feedback-page-form textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-feedback-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 36px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    border: none;
    border-radius: 14px;
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(79, 70, 229, 0.3);
}

.submit-feedback-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(79, 70, 229, 0.4);
}

.submit-feedback-btn svg {
    width: 22px;
    height: 22px;
}

/* Feedback Success Page */
.feedback-success-page {
    text-align: center;
    padding: 60px 20px;
}

.success-icon-large {
    font-size: 72px;
    margin-bottom: 24px;
}

.feedback-success-page h2 {
    color: #10B981;
    font-size: 36px;
    margin-bottom: 16px;
}

.feedback-success-page p {
    color: #94A3B8;
    font-size: 17px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.back-home-btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    border-radius: 50px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
}

.back-home-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4);
}

/* Mini Footer */
.mini-footer {
    background: #0F172A;
    padding: 24px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mini-footer p {
    color: #64748B;
    font-size: 14px;
    margin: 0;
}

/* Responsive Styles for Separate Pages */
@media screen and (max-width: 1024px) {
    .contact-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .back-button {
        top: 16px;
        left: 16px;
        padding: 10px 16px;
        font-size: 13px;
    }

    .page-section {
        padding: 80px 16px 40px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .brand-hero {
        padding: 32px;
    }

    .brand-logo-large {
        font-size: 36px;
    }

    .policy-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .policy-card,
    .about-card,
    .contact-page-card {
        padding: 24px;
    }

    .support-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .feedback-container {
        padding: 32px 24px;
    }

    .feedback-page-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .app-item {
        flex-direction: column;
        text-align: center;
    }

    .our-apps-section {
        padding: 24px;
    }
}