* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: linear-gradient(135deg, #eaf8fb 0%, #b8e6f0 50%, #6db3d1 100%);
min-height: 100vh;
color: #022c3b;
line-height: 1.6;
position: relative;
}

body::before {
content: '';
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: 
    radial-gradient(circle at 20% 30%, rgba(255, 122, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(2, 44, 59, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 60% 20%, rgba(234, 248, 251, 0.3) 0%, transparent 50%);
pointer-events: none;
z-index: -1;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #022c3b;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(2, 44, 59, 0.2);
    letter-spacing: -0.02em;
}

.header p {
    font-size: 1.2rem;
    color: rgba(2, 44, 59, 0.8);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.resource-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(2, 44, 59, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7a00, #ff9500);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(2, 44, 59, 0.12);
    background: rgba(255, 255, 255, 0.95);
}

.resource-card:hover::before {
    transform: scaleX(1);
}

.resource-card h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #022c3b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.resource-card h2::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #ff7a00, #ff9500);
    border-radius: 50%;
    flex-shrink: 0;
}

.resource-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-item {
    background: rgba(248, 250, 252, 0.8);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.2s ease;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.resource-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(4px);
    border-color: rgba(255, 122, 0, 0.2);
}

.resource-link {
    text-decoration: none;
    color: #022c3b;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
    position: relative;
}

.resource-link:hover {
    color: #ff7a00;
}

.resource-link::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-8px);
    opacity: 0;
    transition: all 0.2s ease;
    color: #ff7a00;
    font-weight: 400;
}

.resource-item:hover .resource-link::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.resource-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-left: 0;
}


@media (max-width: 768px) {
    .container {
    padding: 1rem;
    }

    .header h1 {
    font-size: 2.5rem;
    }

    .header p {
    font-size: 1rem;
    }

    .resources-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    }

    .resource-card {
    padding: 2rem;
    }

    .resource-card h2 {
    font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header h1 {
    font-size: 2rem;
    }

    .resource-card {
    padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
    opacity: 0;
    transform: translateY(30px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

.resource-card {
    animation: fadeInUp 0.6s ease forwards;
}

.resource-card:nth-child(1) { animation-delay: 0.1s; }
.resource-card:nth-child(2) { animation-delay: 0.2s; }
.resource-card:nth-child(3) { animation-delay: 0.3s; }
.resource-card:nth-child(4) { animation-delay: 0.4s; }
.resource-card:nth-child(5) { animation-delay: 0.5s; }
.resource-card:nth-child(6) { animation-delay: 0.6s; }