/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo span {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #cccccc;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #ffffff;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Sections */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    position: relative;
}

.section:nth-child(even) {
    background: #111111;
}

/* Home Section */
#home {
    background: #000000;
    color: white;
    text-align: center;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #000000;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #000000;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.btn-outline:hover {
    background: #000000;
    color: white;
}

.btn-outline-white {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-outline-white:hover {
    background: #ffffff;
    color: #000000;
}

.clickable-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clickable-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 150, 0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-header p {
    font-size: 1.25rem;
    color: #cccccc;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #cccccc;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

.profile-card {
    background: #111111;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    text-align: center;
    border: 1px solid #333333;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.profile-avatar i {
    font-size: 2.5rem;
    color: #000000;
}

.profile-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.profile-card p {
    color: #cccccc;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: #111111;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333333;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    height: 200px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-icon {
    width: 80px;
    height: 80px;
    background: #000000;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.app-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.project-content p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.project-tech span {
    background: #333333;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #cccccc;
}

.project-links {
    display: flex;
    gap: 1rem;
}

/* Skills Section */
.skills-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.skills-category h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.skill-item {
    background: #111111;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #333333;
}

.skill-item:hover {
    transform: translateY(-5px);
}

.skill-item i {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: block;
}

.skill-item span {
    font-weight: 500;
    color: #ffffff;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.contact-info p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-method i {
    font-size: 1.5rem;
    color: #ffffff;
    width: 30px;
}

.contact-method h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.contact-method p {
    color: #cccccc;
    margin: 0;
}

.contact-method a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #cccccc;
    text-decoration: underline;
}

.contact-form {
    background: #111111;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    border: 1px solid #333333;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #333333;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: #000000;
    color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #333333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #cccccc;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .project-card {
        margin: 0 10px;
    }
}

