@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

body.home-awesome-body {
    font-family: 'Outfit', sans-serif;
    background-color: #0b0f19; /* Deep dark blue */
    color: #e2e8f0;
}

body.home-awesome-body h1, 
body.home-awesome-body h2, 
body.home-awesome-body h3, 
body.home-awesome-body h4 {
    color: #f8fafc;
    font-family: 'Outfit', sans-serif;
}

/* Override existing container style from style.css for homepage */
body.home-awesome-body .container {
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}

body.home-awesome-body .navbar {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Hero Section */
.hero-awesome {
    position: relative;
    padding: 100px 0;
    background: radial-gradient(circle at top right, #1e293b, #0b0f19 60%);
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-awesome::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 150%;
    background: radial-gradient(circle, rgba(56,189,248,0.15) 0%, rgba(139,92,246,0.1) 30%, transparent 70%);
    z-index: 0;
}

.hero-awesome .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.text-gradient {
    background: linear-gradient(135deg, #38bdf8, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #94a3b8;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
}

.btn-awesome {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn-primary-awesome {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary-awesome:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(139, 92, 246, 0.5);
    color: #ffffff;
}

.btn-secondary-awesome {
    background: rgba(255, 255, 255, 0.05);
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary-awesome:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    color: #f8fafc;
}

.hero-image-container {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.hero-floating-img {
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-floating-img:hover {
    transform: perspective(1000px) rotateY(-5deg) translateY(-10px);
}

/* Category Grid */
.categories-section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: #f8fafc;
    text-align: center;
}

.awesome-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.awesome-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.awesome-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.awesome-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    color: white;
}

.awesome-card:hover .card-glass {
    padding-bottom: 35px;
}

.card-glass {
    position: relative;
    z-index: 2;
    padding: 25px;
    transition: padding 0.3s ease;
}

.awesome-card h3 {
    margin: 0 0 8px;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.awesome-card p {
    margin: 0;
    color: #cbd5e1;
    font-size: 1rem;
    opacity: 0.9;
}

/* Background gradients for cards */
.pokemon-bg { background: linear-gradient(135deg, #ef4444, #f59e0b); }
.onepiece-bg { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.baseball-bg { background: linear-gradient(135deg, #10b981, #3b82f6); }
.starwars-bg { background: linear-gradient(135deg, #6366f1, #a855f7); }
.f1-bg { background: linear-gradient(135deg, #f43f5e, #db2777); }

/* SEO Content Section */
.seo-content-section {
    padding: 80px 0;
    background-color: #0f172a;
    position: relative;
}

.seo-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

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

.seo-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s ease;
}

.seo-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.1);
    background: rgba(30, 41, 59, 0.6);
}

.seo-card.full-width {
    grid-column: 1 / -1;
}

.seo-card h2 {
    color: #38bdf8;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.seo-card h3 {
    color: #818cf8;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.seo-card p, .seo-card li {
    line-height: 1.8;
    font-size: 1.05rem;
    color: #94a3b8;
    margin-bottom: 15px;
}

.seo-card ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.seo-card a {
    color: #38bdf8;
    text-decoration: none;
    transition: color 0.2s;
}

.seo-card a:hover {
    color: #7dd3fc;
    text-decoration: underline;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Make it responsive */
@media (max-width: 991px) {
    .hero-title { font-size: 3rem; }
    .hero-awesome { text-align: center; padding: 60px 0; }
    .hero-content { margin-bottom: 40px; }
    .hero-cta { display: flex; flex-direction: column; gap: 15px; align-items: center; }
    .btn-awesome { width: 100%; max-width: 300px; margin: 0 !important; }
}
