
body{
    overflow-x: hidden;
}

.company-body {
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-hover: rgba(255, 255, 255, 0.04);
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --accent: #2ec396;
    --accent-dim: rgba(46, 195, 150, 0.15);
    --accent-gradient: linear-gradient(135deg, rgba(46, 195, 150, 0.9), rgba(96, 149, 190, 0.85));
    --text-primary: #eef6f8;
    --text-muted: #9aa6b2;

}

a {
    color: var(--accent);
    transition: color 0.2s ease;
}

a:hover {
    color: #fff;
}

.label {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

 
.card {
    padding: 28px;
    animation: slide-up 0.5s ease-out forwards;
    background: transparent;
    border: none;
    box-shadow: none;
}

.card-header {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: none;
    position: relative;
    display: block;
    width: 100%;
}

.card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-header::after {
    width: 100%;
}

 
.company-splash {
    position: relative;
    background: transparent;
    overflow: visible;
    padding: 40px 0 50px;
}

.company-splash::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46, 195, 150, 0.2) 0%, rgba(46, 195, 150, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float-blob 20s ease-in-out infinite;
    z-index: 0;
}

.company-splash::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(96, 149, 190, 0.18) 0%, rgba(96, 149, 190, 0.06) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float-blob-reverse 25s ease-in-out infinite;
    z-index: 0;
}

.splash-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.splash-left {
    display: flex;
    justify-content: center;
}

.splashlogo-container {
    width: 220px;
    height: 220px;
    background: rgba(250, 250, 250, 0.95);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.splashlogo-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
}

.splashlogo-container img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    border-radius: 10px;
}

.splash-description {
    flex: 1;
    min-width: 0;
}

.company-splash h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 4px;

    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-splash h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.company-splash h2::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

.company-splash h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.company-splash h4 {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-muted);
    opacity: 0.8;
}

 
.description {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 24px;
    align-items: start;
}

.description-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.description-image-container img {
    width: 100%;
    min-width: 340px;
    max-width: 420px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.description-image-container img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.description-content {
    line-height: 1.8;
}

.description-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    display: block;
    width: 100%;
}
.description-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 10px;
}

.description-socials a {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.12s ease;
    min-width: 0;
}

.description-socials a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.description-socials a i {
    font-size: 1.15rem;
    color: inherit;
    transition: transform 0.18s ease;
}

.description-socials a:hover i {
    transform: scale(1.08);
}

.description-socials a p {
    font-size: 0.78rem;
    margin: 0;
    color: inherit;
}

 
.company-grid {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.company-grid-left,
.company-grid-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.company-snapshot {
    display: flex;
    flex-direction: column;
}

.company-snapshot .card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.company-details,
.contact-details,
.company-snapshot,
.auction,
.news,
.downloads,
.other-contact,
.trades,
    .management,
    .media-player {
    background: transparent;
    border: none;
    border-radius: 12px;
    box-shadow: none;
    overflow: visible;
    transition: transform 0.25s ease;
    position: relative;
}

.company-details:hover,
.contact-details:hover,
.company-snapshot:hover,
.auction:hover,
.news:hover,
.downloads:hover,
.other-contact:hover,
.trades:hover,
.management:hover,
.media-player:hover {
    transform: translateY(-4px);
}

.details-item,
.snapshot-item,
.company-contact-item,
.auction-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s ease;
}

