:root {
    --indie-blue: #4A90E2;
    --sleek-gray: #7F8C8D;
    --vibrant-coral: #FF6F61;
    --soft-mint: #A8E6CF;
    --warm-beige: #F5E1A4;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow-x: hidden;
}

.mono-font {
    font-family: 'JetBrains Mono', monospace;
}

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

.navbar-brand {
    font-weight: 700;
    color: var(--indie-blue) !important;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    margin: 0 15px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--indie-blue) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--vibrant-coral);
    transition: all 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--soft-mint) 0%, var(--indie-blue) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 111, 97, 0.15);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn-primary-custom {
    background: var(--vibrant-coral);
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 111, 97, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 111, 97, 0.4);
    color: white;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid white;
    padding: 13px 40px;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-left: 20px;
}

.btn-secondary-custom:hover {
    background: white;
    color: var(--indie-blue);
    transform: translateY(-3px);
}

/* Apps Section */
.apps-section {
    padding: 50px 0;
    background: white;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--indie-blue);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--sleek-gray);
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

.app-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(74, 144, 226, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
    height: 100%;
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--vibrant-coral), var(--indie-blue));
}

.app-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.app-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    float: right;
}

.app-card:hover .app-icon {
    transform: scale(1.05);
}

.app-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--indie-blue);
    margin-bottom: 1rem;
}

.app-description {
    color: var(--sleek-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.app-quote {
    background: rgba(74, 144, 226, 0.05);
    border-left: 4px solid var(--indie-blue);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    font-style: italic;
    color: var(--sleek-gray);
}

.app-features {
    margin: 2rem 0;
}

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

.app-features li {
    color: var(--sleek-gray);
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
}

.app-features li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-screenshot{
    padding-top: 2rem;
}

.screenshot-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;

}

.btn-app-primary {
    background: var(--vibrant-coral);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 111, 97, 0.3);
}

.btn-app-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 111, 97, 0.4);
    color: white;
}

.btn-app-secondary {
    background: transparent;
    border: 2px solid var(--indie-blue);
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 50px;
    color: var(--indie-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-app-secondary:hover {
    background: var(--indie-blue);
    color: white;
    transform: translateY(-2px);
}

.app-status {
    display: inline-flex;
    align-items: center;
    background: var(--soft-mint);
    color: #2d5a3d;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.app-status::before {
    content: '●';
    color: #10b981;
    margin-right: 0.5rem;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--soft-mint) 100%);
    padding: 100px 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--indie-blue);
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.2rem;
    color: #000;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Examples Section */
.examples-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(74, 144, 226, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(74, 144, 226, 0.1);
    animation: slideDown 0.3s ease-out;
}

.examples-title {
    font-weight: 600;
    color: var(--indie-blue);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.examples-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.example-item {
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--sleek-gray);
    font-style: italic;
    border: 1px solid rgba(74, 144, 226, 0.1);
    transition: all 0.2s ease;
    cursor: pointer;
}

.example-item:hover {
    background: var(--soft-mint);
    border-color: var(--indie-blue);
    transform: translateY(-2px);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 40px;
}

.footer-section {
    padding-left: 1rem;
    padding-right: 1rem;
}

.footer-section h5 {
    color: var(--soft-mint);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--vibrant-coral);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--vibrant-coral);
    transform: translateY(-3px);
}

.social-icons a span {
    font-size: 1rem;
}

.social-icons i {
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .btn-secondary-custom {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .app-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .footer-section {
        margin-top: 2rem;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}