:root {
    --primary-color: #6c5ce7;
    --primary-dark: #5649c0;
    --accent-color: #00cec9;
    --text-color: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --bg-dark: #1e1e2f;
    --bg-darker: #161623;
    --card-bg: rgba(255, 255, 255, 0.05);
    --neon-glow: 0 0 15px rgba(108, 92, 231, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    color: var(--text-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(22, 22, 35, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(108, 92, 231, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    z-index: 1001;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* WhatsApp Button in Navbar */
.nav-menu .whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.nav-menu .whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: white !important;
}

.nav-menu .whatsapp-btn i {
    font-size: 1.1rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: rgba(108, 92, 231, 0.2);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(108, 92, 231, 0.3);
}

.menu-toggle:hover {
    background: rgba(108, 92, 231, 0.3);
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.6);
    transform: scale(1.05);
}

.menu-toggle span {
    width: 20px;
    height: 2.5px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s;
}

.menu-toggle.active {
    background: rgba(108, 92, 231, 0.4);
    box-shadow: 0 0 25px rgba(108, 92, 231, 0.8);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--accent-color);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--accent-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 2rem;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.btn i {
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--neon-glow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(108, 92, 231, 1);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Apps Section */
.apps-section {
    padding: 4rem 2rem;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--accent-color);
}

.title-icon {
    font-size: 2.5rem;
}

.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    min-height: 300px;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.app-card {
    background: rgba(30, 30, 47, 0.6);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(108, 92, 231, 0.2);
    transition: all 0.3s;
    cursor: pointer;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.5s ease-out;
    position: relative;
}

.app-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.3);
}

.app-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    position: relative;
}

.app-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    object-fit: cover;
    border: 2px solid rgba(108, 92, 231, 0.4);
    flex-shrink: 0;
}

.app-info {
    flex: 1;
    min-width: 0;
}

.app-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 0.35rem 0.7rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.new-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #00cec9, #0984e3);
    color: white;
    padding: 0.35rem 0.7rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.app-meta-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex: 1;
}

.app-meta-item:first-child {
    justify-content: flex-start;
}

.app-meta-item:nth-child(2) {
    justify-content: center;
}

.app-meta-item:last-child {
    justify-content: flex-end;
}