.details-item .label,
.auction-item .label {
    min-width: 80px;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.details-item:last-child,
.snapshot-item:last-child,
.company-contact-item:last-child,
.auction-item:last-child {
    border-bottom: none;
}

.details-item:hover,
.snapshot-item:hover,
.company-contact-item:hover {
    background: rgba(255, 255, 255, 0.02);
    margin: 0 -16px;
    padding: 12px 16px;
    border-radius: 8px;
}

.details-item span:last-child,
.snapshot-item span:last-child {
    color: var(--text-primary);
    font-weight: 500;
    text-align: right;
    flex: 1;
}

.snapshot-item .label {
    min-width: 80px;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.snapshot-item .value {
    flex: 1;
    text-align: right;
    color: var(--text-primary);
}

.company-contact-item span {
    min-width: 35%;
}

.company-contact-item p {
    word-wrap: break-word;
    overflow-wrap: anywhere;
    color: var(--text-primary);
    text-align: right;
}

.contact-details .card {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-details .company-contact-item {
    padding: 8px 0;
    gap: 12px;
}

.contact-details .company-contact-item:hover {
    margin: 0 -12px;
    padding: 8px 12px;
}

.contact-details .label {
    font-size: 0.95rem;
    min-width: 80px;
    flex-shrink: 0;
}

.contact-details .company-contact-item p,
.contact-details .company-contact-item span:last-child {
    font-size: 0.95rem;
    flex: 1;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    justify-content: flex-end;
    text-align: right;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

 
.tab-panel {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.trades{
    margin-bottom: 0;
}

.trades .card-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.other-left,
.other-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

 
.media-player {
    min-height: 400px;
    position: relative;
}

.media-player iframe {
    width: 100%;
    height: 420px;
    border-radius: 12px;
    margin: 16px;
    width: calc(100% - 32px);
}

.video-placeholder {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(46, 195, 150, 0.05), rgba(96, 149, 190, 0.05));
    border-radius: 12px;
    margin: 16px;
}

.video-placeholder h2 {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.video-placeholder a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 2px solid var(--accent);
    transition: all 0.2s ease;
}

.video-placeholder a:hover {
    color: #fff;
    border-color: #fff;
}

 
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

thead tr th {
    padding: 14px 16px;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--glass-border);
    background: transparent;
}

tbody tr {
    transition: all 0.2s ease;
    cursor: default;
}

tbody tr td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.015);
}

tbody tr:nth-child(even) {
    background: transparent;
}

tbody tr:hover {
    background: rgba(46, 195, 150, 0.05);
}

/* News article list - simplified display */
.news-article-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-article {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease;
}

.news-article:last-child {
    border-bottom: none;
}

.news-article:hover {
    background: rgba(255, 255, 255, 0.02);
}

.news-article a {
    display: block;
    text-decoration: none;
}

.news-article .news-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 6px 0;
    transition: color 0.2s ease;
}

.news-article .news-date {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
    font-weight: 500;
}

.news .card {
    display: flex;
    flex-direction: column;
}

