.container-home {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}


/* About Section */
.about-section {
    padding: 8rem 0;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
}

.about-img {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 1;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-img:hover {
    transform: scale(1.05) rotate(2deg);
}

.about-img:nth-child(2) {
    margin-top: 3rem;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img:hover img {
    transform: scale(1.1);
}

/* .section-subtitle {
    color: #7104ed;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
    padding-left: 2.5rem;
} */

/* .section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #7104ed, #ec4899);
} */

.about-text h3 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1a1a2e, #7104ed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text > p {
    color: #64748b;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    transition: all 0.4s ease;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.feature-icon-check {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.feature-text h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.feature-text p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Events Section */
.events-section {
    padding: 4rem 0;
    /* background: rgba(255, 255, 255, 0.5); */
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title .subtitle {
    color: #7104ed;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.section-title h3 {
    font-size: 2.75rem;
    color: #7104ed;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(350px, 1fr));
    gap: 2rem;
}

.event-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
}

.event-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-card:hover .event-img img {
    transform: scale(1.15);
}





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

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

.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.event-card:nth-child(1) { animation-delay: 0.1s; }
.event-card:nth-child(2) { animation-delay: 0.2s; }
.event-card:nth-child(3) { animation-delay: 0.3s; }
.event-card:nth-child(4) { animation-delay: 0.4s; }

/* Floating background elements */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

.bg-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #7104ed, #ec4899);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.bg-shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ec4899, #f59e0b);
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text h3 {
        font-size: 2rem;
    }

    .events-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.features-section {
    position: relative;
    padding: 140px 20px;
    /* background: linear-gradient(180deg, #fafbff 0%, #f0f4ff 50%, #fafbff 100%); */
    overflow: hidden;
}

.geometric-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphing 15s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.12));
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08), rgba(251, 146, 60, 0.12));
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(99, 102, 241, 0.12));
    top: 40%;
    left: 10%;
    animation-delay: -10s;
}

@keyframes morphing {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
        transform: translate(50px, -50px) rotate(90deg);
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: translate(0, 50px) rotate(180deg);
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
        transform: translate(-50px, 0) rotate(270deg);
    }
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.container-home {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 90px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #7104ed, #8b5cf6);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    animation: float-badge 3s infinite ease-in-out;
}

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

/* .section-label::before {
    content: '✦';
    font-size: 1rem;
}

.section-title {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1e293b 0%, #7104ed 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    letter-spacing: -3px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
} */

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-card {
    position: relative;
    background: white;
    border-radius: 32px;
    padding: 60px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.08),
        0 10px 40px rgba(99, 102, 241, 0.08);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
    rgba(99, 102, 241, 0.05) 0%,
    rgba(139, 92, 246, 0.05) 50%,
        rgba(236, 72, 153, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.feature-card:hover::before {
    opacity: 1;
}

.spotlight {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.feature-card:hover .spotlight {
    transform: translate(-50%, -50%) scale(1);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.2),
        0 30px 80px rgba(99, 102, 241, 0.25);
}

.feature-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #7104ed, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
    transition: all 0.5s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.4);
}

.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(30deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(30deg); }
}

.feature-icon-wrapper svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.feature-number {
    font-size: 6rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: all 0.5s ease;
}

.feature-card:hover .feature-number {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.1);
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-badge {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #7104ed;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-badge {
    background: linear-gradient(135deg, #7104ed, #8b5cf6);
    color: white;
    border-color: transparent;
    transform: translateX(8px);
}

.feature-card h6 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.feature-card:hover h6 {
    color: #7104ed;
}

.feature-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 32px;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: #475569;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    color: #7104ed;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.feature-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #7104ed, #8b5cf6);
    transition: width 0.4s ease;
    z-index: -1;
}

.feature-card:hover .feature-link {
    color: white;
    border-color: transparent;
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.feature-card:hover .feature-link::before {
    width: 100%;
}

.feature-link .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(99, 102, 241, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-link .arrow {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(-45deg) scale(1.1);
}

/* Staggered animations */
.feature-card:nth-child(1) {
    animation: slideInUp 0.8s ease forwards 0.1s;
    opacity: 0;
}

.feature-card:nth-child(2) {
    animation: slideInUp 0.8s ease forwards 0.2s;
    opacity: 0;
}

.feature-card:nth-child(3) {
    animation: slideInUp 0.8s ease forwards 0.3s;
    opacity: 0;
}

.feature-card:nth-child(4) {
    animation: slideInUp 0.8s ease forwards 0.4s;
    opacity: 0;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Decorative elements */
.corner-accent {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 0 32px 0 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), transparent);
    top: 0;
    right: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.feature-card:hover .corner-accent {
    opacity: 0;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 3rem;
    }

    .feature-card {
        padding: 50px;
    }
}

@media (max-width: 640px) {
    .features-section {
        padding: 100px 20px;
    }

    .section-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .section-subtitle {
        font-size: 1.05rem;
    }

    .feature-card {
        padding: 40px 30px;
    }

    .feature-card h6 {
        font-size: 1.5rem;
    }

    .feature-number {
        font-size: 4rem;
    }

    .feature-icon-wrapper {
        width: 64px;
        height: 64px;
    }

    .feature-icon-wrapper svg {
        width: 32px;
        height: 32px;
    }
}

.blog-section {
    margin-bottom: 100px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-15px) rotate(1deg);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.blog-image {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.15) rotate(2deg);
}

