/* ========================================
   Home Page - Dark Theme
   ======================================== */

body {
    background: #1f1f1f;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px;
}

.home-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

/* Paw Section */
.paw-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: fadeInDown 1s ease-out;
}

.paw-icon {
    font-size: 20rem;
    color: #0a84ff;
    display: inline-block;
    transform-style: preserve-3d;
    will-change: transform, color, filter;
    animation: pulse 2s ease-in-out infinite;
}

.app-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-transform: lowercase;
    letter-spacing: 2px;
}

/* Cards Container */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1000px;
    animation: fadeInUp 1s ease-out;
}

/* Home Cards */
.home-card {
    background: #1a1a1a;
    border: 2px solid #38383a;
    border-radius: 12px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.home-card:hover {
    background: #2c2c2e;
    border-color: #0a84ff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 132, 255, 0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: #2c2c2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.home-card:hover .card-icon {
    background: #0a84ff;
    transform: scale(1.1);
}

.card-icon i {
    font-size: 40px;
    color: #0a84ff;
    transition: color 0.3s ease;
}

.home-card:hover .card-icon i {
    color: #ffffff;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}

.card-description {
    font-size: 1rem;
    color: #a0a0a0;
    margin: 0;
    text-align: center;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-5rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        color: #6a6a6a;
        filter: drop-shadow(0 0 0 #6a6a6a);
    }
    50% {
        transform: perspective(900px) rotateX(0deg) rotateY(0deg) scale(1);
        color: #0a84ff;
        filter: drop-shadow(0 10px 22px rgba(10, 132, 255, 0.4));
    }
}

/* Responsive */
@media (max-width: 768px) {
    .paw-icon {
        font-size: 10rem;
    }
    
    .app-title {
        font-size: 2rem;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .home-card {
        padding: 30px 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 30px;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
}