/* Legacy news-card styles (kept for backwards compatibility if used elsewhere) */
.news-card{
    display: flex;
    flex-direction: column;
    min-width: 300px;

    flex: 0 1 360px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.news-card .image-container {
    width: 100%;
    height: 170px;
    min-height: 100px;
    background-color: #FFFFFF;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.news-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(46, 195, 150, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(46, 195, 150, 0.15);
}

.news-card:hover .image-container img {
    transform: scale(1.06);
    transform-origin: center center;
}

.news-card .date{
    text-align: left;
    font-size: 0.85rem;
    color: rgba(46, 195, 150, 0.8);
    padding: 8px 12px 0 12px;
    height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card .article-header{
    display: -webkit-box;
    color: rgba(255, 255, 255, 0.95);
    padding: 6px 12px 0 12px;
    font-weight: 700;
    font-size: 1.05rem;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 48px;
    text-overflow: ellipsis;
    margin: 0;
}

.news-card .description{
    height: 122px;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 6px 12px 0 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.45;
    overflow-wrap: break-word;
}

.news-card .read-more{
    text-align: left;
    padding: 0 12px 12px 12px;
    color: rgba(46, 195, 150, 0.9);
    font-size: 0.9rem;
    text-decoration: none;
    margin: 0;
    font-weight: 600;
    transition: all 0.2s ease;
}

.news-card:hover .read-more {
    color: rgba(46, 195, 150, 1);
    transform: translateX(4px);
}

 
.download {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    margin: 8px 0;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.25s ease;
}

.download:hover {
    transform: translateX(4px);
}

.download-title {
    flex: 1;
    font-weight: 500;
    color: var(--text-primary);
}

.download-size {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-right: 20px;
}

.download i {
    color: var(--accent);
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.download:hover i {
    transform: translateY(2px);
}

 
.management-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.management-card {
    background: transparent;
    border: none;
    border-radius: 12px;
    padding: 20px 12px;
    text-align: center;
    transition: transform 0.25s ease;
    position: relative;
    overflow: visible;
}

.management-card::before {
    display: none;
}

.management-card:hover {
    transform: translateY(-6px);
}

.management-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 3px solid var(--glass-border);
    transition: all 0.3s ease;
    filter: none;
    background: #fff;
}

.management-card:hover img {
    border-color: var(--accent);
    transform: scale(1.05);
}

.management-card p {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.manager-position {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
}

.manager-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.manager-socials a i {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.manager-socials a:hover i {
    background: #fff;
    color: var(--accent);
    transform: translateY(-2px);
}

 
.other-contact-item {
    line-height: 1.8;
}

.other-contact-item p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.richtext-content p {
    margin-bottom: 16px;
}

 
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.pagination-controls i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-muted);
}

.pagination-controls i:hover {
    background: rgba(46, 195, 150, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

.pagination-controls span {
    padding: 0 16px;
    font-weight: 600;
    color: var(--text-primary);
}

 
.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 220px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    text-align: left;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    font-size: 0.85rem;
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.tooltip .tooltiptext::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: rgba(20, 20, 20, 0.95) transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

 
.iframe-container {
    position: fixed;
    height: 90%;
    width: 85%;
    max-width: 1400px;
    display: none;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    padding: 24px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
}

.download-iframe {
    height: 100%;
    width: 100%;
    border-radius: 8px;
}

.close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.close-btn:hover {
    background: rgba(255, 100, 100, 0.1);
    border-color: rgba(255, 100, 100, 0.3);
    color: #ff6464;
}

.pdf-overlay {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 5000;
    top: 0;
    left: 0;
}

 
.trading-disclaimer {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 24px;
}

.trading-disclaimer h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trading-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-muted);
}

 
.placeholder {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    font-style: italic;
}

.mail-link {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.mail-link:hover {
    border-color: var(--accent);
}

 
.tab-panel iframe {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

iframe{
    width: 90%;
}
.edison-container{
    display: flex;
    justify-content: center;
}
 
@media (max-width: 1024px) {
    .splash-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .splashlogo-container {
        width: 140px;
        height: 140px;
    }

    .company-splash h1 {
        font-size: 2.5rem;
    }

    .company-splash h2 {
        justify-content: center;
    }

    .description {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .description-image-container {
        position: relative;
        top: 0;
        width: 100%;
        margin: 0 auto;
    }

    .description-image-container img {
        min-width: unset;
        max-width: 100%;
    }

    .details-container,
    .tab-panel,
    .company-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .company-splash {
        padding: 30px 0 40px;
    }

    .company-splash h1 {
        font-size: 2rem;
    }

    .company-splash h2 {
        font-size: 1.4rem;
    }

    .company-splash h3 {
        font-size: 1.1rem;
    }

    .splashlogo-container {
        width: 120px;
        height: 120px;
    }

    .description {
        padding: 40px 16px;
    }

    .description-content h1 {
        font-size: 1.8rem;
    }

    .description-socials a {
        padding: 6px 8px;
        min-width: 0;
    }

    .details-container,
    .tab-panel,
    .company-grid {
        padding: 0 16px;
    }

    .card {
        padding: 20px;
    }

    .card-header {
        font-size: 1.3rem;
    }

    .management-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .management-card {
        padding: 16px 12px;
    }

    .management-card img {
        width: 70px;
        height: 70px;
    }

    .iframe-container {
        width: 95%;
        height: 95%;
        padding: 16px;
        border-radius: 12px;
    }

    table {
        font-size: 0.85rem;
    }

    thead tr th,
    tbody tr td {
        padding: 10px 12px;
    }

    .trading-disclaimer {
        padding: 0 16px;
    }

    .tab-panel {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .splash-content {
        padding: 0 16px;
    }

    .company-splash h1 {
        font-size: 1.75rem;
    }

    .description-socials {
        justify-content: center;
    }

    .description-socials a {
        flex: none;
        min-width: 0;
        padding: 6px 8px;
    }

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

    .news-article {
        flex-direction: column;
        gap: 8px;
    }

    .download {
        flex-wrap: wrap;
        gap: 8px;
    }

    .download-size {
        order: 3;
        margin-right: 0;
        width: 100%;
        text-align: left;
    }
}

.pagination-controls i,
.pagination-controls i:hover {
    color: var(--text-primary) !important;
    background: rgba(255,255,255,0.03) !important;
    border-color: var(--glass-border) !important;
}

.download i,
.download .download-icon i {
    color: var(--text-primary) !important;
}

.manager-socials a i {
    background: rgba(255,255,255,0.06) !important;
    color: var(--text-primary) !important;
}

.manager-socials a:hover i {
    background: rgba(255,255,255,0.10) !important;
    color: var(--text-primary) !important;
}

.mail-link,
.mail-link:hover {
    color: var(--accent) ;
    border-color: transparent !important;
}

 
@keyframes float-blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(-30px, -20px) scale(1.02); }
}

@keyframes float-blob-reverse {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-25px, 25px) scale(0.97); }
    50% { transform: translate(25px, -15px) scale(1.03); }
    75% { transform: translate(15px, 20px) scale(0.98); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(46, 195, 150, 0.2); }
    50% { box-shadow: 0 0 40px rgba(46, 195, 150, 0.4); }
}

@keyframes slide-up {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}