/* Smooth scrolling for Safari */
@supports (-webkit-overflow-scrolling: touch) {
    html {
        scroll-behavior: auto;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
} 

/* Lens Tracker Section Styles */
.lens-tracker-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

.lens-tracker-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 255, 150, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 200, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Featured App Card */
.featured-app {
    border: 2px solid rgba(0, 255, 150, 0.3);
    background: linear-gradient(135deg, rgba(0, 255, 150, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.featured-app::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 150, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #00ff96, #00c8ff);
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.lens-tracker-icon {
    background: linear-gradient(135deg, #00ff96, #00c8ff);
    color: #000;
}

.app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.app-features span {
    background: rgba(0, 255, 150, 0.1);
    color: #00ff96;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.app-features i {
    font-size: 0.7rem;
}

/* Lens Tracker Content */
.lens-tracker-content {
    position: relative;
    z-index: 1;
}

.app-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
}

.app-info h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00ff96, #00c8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-summary {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #cccccc;
}

.app-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #00ff96;
    margin-bottom: 5px;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: #888;
}

.app-store-badge {
    margin-top: 30px;
}

.store-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #00ff96, #00c8ff);
    color: #000;
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.store-link:hover {
    transform: translateY(-2px);
}

/* Screenshot Grid */
.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.screenshot-item {
    perspective: 1000px;
}

.phone-frame {
    width: 100%;
    max-width: 150px;
    height: 300px;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.screenshot-item:hover .phone-frame {
    transform: rotateY(-5deg) rotateX(2deg) scale(1.05);
}

.screen-content {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.app-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #888;
}

.lens-tracking {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex: 1;
}

.progress-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.progress-circle.left {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border: 3px solid rgba(255, 107, 53, 0.3);
}

.progress-circle.right {
    background: linear-gradient(135deg, #00ff96, #00c8ff);
    border: 3px solid rgba(0, 255, 150, 0.3);
}

.progress-circle .time-left {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

.progress-circle .label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

.quick-actions {
    display: flex;
    justify-content: center;
}

.action-btn {
    background: linear-gradient(135deg, #00ff96, #00c8ff);
    color: #000;
    padding: 10px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Stats Screen */
.app-screen.stats {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.stats-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex: 1;
}

.stat-card {
    text-align: center;
    color: #fff;
}

.stat-card i {
    font-size: 1.5rem;
    color: #00ff96;
    margin-bottom: 10px;
}

.stat-card .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.stat-card .label {
    font-size: 0.7rem;
    color: #888;
}

/* Widget Screen */
.app-screen.widget {
    background: linear-gradient(135deg, #00ff96, #00c8ff);
    justify-content: center;
    align-items: center;
}

.widget-content {
    text-align: center;
    color: #000;
}

.widget-circles {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
}

.widget-circle {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
}

.widget-circle span:first-child {
    font-size: 0.9rem;
    font-weight: 600;
}

.widget-circle span:last-child {
    font-size: 0.6rem;
}

.widget-title {
    font-size: 0.8rem;
    font-weight: 600;
}

/* Features Grid */
.app-features-detailed {
    margin-bottom: 60px;
}

.app-features-detailed h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 255, 150, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ff96, #00c8ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.feature-content p {
    color: #cccccc;
    line-height: 1.6;
}

/* Technologies Grid */
.app-technologies {
    margin-bottom: 60px;
}

.app-technologies h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #fff;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.tech-item {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 255, 150, 0.1);
}

.tech-item i {
    font-size: 2.5rem;
    color: #00ff96;
    margin-bottom: 15px;
}

.tech-item span {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.tech-item p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design for Lens Tracker */
@media (max-width: 768px) {
    .app-overview {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .app-info h3 {
        font-size: 2rem;
    }
    
    .app-stats {
        justify-content: center;
    }
    
    .screenshot-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .phone-frame {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .app-features {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .screenshot-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .phone-frame {
        max-width: 250px;
    }
}

/* Lens Tracker Page Specific Styles */
.lens-tracker-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.lens-tracker-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 255, 150, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 200, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.app-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #00ff96, #00c8ff);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 3rem;
    box-shadow: 0 20px 40px rgba(0, 255, 150, 0.3);
}

.app-info h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #00ff96, #00c8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-tagline {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 20px;
}

.app-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.app-meta span {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #fff;
}

.rating {
    color: #ffd700 !important;
}

.users {
    color: #00ff96 !important;
}

.category {
    color: #00c8ff !important;
}

.languages {
    color: #ff6b35 !important;
}

.app-description {
    flex: 1;
}

.app-description h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.app-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 20px;
}

.download-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
}

.download-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.download-content p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu a.active {
    color: #00ff96;
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #00ff96;
}

/* Responsive Design for Lens Tracker Page */
@media (max-width: 768px) {
    .app-header {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .app-icon-large {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .app-info h1 {
        font-size: 2.5rem;
    }
    
    .app-meta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Localization Section Styles */
.localization-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

.localization-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 255, 150, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.localization-content {
    position: relative;
    z-index: 1;
}

.languages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.language-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.language-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 107, 53, 0.1);
}

.language-flag {
    font-size: 3rem;
    margin-bottom: 15px;
}

.language-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.language-item p {
    color: #cccccc;
    line-height: 1.6;
}

.localization-features {
    text-align: center;
}

.localization-features h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
}

.localization-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.localization-feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.localization-feature:hover {
    transform: translateY(-3px);
    background: rgba(255, 107, 53, 0.1);
}

.localization-feature i {
    font-size: 1.5rem;
    color: #ff6b35;
}

.localization-feature span {
    color: #fff;
    font-weight: 500;
}

/* Responsive Design for Localization */
@media (max-width: 768px) {
    .languages-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .localization-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .language-flag {
        font-size: 2.5rem;
    }
}

/* Support Page Styles */
.support-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.support-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 255, 150, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 200, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.support-header {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.support-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00ff96, #00c8ff);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 255, 150, 0.3);
}

.support-info h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #00ff96, #00c8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-tagline {
    font-size: 1.3rem;
    color: #cccccc;
}

.support-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-section,
.faq-section,
.tips-section,
.app-links {
    margin-bottom: 60px;
}

.contact-section h2,
.faq-section h2,
.tips-section h2,
.app-links h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-section h2 i,
.faq-section h2 i,
.tips-section h2 i,
.app-links h2 i {
    color: #00ff96;
}

.contact-section p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 20px;
}

.email-box {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.support-email {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #00ff96, #00c8ff);
    color: #000;
    padding: 20px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 150, 0.3);
}

.support-email:hover {
    transform: translateY(-3px);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 255, 150, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-question i {
    color: #00ff96;
    font-size: 1.2rem;
}

.faq-question h4 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
}

.faq-item p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.tip-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 255, 150, 0.1);
}

.tip-item i {
    font-size: 2rem;
    color: #00ff96;
    margin-bottom: 15px;
}

.tip-item p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.app-links-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Support Page */
@media (max-width: 768px) {
    .support-header {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .support-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .support-info h1 {
        font-size: 2.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .app-links-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .support-email {
        font-size: 1rem;
        padding: 15px 25px;
    }
}