.app-meta-icon {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.app-actions {
    display: flex;
    gap: 0.8rem;
}

.app-btn {
    flex: 1;
    padding: 0.7rem 1rem;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.app-btn-primary {
    background: var(--primary-color);
    color: white;
}

.app-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

.app-btn-secondary {
    background: rgba(0, 206, 201, 0.2);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.app-btn-secondary:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(108, 92, 231, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-icon {
    font-size: 1.5rem;
}

.footer p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.developer {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 480px) {
    .footer {
        padding: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 0.3rem;
    }

    .footer p {
        font-size: 0.85rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(22, 22, 35, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(108, 92, 231, 0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
    }

    .hero {
        padding: 5rem 1.5rem 2rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .apps-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-menu {
        width: 80%;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-icon {
        font-size: 1.5rem;
    }

    .hero {
        padding: 5rem 1rem 2rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* Glowing Divider */
.glowing-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 20%, 
        var(--accent-color) 50%, 
        var(--primary-color) 80%, 
        transparent 100%);
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.8),
                0 0 40px rgba(0, 206, 201, 0.6);
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(108, 92, 231, 0.8),
                    0 0 40px rgba(0, 206, 201, 0.6);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 30px rgba(108, 92, 231, 1),
                    0 0 60px rgba(0, 206, 201, 0.8);
    }
}

/* Contact Section */
.contact-section {
    padding: 5rem 2rem;
    background: var(--bg-dark);
}

.contact-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-content > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 12px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(108, 92, 231, 0.4);
}

.contact-link i {
    font-size: 1.3rem;
}

.contact-link .fa-whatsapp {
    color: #25D366;
}

.contact-link:hover .fa-whatsapp {
    color: #1EBE57;
}

.contact-link .fa-telegram {
    color: #0088cc;
}

.contact-link .fa-instagram {
    color: #E4405F;
}

.contact-link .fa-youtube {
    color: #FF0000;
}

@media (max-width: 768px) {
    .contact-content h2 {
        font-size: 2rem;
    }

    .contact-links {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-link {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-content h2 {
        font-size: 1.8rem;
    }

    .contact-content > p {
        font-size: 1rem;
    }
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: -2rem;
    margin-bottom: 2.5rem;
}

/* Search and Filter */
.search-filter-container {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.search-box {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-box i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(108, 92, 231, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.search-box input::placeholder {
    color: var(--text-secondary);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 10px;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.filter-btn:hover {
    background: rgba(108, 92, 231, 0.2);
    border-color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 15px rgba(108, 92, 231, 0.5);
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1rem;
        margin-top: -1.5rem;
    }

    .search-filter-container {
        margin-bottom: 2rem;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .section-subtitle {
        font-size: 0.9rem;
    }

    .search-box input {
        font-size: 0.9rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* About Section */
.about-section {
    padding: 5rem 2rem;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(108, 92, 231, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 206, 201, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-image-wrapper {
    position: sticky;
    top: 100px;
}

.about-image {
    position: relative;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(0, 206, 201, 0.2));
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.about-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 0.8rem 1.8rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.about-badge i {
    font-size: 1.2rem;
}

.about-info h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    line-height: 1.3;
}

.aka {
    color: var(--accent-color);
    font-size: 1.6rem;
    display: inline-block;
    animation: fadeInUp 0.8s ease-out;
}

.intro-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-style: italic;
}

.work-style {
    font-size: 0.95rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding: 0.75rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border-left: 3px solid var(--primary-color);
    border-radius: 4px;
    display: inline-block;
}

.work-style i {
    margin-right: 0.5rem;
}

.about-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(30, 30, 47, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(108, 92, 231, 0.2);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.detail-item:hover {
    background: rgba(108, 92, 231, 0.15);
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
}

.detail-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

.detail-content {
    flex: 1;
}

.detail-content span {
    color: var(--text-secondary);
    line-height: 1.6;
    display: block;
}

.detail-content strong {
    color: var(--text-color);
    font-size: 1.05rem;
}

.skills-section {
    margin: 2.5rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(30, 30, 47, 0.8), rgba(22, 22, 35, 0.8));
    border-radius: 20px;
    border: 1px solid rgba(108, 92, 231, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.skills-section h4 {
    font-size: 1.5rem;
    margin-bottom: 1.8rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.skills-section h4 i {
    font-size: 1.6rem;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skill-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.3rem;
    background: rgba(108, 92, 231, 0.15);
    border: 2px solid rgba(108, 92, 231, 0.4);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.skill-tag:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-color: transparent;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.5);
}

.skill-tag i {
    font-size: 1.2rem;
}

.about-footer {
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.25), rgba(0, 206, 201, 0.25));
    border-radius: 15px;
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    border: 2px solid rgba(108, 92, 231, 0.4);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
    position: relative;
    overflow: hidden;
}

.about-footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.about-footer i {
    color: #ff6b6b;
    animation: heartbeat 1.5s ease-in-out infinite;
    font-size: 1.3rem;
}

.about-footer strong {
    color: var(--accent-color);
    font-weight: 700;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image-wrapper {
        position: relative;
        top: 0;
        max-width: 350px;
        margin: 0 auto;
    }

    .about-info h3 {
        font-size: 1.8rem;
        text-align: center;
    }

    .aka {
        font-size: 1.4rem;
    }

    .intro-text {
        text-align: center;
    }

    .about-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 3rem 1rem;
    }

    .about-info h3 {
        font-size: 1.5rem;
    }

    .aka {
        font-size: 1.2rem;
    }

    .intro-text {
        font-size: 0.95rem;
    }

    .detail-item {
        padding: 1rem;
    }

    .detail-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.1rem;
    }

    .skills-section {
        padding: 1.5rem;
    }

    .skills-section h4 {
        font-size: 1.3rem;
    }

    .skills-grid {
        gap: 0.7rem;
    }

    .skill-tag {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }

    .about-footer {
        font-size: 1rem;
        padding: 1.5rem;
    }
}

/* App Details Page */
.app-details-section {
    padding: 6rem 2rem 4rem;
    min-height: 100vh;
}

.app-detail-header {
    margin-bottom: 2rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(108, 92, 231, 0.2);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.back-btn:hover {
    background: var(--primary-color);
    transform: translateX(-5px);
}

.app-detail-content {
    max-width: 1000px;
    margin: 0 auto;
}

.app-detail-main {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(30, 30, 47, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(108, 92, 231, 0.2);
}

.app-detail-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.app-detail-icon {
    width: 150px;
    height: 150px;
    border-radius: 25px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.4);
}

.app-detail-icon-wrapper .popular-badge,
.app-detail-icon-wrapper .new-badge {
    position: absolute;
    top: -10px;
    right: -10px;
}

.app-detail-info {
    flex: 1;
}

.app-detail-info h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.app-detail-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.app-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.meta-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.app-detail-actions {
    display: flex;
    gap: 1rem;
}

.app-screenshots,
.app-description,
.app-updates,
.app-developer {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(30, 30, 47, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(108, 92, 231, 0.2);
}

.app-screenshots h2,
.app-description h2,
.app-updates h2,
.app-developer h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.screenshots-grid img {
    width: 100%;
    border-radius: 15px;
    border: 2px solid rgba(108, 92, 231, 0.3);
    transition: all 0.3s;
    cursor: pointer;
}

.screenshots-grid img:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.4);
}

.app-description p,
.app-updates p,
.app-developer p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.error {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .app-detail-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .app-detail-icon {
        width: 120px;
        height: 120px;
    }

    .app-detail-info h1 {
        font-size: 1.5rem;
    }

    .app-detail-meta {
        justify-content: center;
    }

    .app-detail-actions {
        justify-content: center;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
    }
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(108, 92, 231, 0.5);
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.close-modal:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.app-screenshots h2 i,
.app-description h2 i,
.app-updates h2 i,
.app-developer h2 i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

/* App Details Page - New Design */
.app-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.2);
    border: 1px solid var(--primary-color);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.share-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* App Banner Wrapper */
.app-banner-wrapper {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(0, 206, 201, 0.2));
    border-radius: 20px;
    border: 1px solid rgba(108, 92, 231, 0.3);
    margin-bottom: 2rem;
    overflow: hidden;
}

/* App Banner */
.app-banner {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.app-banner-content {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex: 1;
}

.app-banner-icon {
    position: relative;
    flex-shrink: 0;
}

.app-banner-icon img {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.4);
}

.app-banner-icon .popular-badge,
.app-banner-icon .new-badge {
    position: absolute;
    top: -8px;
    right: -8px;
}

.app-banner-info h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.app-banner-subtitle {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.app-banner-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.app-banner-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.app-banner-meta i {
    color: var(--primary-color);
}

.app-banner-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.app-banner-actions .btn {
    text-decoration: none;
    white-space: nowrap;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Tabs - Sticky to banner */
.app-tabs {
    display: flex;
    gap: 0;
    background: rgba(22, 22, 35, 0.6);
    border-top: 1px solid rgba(108, 92, 231, 0.2);
    overflow-x: auto;
    scrollbar-width: none;
}

.app-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 1.2rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.tab-btn i {
    font-size: 1.1rem;
}

.tab-btn:hover {
    color: var(--text-color);
    background: rgba(108, 92, 231, 0.15);
}

.tab-btn.active {
    color: var(--primary-color);
    background: rgba(108, 92, 231, 0.2);
    border-bottom-color: var(--primary-color);
}

/* Tab Content */
.tab-content {
    min-height: 400px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.tab-pane.active {
    display: block;
}

.content-section {
    background: rgba(30, 30, 47, 0.6);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(108, 92, 231, 0.2);
}

.content-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.content-section h2 i {
    color: var(--primary-color);
}

.content-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.developer-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.developer-info p {
    margin: 0;
}

.coming-soon {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
    font-style: italic;
}

.error-message {
    text-align: center;
    padding: 2rem;
    color: #ff6b6b;
}

/* Batches Grid in Detail Page */
.batches-grid-detail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .batches-grid-detail {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .batches-grid-detail {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.batch-card-detail {
    background: rgba(30, 30, 47, 0.6);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(108, 92, 231, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.batch-card-detail:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.4);
}

.batch-image-detail {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* Favorite Button */
.favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.favorite-btn i {
    color: #636e72;
    font-size: 20px;
    transition: all 0.3s ease;
}

.favorite-btn:hover {
    background: white;
    transform: scale(1.15);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.favorite-btn:hover i {
    color: #ff6b6b;
}

.favorite-btn.active {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.favorite-btn.active i {
    color: white;
    animation: heartBeat 0.3s ease;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.batch-image-detail::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(0, 206, 201, 0.2));
    opacity: 0;
    transition: opacity 0.3s;
}

.batch-card-detail:hover .batch-image-detail::before {
    opacity: 1;
}

.batch-image-detail::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    transition: all 0.3s;
}

.batch-card-detail:hover .batch-image-detail::after {
    background: linear-gradient(to bottom, rgba(108, 92, 231, 0.2) 0%, rgba(108, 92, 231, 0.9) 100%);
}

.batch-info-detail {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1rem;
}

.batch-info-detail h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.batch-btn-detail {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
    margin-top: auto;
}

.batch-btn-detail i {
    font-size: 1.1rem;
}

.batch-btn-detail:hover {
    background: linear-gradient(135deg, #5f4fd1, #00b5ad);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(108, 92, 231, 0.5);
}

.batch-btn-detail:active {
    transform: translateY(-1px);
}

.batches-loading {
    text-align: center;
    padding: 3rem;
}

.batches-loading p {
    margin-top: 1rem;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .app-banner {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .app-banner-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .app-banner-icon img {
        width: 80px;
        height: 80px;
    }

    .app-banner-info h1 {
        font-size: 1.5rem;
    }

    .app-banner-meta {
        justify-content: center;
        font-size: 0.85rem;
    }

    .app-banner-actions {
        width: 100%;
    }

    .btn-large {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Tabs mobile styling */
    .app-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        flex-shrink: 0;
    }
    
    .tab-btn span {
        display: none;
    }
    
    .tab-btn i {
        font-size: 1.3rem;
    }

}

/* Batches Header */
.batches-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.batches-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.batches-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Batches Controls */
.batches-controls {
    margin-bottom: 2rem;
}

.search-box-batches {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-box-batches i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.search-box-batches input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.search-box-batches input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(108, 92, 231, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.search-box-batches input::placeholder {
    color: var(--text-secondary);
}

.filter-buttons-batches {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.filter-btn-batch {
    padding: 0.7rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 10px;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.filter-btn-batch:hover {
    background: rgba(108, 92, 231, 0.2);
    border-color: var(--primary-color);
}

.filter-btn-batch.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 15px rgba(108, 92, 231, 0.5);
}

/* Pagination */
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 1.5rem;
}

.pagination-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(108, 92, 231, 0.2);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    color: var(--text-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-info {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.05rem;
}

.no-batches {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
    background: rgba(30, 30, 47, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(108, 92, 231, 0.2);
    margin: 2rem auto;
    max-width: 500px;
}

.no-batches i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
    display: block;
}

.no-batches p {
    font-size: 1.2rem;
    margin: 0;
}

/* Loading Spinner */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(108, 92, 231, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .batches-header h2 {
        font-size: 1.8rem;
    }

    .batches-header p {
        font-size: 0.95rem;
    }

    .filter-buttons-batches {
        gap: 0.5rem;
    }

    .filter-btn-batch {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .pagination-controls {
        flex-direction: column;
        gap: 1rem;
    }

    .pagination-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Better Loading Animations */
.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    min-height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.loading-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(30, 30, 47, 0.6);
    padding: 2rem 3rem;
    border-radius: 20px;
    border: 1px solid rgba(108, 92, 231, 0.3);
    backdrop-filter: blur(10px);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(108, 92, 231, 0.2);
    border-top-color: var(--primary-color);
    border-right-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    flex-shrink: 0;
}

.loading-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.loading-text h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
}

.loading-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
    animation: pulse-text 1.5s ease-in-out infinite;
}

@keyframes pulse-text {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Loading Dots Animation */
.loading-dots::after {
    content: '';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% {
        content: '';
    }
    40% {
        content: '.';
    }
    60% {
        content: '..';
    }
    80%, 100% {
        content: '...';
    }
}

/* Skeleton Loading for Cards */
.skeleton-card {
    background: rgba(30, 30, 47, 0.6);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(108, 92, 231, 0.2);
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.skeleton-icon {
    width: 60px;
    height: 60px;
    background: rgba(108, 92, 231, 0.2);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

.skeleton-text {
    height: 20px;
    background: rgba(108, 92, 231, 0.2);
    border-radius: 8px;
    margin-bottom: 1rem;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

.skeleton-text.short {
    width: 60%;
}

.skeleton-text.medium {
    width: 80%;
}

@keyframes skeleton-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes skeleton-shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Error State */
.error {
    text-align: center;
    padding: 3rem 2rem;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.error i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* Success State */
.success-message {
    text-align: center;
    padding: 2rem;
    color: var(--accent-color);
    background: rgba(0, 206, 201, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 206, 201, 0.3);
    margin-bottom: 2rem;
}

.success-message i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

/* Loading Icon */
.loading-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: icon-pulse 2s ease-in-out infinite;
}

.loading-icon i {
    font-size: 1.8rem;
    color: white;
}

@keyframes icon-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(108, 92, 231, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(108, 92, 231, 0.6);
    }
}

/* Responsive loading */
@media (max-width: 768px) {
    .loading-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .loading-icon {
        margin-bottom: 1rem;
    }
}

/* No Web Support Message */
.no-web-support-message {
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    background: rgba(30, 30, 47, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(108, 92, 231, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

.no-web-support-message i {
    font-size: 1.8rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .no-web-support-message {
        margin: 1.5rem 0;
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .no-web-support-message i {
        font-size: 1.5rem;
    }
    
    .no-web-support-message .message-content h3 {
        font-size: 1.3rem;
    }
}

/* App Icon Large (for no web support page) */
.app-icon-large {
    position: relative;
    flex-shrink: 0;
}

.app-icon-large img {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    border: 3px solid rgba(108, 92, 231, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: white;
    padding: 8px;
}

.app-icon-large .popular-badge,
.app-icon-large .new-badge {
    position: absolute;
    top: -8px;
    right: -8px;
}

/* App Banner Info Large */
.app-banner-info {
    flex: 1;
}

.app-title-large {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.app-subtitle {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.app-meta-large {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.app-meta-large span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.app-meta-large i {
    color: var(--primary-color);
}

/* Download Button Large */
.app-banner-action {
    flex-shrink: 0;
}

.download-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(108, 92, 231, 0.4);
}

.download-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.6);
}

.download-btn-large i {
    font-size: 1.2rem;
}

/* Mobile responsive for large banner */
@media (max-width: 768px) {
    .app-icon-large img {
        width: 100px;
        height: 100px;
    }
    
    .app-title-large {
        font-size: 1.5rem;
    }
    
    .app-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .download-btn-large {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

/* Stats Section */
.stats-section {
    padding: 4rem 2rem;
    background: rgba(15, 15, 25, 0.8);
}

.stats-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.stats-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.stats-actions .btn i:last-child {
    margin-left: 0.25rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.partners-section {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(30, 30, 47, 0.4);
    border-radius: 20px;
    border: 1px solid rgba(108, 92, 231, 0.2);
}

.partners-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.partners-section h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.partners-section p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .stats-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .stats-actions .btn {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .partners-section h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat-card {
    background: rgba(30, 30, 47, 0.6);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(108, 92, 231, 0.4);
    background: rgba(30, 30, 47, 0.8);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 5px 20px rgba(108, 92, 231, 0.5);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

@media (max-width: 968px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

/* Announcement Dialog Styles */
.announcement-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
    padding: 20px;
}

.announcement-dialog {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: slideUp 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.announcement-close:hover {
    background: rgba(255, 59, 48, 0.8);
    transform: rotate(90deg);
}

.announcement-image {
    width: 100%;
    height: auto;
    border-radius: 20px 20px 0 0;
    display: block;
}

.announcement-content {
    padding: 30px;
}

.announcement-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.announcement-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0 0 25px 0;
    white-space: pre-wrap;
}

.announcement-button {
    display: inline-block;
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.announcement-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .announcement-dialog {
        max-width: 95%;
        margin: 10px;
    }
    
    .announcement-content {
        padding: 20px;
    }
    
    .announcement-title {
        font-size: 20px;
    }
    
    .announcement-description {
        font-size: 14px;
    }
}

/* Drawer Styles */
.drawer-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    margin-right: 5px;
    transition: all 0.3s ease;
}

.drawer-toggle:hover {
    color: #667eea;
    transform: scale(1.1);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    z-index: 9999;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.drawer.active {
    left: 0;
}

.drawer-header {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.drawer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.drawer-logo span {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.drawer-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.drawer-close:hover {
    background: rgba(255, 59, 48, 0.8);
    transform: rotate(90deg);
}

.drawer-content {
    flex: 1;
    padding: 20px 0;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.drawer-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-left-color: #667eea;
}

.drawer-link i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.drawer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 25px;
}

.drawer-social {
    padding: 0 25px;
}

.drawer-social h3 {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.drawer-social-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.drawer-social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.drawer-social-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transform: translateX(5px);
}

.drawer-social-link i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.drawer-footer {
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.drawer-footer p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 5px 0;
}

.drawer-footer strong {
    color: #667eea;
}

/* Drawer toggle is always visible */

/* Smooth scrollbar for drawer */
.drawer::-webkit-scrollbar {
    width: 6px;
}

.drawer::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.drawer::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.drawer::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}