.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(240, 147, 251, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.blog-content {
    padding: 35px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #888;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-title {
    font-size: 24px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: #667eea;
}

.blog-excerpt {
    font-size: 15px;
    color: #636e72;
    line-height: 1.7;
    margin-bottom: 25px;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.blog-card:hover .author-avatar {
    transform: scale(1.1) rotate(360deg);
}

.author-info {
    padding-top: 25px;
}

.author-info h4 {
    font-size: 16px;
    color: #2d3436;
    margin-bottom: 3px;
}

.author-info p {
    font-size: 13px;
    color: #999;
}

.blog-read-more {
    position: absolute;
    /* bottom: 35px; */
    right: 35px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(20px);
}

.blog-card:hover .blog-read-more {
    opacity: 1;
    transform: translateX(0);
}

/* ===== EVENT CARDS SECTION ===== */
.event-section {
    margin-top: 80px;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.event-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid transparent;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #f093fb, #f5576c, #4facfe, #00f2fe);
    background-size: 300% 100%;
    animation: gradientSlide 3s linear infinite;
}

@keyframes gradientSlide {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 300% 0%;
    }
}

.event-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.event-date-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 70px;
    height: 60px;
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(67, 233, 123, 0.4);
    z-index: 2;
    transition: all 0.3s ease;
}

.event-card:hover .event-date-badge {
    transform: rotate(5deg) scale(1.1);
}

.event-day {
    font-size: 15px;
    font-weight: 500;
    color: white;
    line-height: 1;
}

.event-month {
    font-size: 14px;
    font-weight: 500;
    color: white;
    letter-spacing: 1px;
}

.event-content {
    padding: 40px 35px;
    padding-right: 30px;
}

.event-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: #667eea;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.event-title {
    font-size: 22px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.event-card:hover .event-title {
    color: #667eea;
    transform: translateX(5px);
}

.event-description {
    font-size: 15px;
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 25px;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.event-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #555;
}

.event-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.event-footer {
    padding: 0 35px 35px;
    display: flex;
    gap: 15px;
}

.event-btn {
    flex: 1;
    padding: 14px 0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid;
}

.event-btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
}

.event-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    color: white !important;
}

.event-btn-secondary {
    background: transparent;
    color: #667eea;
    border-color: #667eea;
}

.event-btn-secondary:hover {
    background: #667eea;
    color: white;
}

.event-status {
    position: absolute;
    top: 30px;
    left: 30px;
    background: linear-gradient(135deg, #fa709a, #fee140);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .blog-grid,
    .event-grid {
        grid-template-columns: 1fr;
    }

    .event-content {
        padding-right: 35px;
    }

    .event-date-badge {
        position: relative;
        top: 0;
        right: 0;
        margin: 25px auto 0;
    }
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #0f0f0f;
    border: 2px solid rgba(102, 126, 234, 0.1);
}

.image-card:hover {
    transform: translateY(-16px) scale(1.02);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.3);
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.image-card:hover .image-wrapper img {
    transform: scale(1.15) rotate(2deg);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-card:hover .image-overlay {
    opacity: 1;
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.card-content {
    padding: 30px;
    position: relative;
}

.card-category {
    display: inline-block;
    color: #667eea;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.card-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.image-card:hover .card-title {
    color: #667eea;
}

.card-description {
    color: #999;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 19px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 16px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.author-date {
    color: #666;
    font-size: 12px;
}

.card-stats {
    display: flex;
    gap: 20px;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #888;
    font-size: 14px;
    transition: all 0.3s ease;
}

.image-card:hover .stat-item {
    color: #667eea;
}

.stat-icon {
    font-size: 18px;
}

.view-button {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    padding: 14px 36px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    z-index: 3;
}

.image-card:hover .view-button {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.view-button:hover {
    transform: translateX(-50%) translateY(-4px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .header h1 {
        font-size: 36px;
    }

    .cards-container {
        grid-template-columns: 1fr;
    }
}
