@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        #slider {
            transition: opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
            opacity: 1;
        }

        
        :root {
            --main-color: #BA68C8;
        }
        
        body {
            background-color: #121212;
            color: #ffffff;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            padding: 30px 0;
            background: linear-gradient(135deg, #1a1a1a 0%, #121212 100%);
            border-bottom: 1px solid #1e1e1e;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
		
		.logo-link {
		  text-decoration: none;
		  color: inherit;
		  display: inline-block; /* or block, depending on layout */
		}
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-svg {
            width: 50px;
            height: 50px;
            flex-shrink: 0;
        }
        
        .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffffff;
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
        }
        
        .nav-links a {
            color: #b0b0b0;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--main-color);
        }
        
        .tagline {
            font-size: 1.2rem;
            color: #b0b0b0;
            max-width: 600px;
            margin: 10px auto 0;
            text-align: center;
        }
        
        /* Hero Section */
        .hero {
            padding: 70px 0 100px 0;
            text-align: center;
        }
        
        .app-showcase {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 60px;
            flex-wrap: wrap;
            margin-top: 50px;
        }
        
        .screenshot-container {
            width: 100%;
            max-width: 400px;
            border-radius: 40px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
            background: #1a1a1a; /*#3a4245;1a1a1a;*/
            transition: transform 0.3s ease;
            padding: 35px 10px;
            border: 1px solid #2a2a2a;
            /*aspect-ratio: 9 / 19.5;   Android phone ratio */
        }

        .screenshot-container img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: inherit;
        }

        .screenshot-container:hover {
            transform: translateY(-5px);
        }
        
        .screenshot-placeholder {
            width: 100%;
            /*height: 100%;*/
            /*background: linear-gradient(45deg, #1a1a1a, #252525);*/
            display: flex;
            flex-direction: column;
            /*align-items: center;
            justify-content: center;*/
            color: #666;
            font-size: 18px;
            border-radius: 30px;
            overflow: hidden; /* IMPORTANT */
        }
        
        .screenshot-placeholder i {
            font-size: 48px;
            color: var(--main-color);
            /*margin-bottom: 15px;*/
        }
        
        .screenshot-instruction {
            font-size: 14px;
            color: var(--main-color);
            margin-top: 10px;
            max-width: 300px;
            text-align: center;
        }
        
        .hero-content {
            max-width: 500px;
            text-align: left;
        }
        
        .hero-title {
            font-size: 2.8rem;
            margin-bottom: 25px;
            background: linear-gradient(45deg, #ffffff, #e0e0e0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        
        .hero-description {
            font-size: 1.2rem;
            color: #b0b0b0;
            margin-bottom: 35px;
            line-height: 1.7;
        }
        
        .google-play-badge {
            display: inline-block;
            height: 60px;
            transition: all 0.3s ease;
        }
        
        .google-play-badge:hover {
            transform: translateY(-2px);
            filter: brightness(1.1);
        }
        
        /* Details Section */
        .details {
            padding: 100px 0;
            background: #1a1a1a;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: #ffffff;
            text-align: left;
        }
        
        .detail-content {
            max-width: 100%;
        }
        
        .detail-paragraph {
            margin-bottom: 50px;
            text-align: left;
        }
        
        .detail-paragraph h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #ffffff;
            font-weight: 600;
        }
        
        .detail-paragraph p {
            color: #b0b0b0;
            font-size: 1.15rem;
            line-height: 1.7;
            max-width: 800px;
        }
        
        /* Benefits Section */
        .benefits {
            padding: 100px 0;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .benefit-item {
            text-align: left;
            padding: 0;
        }
        
        .benefit-item a {
            color: var(--main-color);
            text-decoration: underline;
        }
        
        .benefit-icon {
            width: 60px;
            height: 60px;
            background: rgba(206, 147, 216, 0.1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: var(--main-color);
            font-size: 24px;
        }
        
        .benefit-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #ffffff;
            font-weight: 600;
        }
        
        .benefit-description {
            color: #b0b0b0;
            line-height: 1.6;
        }
        
        /* Download Section */
        .download-section {
            padding: 100px 0;
            background: #1a1a1a;
            text-align: left;
        }
        
        .download-badge {
            display: inline-block;
            height: 70px;
            transition: all 0.3s ease;
        }
        
        .download-badge:hover {
            transform: translateY(-2px);
            filter: brightness(1.1);
        }
        
        /* Footer */
        footer {
            background: #0a0a0a;
            padding: 50px 0 30px;
            border-top: 1px solid #1e1e1e;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }
        
        .footer-logo-svg {
            width: 40px;
            height: 40px;
        }
        
        .footer-logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
        }
        
        .footer-description {
            color: #b0b0b0;
            line-height: 1.6;
            max-width: 400px;
            text-align: left;
        }
        
        .footer-links h4 {
            color: #ffffff;
            margin-bottom: 20px;
            font-size: 1.1rem;
            font-weight: 600;
            text-align: left;
        }
        
        .footer-links a {
            display: block;
            color: #b0b0b0;
            text-decoration: none;
            margin-bottom: 10px;
            transition: color 0.3s ease;
            text-align: left;
        }
        
        .footer-links a:hover {
            color: var(--main-color);
        }
        
        .copyright {
            text-align: center;
            color: #666;
            padding-top: 30px;
            border-top: 1px solid #1e1e1e;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .nav-links {
                gap: 20px;
            }
            
            .app-showcase {
                flex-direction: column;
            }
            
            .hero-content {
                text-align: center;
            }
            
            .screenshot-container {
                max-width: 300px;
            }
            
            .section-title {
                text-align: center;
            }
            
            .detail-paragraph {
                text-align: center;
            }
            
            .detail-paragraph p {
                text-align: center;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .benefit-item {
                text-align: center;
            }
            
            .benefit-icon {
                margin-left: auto;
                margin-right: auto;
            }
            
            .download-section {
                text-align: center;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
            
            .footer-logo {
                justify-content: center;
            }
            
            .footer-description {
                text-align: center;
                margin: 0 auto;
            }
            
            .footer-links h4 {
                text-align: center;
            }
            
            .footer-links a {
                text-align: center;
            }
        }
