:root {
    --bg-gradient-1: #0f0c29;
    --bg-gradient-2: #302b63;
    --bg-gradient-3: #24243e;
    --accent-1: #FF3CAC;
    --accent-2: #784BA0;
    --accent-3: #2B86C5;
    --text-primary: #ffffff;
    --text-secondary: #b8c1ec;
    --text-tertiary: #8892b0;
    --card-bg: rgba(22, 28, 36, 0.8);
    --card-border: rgba(255, 255, 255, 0.1);
    --card-hover: rgba(255, 255, 255, 0.05);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-neon: 0 0 15px rgba(255, 60, 172, 0.5);
    --shadow-glow: 0 0 20px rgba(43, 134, 197, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, var(--bg-gradient-1), var(--bg-gradient-2), var(--bg-gradient-3));
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* Decorative Elements */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-1) 0%, rgba(255, 60, 172, 0) 70%);
    opacity: 0.3;
    filter: blur(60px);
    z-index: 0;
}

.circle-1 {
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
}

.circle-2 {
    bottom: 20%;
    left: 10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--accent-3) 0%, rgba(43, 134, 197, 0) 70%);
}

.circle-3 {
    top: 40%;
    left: 30%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--accent-2) 0%, rgba(120, 75, 160, 0) 70%);
}

/* Page Header */
.page-header {
    padding: 6rem 0 2rem;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--text-primary), var(--accent-1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.page-header p {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
}

/* Updates Content */
.updates-content {
    padding: 2rem 0 3rem;
    position: relative;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.update-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    transition: var(--transition);
    position: relative;
}

.update-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-3);
}

.update-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.update-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.update-card:hover .update-image img {
    transform: scale(1.05);
}

.update-content {
    padding: 1.2rem;
}

.update-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

.update-category {
    display: inline-block;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 0.85rem;
    font-weight: 600;
}

.update-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.update-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.read-more {
    color: var(--accent-1);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-size: 0.9rem;
}

.read-more:hover {
    color: var(--accent-3);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background: rgba(255, 60, 172, 0.1);
    color: var(--accent-1);
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Featured Update */
.featured-update {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.featured-update .update-image {
    height: 220px;
}

.featured-update .update-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-update .update-title {
    font-size: 1.5rem;
}

/* Badges */
.badges {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.badge img {
    height: 24px;
}

.company-info {
    margin-top: 1.2rem;
    font-size: 0.8rem;
    color: var(--text-tertiary);
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (min-width: 576px) {
    .page-header h1 {
        font-size: 2.8rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .featured-update .update-image {
        height: 250px;
    }
}

@media (min-width: 768px) {
    .page-header {
        padding: 8rem 0 3rem;
    }

    .page-header h1 {
        font-size: 3rem;
    }

    .featured-update {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .featured-update .update-image {
        height: 300px;
    }

    .featured-update .update-title {
        font-size: 1.8rem;
    }

    .updates-grid {
        gap: 2rem;
    }
}

@media (min-width: 992px) {
    .container {
        padding: 0 2rem;
    }

    .circle-1 {
        width: 300px;
        height: 300px;
    }

    .circle-2 {
        width: 400px;
        height: 400px;
    }

    .circle-3 {
        width: 200px;
        height: 200px;
    }
}