.news-card-hover {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-card-hover:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 60px -15px rgba(30, 64, 175, 0.2);
}
.gradient-text {
    background: linear-gradient(45deg, #1E40AF, #D946EF, #FBBF24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bg-mesh {
    background-color: #1E40AF;
    background-image: 
        radial-gradient(at 0% 0%, #D946EF 0, transparent 50%), 
        radial-gradient(at 100% 0%, #FBBF24 0, transparent 50%), 
        radial-gradient(at 100% 100%, #1E40AF 0, transparent 50%), 
        radial-gradient(at 0% 100%, #D946EF 0, transparent 50%);
}
.glass-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Phone Mockup Styling */
.phone-mockup {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    background: #111;
    border-radius: 3rem;
    padding: 12px;
    box-shadow: 
        0 0 0 2px #333,
        0 20px 50px -10px rgba(0,0,0,0.5),
        inset 0 0 2px 2px rgba(255,255,255,0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.phone-mockup:hover {
    transform: translateY(-20px) rotateX(10deg) rotateY(-5deg);
    box-shadow: 
        -10px 20px 50px -10px rgba(0,0,0,0.3),
        0 0 0 2px #444,
        20px 40px 80px -20px rgba(30, 64, 175, 0.3);
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 500px;
    background: white;
    border-radius: 2.2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #111;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 20;
}

.phone-volume-buttons {
    position: absolute;
    left: -3px;
    top: 100px;
    width: 3px;
    height: 100px;
    background: #222;
    border-radius: 2px 0 0 2px;
}

.phone-power-button {
    position: absolute;
    right: -3px;
    top: 120px;
    width: 3px;
    height: 50px;
    background: #222;
    border-radius: 0 2px 2px 0;
}

/* Pagination Styling */
.pagination-wrapper ul {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pagination-wrapper li a, 
.pagination-wrapper li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    color: #1E40AF;
    font-weight: 800;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.pagination-wrapper li.active span,
.pagination-wrapper li.active a {
    background: #1E40AF;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(30, 64, 175, 0.3);
    border-color: #1E40AF;
}

.pagination-wrapper li a:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
