* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* Custom Scrollbar Styles - Global */
html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
    width: 14px !important;
    height: 14px !important;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
*::-webkit-scrollbar-track {
    background: #0a0a0a !important;
    border-radius: 10px !important;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb {
    background: #d946ef !important;
    background-image: linear-gradient(180deg, #d946ef 0%, #ec4899 50%, #d946ef 100%) !important;
    border-radius: 10px !important;
    border: 1px solid rgba(217, 70, 239, 0.3) !important;
    box-shadow: inset 0 0 3px rgba(255, 255, 255, 0.1) !important;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover,
*::-webkit-scrollbar-thumb:hover {
    background: #ec4899 !important;
    background-image: linear-gradient(180deg, #ec4899 0%, #d946ef 50%, #ec4899 100%) !important;
    box-shadow: 0 0 12px rgba(217, 70, 239, 0.6) !important;
    border: 1px solid rgba(236, 72, 153, 0.5) !important;
}

html::-webkit-scrollbar-thumb:active,
body::-webkit-scrollbar-thumb:active,
*::-webkit-scrollbar-thumb:active {
    background: #c026d3 !important;
    background-image: linear-gradient(180deg, #c026d3 0%, #db2777 100%) !important;
}

html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner,
*::-webkit-scrollbar-corner {
    background: #0a0a0a !important;
}

/* Firefox Scrollbar */
html {
    scrollbar-width: auto !important;
    scrollbar-color: #d946ef #0a0a0a !important;
}

body {
    scrollbar-width: auto !important;
    scrollbar-color: #d946ef #0a0a0a !important;
}

:root {
    --primary-color: #007AFF;
    --secondary-color: #5856D6;
    --accent-color: #FF2D55;
    --text-primary: #1C1C1E;
    --text-secondary: #8E8E93;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F2F2F7;
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --border-radius: 20px;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 100%;
    position: relative;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    width: 100%;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: auto;
}

.logo {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.logo:hover {
    transform: scale(1.05);
}

.company-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin-right: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hero {
    margin-top: 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 150% 100% at center, 
        transparent 0%, 
        transparent 20%, 
        rgba(0, 0, 0, 0.05) 40%, 
        rgba(0, 0, 0, 0.1) 60%, 
        rgba(0, 0, 0, 0.2) 80%, 
        rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 4rem 2rem;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease, gradientShift 8s ease-in-out infinite;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe, #43e97b, #38f9d7, #667eea);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.5)) drop-shadow(0 4px 40px rgba(0, 0, 0, 0.3));
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.85;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4), 0 4px 20px rgba(0, 0, 0, 0.2);
}

.scroll-indicator {
    margin-top: 4rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    margin: 0 auto 1rem;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 10px;
    background: white;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    border-radius: 3px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.apps-showcase {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    position: relative;
}

.apps-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 122, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    width: 100%;
    max-width: 100%;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #007AFF, #00D4FF, #007AFF);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.section-header p {
    color: #999;
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 3rem 0;
}

.carousel {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0;
    align-items: center;
    justify-content: flex-start;
}

.app-card {
    flex: 0 0 320px;
    background: #1a1a1a;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: translateY(0) scale(1);
    opacity: 0.85;
}

.app-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(217, 70, 239, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}





.app-card:hover {
    border-color: rgba(217, 70, 239, 0.5);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(217, 70, 239, 0.2);
    transform: translateY(-5px) scale(1.02);
}

.app-card:hover::after {
    opacity: 1;
}

.app-card.active {
    opacity: 1;
    transform: scale(1.05);
    border-color: rgba(217, 70, 239, 0.6);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(217, 70, 239, 0.3);
}

.app-card.active::after {
    opacity: 0.8;
}

.app-card.active .app-name {
    color: #ffffff;
    text-shadow: 0 0 30px rgba(217, 70, 239, 0.6);
}

.app-card.active .app-icon-img {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(217, 70, 239, 0.4);
}

.app-card:not(.active) {
    filter: brightness(0.7);
}

.app-icon-container {
    margin-bottom: 1.5rem;
}

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
}

.app-icon-img {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.app-card.active .app-icon-img {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1);
}

.app-icon-img:hover {
    transform: scale(1.08) rotate(2deg);
}

.gradient-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gradient-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.gradient-5 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.app-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    transition: all 0.5s ease;
    letter-spacing: 0.5px;
    user-select: text;
    cursor: text;
}

.app-category {
    color: #d946ef;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.app-card.active .app-category {
    color: #ec4899;
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.3);
}

.app-description {
    color: #d0d0d0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    user-select: text;
    cursor: text;
}

.app-card.active .app-description {
    color: #e8e8e8;
}

/* Text selection styling */
.app-card ::selection {
    background: rgba(217, 70, 239, 0.3);
    color: #ffffff;
}

.app-card ::-moz-selection {
    background: rgba(217, 70, 239, 0.3);
    color: #ffffff;
}

.app-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-value {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.1rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.app-card.active .stat-label {
    color: #c0c0c0;
}

.app-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
}

.app-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.app-link:hover::before {
    width: 300px;
    height: 300px;
}

.app-link:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(88, 86, 214, 0.4);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20;
    opacity: 0.7;
}

.carousel-btn:hover {
    background: rgba(217, 70, 239, 0.2);
    border-color: rgba(217, 70, 239, 0.5);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.carousel-btn.prev {
    left: -24px;
}

.carousel-btn.next {
    right: -24px;
}

.carousel-btn.prev:hover svg {
    transform: translateX(-2px);
}

.carousel-btn.next:hover svg {
    transform: translateX(2px);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.indicator::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #d946ef, #ec4899);
    transition: width 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.3);
}

.indicator.active {
    background: rgba(255, 255, 255, 0.3);
}

.indicator.active::after {
    width: 100%;
    animation: slideProgress 4s linear;
}

@keyframes slideProgress {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

.about-section {
    padding: 5rem 0;
    background: white;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.about-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    padding: 2rem;
    border-radius: var(--border-radius);
    background: var(--bg-secondary);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature p {
    color: var(--text-secondary);
}

.support-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.support-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.support-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.support-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #E5E5EA;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.3);
}

.contact-info {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-secondary);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

.footer {
    background: #000000;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Styles for Featured and Upcoming Sections */
@media (max-width: 768px) {
    .featured-app-card {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }
    
    .featured-icon-img {
        width: 100px;
        height: 100px;
    }
    
    .featured-app-name {
        font-size: 2rem;
    }
    
    .featured-app-description {
        font-size: 1rem;
    }
    
    .featured-app-stats {
        gap: 2rem;
    }
    
    .featured-app-link {
        width: 100%;
        text-align: center;
    }
    
    .upcoming-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .upcoming-cards-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .upcoming-card {
        padding: 1.5rem;
    }
}

/* Mobile Phones - Portrait */
@media (max-width: 480px) {
    html, body {
        max-width: 100%;
        overflow-x: hidden;
        position: relative;
        -webkit-overflow-scrolling: touch;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .navbar {
        width: 100%;
        left: 0;
        right: 0;
        padding: 0.75rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .logo-section {
        flex: 1;
        min-width: 0;
    }
    
    .logo {
        height: 40px;
        max-width: 100%;
        margin-left: 0;
    }
    
    .company-name {
        font-size: 0.9rem;
        display: none;
    }
    
    .nav-links {
        gap: 0.75rem;
        flex-shrink: 0;
        margin-right: 0;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem;
        white-space: nowrap;
    }
    
    .hero {
        min-height: 100vh;
        width: 100%;
        overflow: hidden;
        margin-top: 70px;
    }
    
    .hero-content {
        padding: 2rem 1rem;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        animation: fadeInUp 1s ease, gradientShift 6s ease-in-out infinite;
        filter: drop-shadow(0 0 15px rgba(103, 126, 234, 0.3));
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
        line-height: 1.4;
    }
    
    .scroll-indicator {
        margin-top: 3rem;
    }
    
    .apps-showcase {
        overflow: hidden;
        width: 100%;
        padding: 3rem 0;
    }
    
    .section-header {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
        word-wrap: break-word;
    }
    
    .section-header p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .carousel-container {
        padding: 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        position: relative;
    }
    
    .carousel-wrapper {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 1rem 0;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    
    .carousel {
        padding: 0 3.5rem;
        gap: 1rem;
        width: max-content;
        -webkit-overflow-scrolling: auto;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
        will-change: transform;
    }
    
    .app-card {
        flex: 0 0 280px;
        padding: 1.5rem;
        max-width: 280px;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        opacity: 1;
        border: 2px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    .app-card::after {
        display: none;
    }
    
    .app-icon-container {
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .app-icon {
        width: 65px;
        height: 65px;
        font-size: 2rem;
    }
    
    .app-icon-img {
        width: 65px;
        height: 65px;
        border-radius: 16px;
    }
    
    .app-name {
        font-size: 1.15rem;
        text-align: center;
    }
    
    .app-category {
        text-align: center;
        font-size: 0.8rem;
    }
    
    .app-description {
        font-size: 0.9rem;
        line-height: 1.5;
        flex: 1;
        text-align: center;
    }
    
    .app-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .app-link {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        display: flex;
        opacity: 0.9;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
    
    .carousel-indicators {
        padding: 0 1rem;
        margin-top: 1rem;
    }
    
    .about-section, .support-section {
        padding: 3rem 1rem;
        width: 100%;
        overflow: hidden;
    }
    
    .about-container, .support-container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .about-container h2, .support-container h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
    }
    
    .about-text, .support-subtitle {
        font-size: 1rem;
        padding: 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0;
        margin-top: 2rem;
    }
    
    .feature {
        padding: 1.5rem;
        text-align: center;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature h3 {
        font-size: 1.1rem;
    }
    
    .feature p {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 1.5rem;
        width: 100%;
        margin: 0;
        border-radius: 16px;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        font-size: 16px;
        padding: 0.875rem;
        border-radius: 10px;
    }
    
    .submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    .contact-info {
        padding: 0 1rem;
        font-size: 0.9rem;
    }
    
    .footer {
        width: 100%;
        padding: 2rem 0 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .footer-logo p {
        font-size: 0.85rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
}

/* Mobile Phones - Landscape and Small Tablets */
@media (min-width: 481px) and (max-width: 768px) {
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .navbar {
        padding: 0.875rem 0;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .logo {
        height: 50px;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .hero {
        margin-top: 80px;
    }
    
    .hero-title {
        font-size: 2.25rem;
        padding: 0 1rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        padding: 0 1rem;
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .carousel-container {
        padding: 0 0.5rem;
        max-width: 100%;
        overflow: hidden;
    }
    
    .carousel-wrapper {
        overflow-x: auto;
        width: 100%;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    
    .carousel {
        padding: 0 2rem;
        gap: 1.25rem;
        width: max-content;
    }
    
    .app-card {
        flex: 0 0 320px;
        padding: 2rem;
        max-width: 320px;
        scroll-snap-align: center;
        min-height: 420px;
        border: 2px solid rgba(255, 255, 255, 0.05);
    }
    
    .app-icon-img {
        width: 70px;
        height: 70px;
    }
    
    .app-name {
        font-size: 1.25rem;
    }
    
    .app-description {
        font-size: 0.95rem;
    }
    
    .carousel-btn {
        width: 42px;
        height: 42px;
    }
    
    .carousel-btn.prev {
        left: 0.5rem;
    }
    
    .carousel-btn.next {
        right: 0.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .about-container, .support-container {
        padding: 0 1.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 1.5rem;
    }
    
    .footer-links {
        flex-direction: row;
        gap: 1.5rem;
    }
}

/* Tablets - Portrait */
@media (min-width: 769px) and (max-width: 1024px) {
    .carousel-container {
        padding: 0 2rem;
        max-width: 100%;
    }
    
    .carousel {
        padding: 0 3rem;
        gap: 1.5rem;
    }
    
    .app-card {
        flex: 0 0 320px;
        min-height: 450px;
        border: 2px solid rgba(255, 255, 255, 0.1);
        transform: scale(0.9);
    }
    
    .app-card.active {
        transform: scale(1.05) translateY(-10px);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets - Landscape and Small Desktops */
@media (min-width: 1025px) and (max-width: 1366px) {
    .carousel-container {
        max-width: 1200px;
        padding: 0 3rem;
    }
    
    .carousel {
        padding: 0 4rem;
        gap: 2rem;
    }
    
    .app-card {
        flex: 0 0 340px;
        min-height: 460px;
        border: 2px solid rgba(255, 255, 255, 0.1);
    }
    
    .app-card.active {
        transform: scale(1.08) translateY(-12px);
    }
}

/* Featured App Styles */
.featured-app-container {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.featured-app-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid rgba(217, 70, 239, 0.3);
    border-radius: 30px;
    padding: 3rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    box-shadow: 
        0 30px 90px rgba(217, 70, 239, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.featured-app-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.featured-app-icon {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.featured-icon-img {
    width: 150px;
    height: 150px;
    border-radius: 30px;
    box-shadow: 
        0 20px 60px rgba(217, 70, 239, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.3);
}

.featured-app-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.featured-app-name {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(217, 70, 239, 0.5);
}

.featured-app-category {
    color: #ec4899;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.featured-app-description {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.featured-app-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.featured-app-link {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #d946ef, #ec4899);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(217, 70, 239, 0.4);
}

.featured-app-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(217, 70, 239, 0.5);
}

/* Upcoming Section Styles */
.upcoming-section {
    margin-top: 5rem;
    padding: 0 2rem;
}

.upcoming-title {
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    animation: gradientShift 8s ease-in-out infinite;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe, #43e97b, #38f9d7, #667eea);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.5)) drop-shadow(0 4px 40px rgba(0, 0, 0, 0.3));
}

.upcoming-subtitle {
    text-align: center;
    color: #999;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.upcoming-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.upcoming-card {
    background: #1a1a1a;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.upcoming-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(217, 70, 239, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.upcoming-card:hover {
    border-color: rgba(217, 70, 239, 0.3);
    transform: translateY(-10px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(217, 70, 239, 0.2);
}

.upcoming-card:hover::after {
    opacity: 1;
}

.upcoming-icon-container {
    margin-bottom: 1.5rem;
}

.upcoming-icon-img {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.upcoming-app-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.upcoming-app-category {
    color: #d946ef;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.upcoming-app-description {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.upcoming-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(217, 70, 239, 0.1);
    border: 1px solid rgba(217, 70, 239, 0.3);
    border-radius: 20px;
    color: #ec4899;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modal Styles */
.app-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

.app-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid rgba(217, 70, 239, 0.3);
    border-radius: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 
        0 30px 90px rgba(217, 70, 239, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
    z-index: 1001;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(217, 70, 239, 0.3);
    border-color: #d946ef;
    transform: scale(1.1) rotate(90deg);
}

.modal-body {
    padding: 1.5rem 2rem;
    text-align: center;
}

.modal-icon-container {
    margin-bottom: 1rem;
}

.modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    box-shadow: 
        0 20px 60px rgba(217, 70, 239, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.3);
    animation: bounce 0.5s ease 0.2s;
}

.modal-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.2rem;
    text-shadow: 0 0 20px rgba(217, 70, 239, 0.5);
}

.modal-category {
    color: #ec4899;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.modal-description {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

.modal-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

.modal-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal-stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

.modal-stat-label {
    font-size: 0.75rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-features {
    margin-bottom: 1rem;
    text-align: left;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(217, 70, 239, 0.2);
}

.modal-features h3 {
    color: #d946ef;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.modal-features ul {
    list-style: none;
    padding: 0;
}

.modal-features li {
    color: #d0d0d0;
    padding: 0.4rem 0;
    padding-left: 2.2rem;
    position: relative;
    font-size: 0.85rem;
    line-height: 1.4;
    display: block;
    min-height: 1.6rem;
}

.modal-features li::before {
    content: '✓';
    position: absolute;
    left: 0.5rem;
    top: 0.4rem;
    color: #ec4899;
    font-weight: bold;
    font-size: 0.95rem;
    line-height: 1;
    display: inline-block;
    width: 1.2rem;
    text-align: center;
}

.modal-cta {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #d946ef, #ec4899);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(217, 70, 239, 0.4);
}

.modal-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(217, 70, 239, 0.5);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 85vh;
        margin: 1rem;
    }
    
    .modal-body {
        padding: 1.25rem 1rem;
    }
    
    .modal-name {
        font-size: 1.5rem;
    }
    
    .modal-stats {
        gap: 1.5rem;
        padding: 0.6rem;
    }
    
    .modal-features {
        padding: 0.8rem;
    }
    
    .modal-features li {
        font-size: 0.8rem;
        padding: 0.4rem 0;
        padding-left: 2rem;
        min-height: 1.5rem;
        position: relative;
        display: block;
    }
    
    .modal-features li::before {
        position: absolute;
        left: 0.25rem;
        top: 0.4rem;
        font-size: 0.85rem;
        line-height: 1;
    }
}

/* Extra small screens (phones in portrait) */
@media (max-width: 480px) {
    .modal-features li {
        font-size: 0.75rem;
        padding-left: 2.5rem;
        line-height: 1.5;
    }
    
    .modal-features li::before {
        left: 0.3rem;
        font-size: 0.8rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .app-card {
        -webkit-tap-highlight-color: transparent;
        transition: border 0.2s ease, box-shadow 0.2s ease;
    }
    
    .app-card:active {
        border-color: rgba(217, 70, 239, 0.5);
    }
    
    .carousel-btn {
        opacity: 1;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .app-link {
        padding: 1rem 1.5rem;
    }
}

/* High Resolution Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .navbar {
        border-bottom: 0.5px solid rgba(0, 0, 0, 0.05);
    }
}

/* Safe Area Adjustments for Modern Phones */
@supports (padding: env(safe-area-inset-bottom)) {
    .footer {
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    .navbar {
        padding-top: env(safe-area-inset-top);
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
    
    .carousel {
        transition: none !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #F2F2F7;
        --text-secondary: #A1A1A6;
        --bg-primary: #000000;
        --bg-secondary: #1C1C1E;
        --card-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
    }
    
    body {
        background: var(--bg-primary);
    }
    
    .app-card {
        background: var(--bg-secondary);
    }
    
    .feature {
        background: var(--bg-secondary);
    }
    
    .contact-form {
        background: var(--bg-secondary);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        background: var(--bg-primary);
        border-color: rgba(255, 255, 255, 0.1);
        color: var(--text-primary);
    }
    
    .carousel-btn {
        background: var(--bg-secondary);
        color: var(--text-primary);
    }
}

/* Ultra-wide Screens */
@media (min-width: 1920px) {
    .carousel-container {
        max-width: 1600px;
        padding: 0 4rem;
    }
    
    .carousel {
        gap: 2.5rem;
    }
    
    .app-card {
        flex: 0 0 380px;
        min-height: 480px;
        border: 2px solid rgba(255, 255, 255, 0.1);
    }
    
    .app-card.active {
        transform: scale(1.1) translateY(-15px);
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero,
    .carousel-btn,
    .scroll-indicator {
        display: none;
    }
    
    .app-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}