/************************************************************************
   VISIT CSS - DEZACTIVAT
*************************************************************************/


.visitor-counter {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    color: #888888;
    font-weight: 400;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.visitor-counter:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.visitor-icon {
    color: #ffffff;
    font-size: 12px;
    opacity: 0.8;
    animation: eye-blink 4s ease-in-out infinite;
}

.visitor-text {
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.3px;
    flex-direction: column;
    line-height: 1.2;
}

.visitor-text span:first-child {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    font-family: 'Space Grotesk', 'Inter', monospace;
}

.visitor-text span:last-child {
    color: #888888;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.visitor-counter:hover .visitor-icon {
    color: #43b581;
    transform: scale(1.1);
}

.visitor-counter:hover .visitor-text span:first-child {
    color: #43b581;
}

@keyframes eye-blink {
    0%, 90%, 100% { opacity: 0.8; }
    95% { opacity: 0.3; }
}

@media (max-width: 768px) {
    .visitor-counter {
        bottom: 15px;
        right: 15px;
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .visitor-icon {
        font-size: 12px;
    }
    
    .visitor-text span:first-child {
        font-size: 12px;
    }
    
    .visitor-text span:last-child {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .visitor-counter {
        bottom: 12px;
        right: 12px;
        padding: 8px 14px;
        font-size: 11px;
    }
    
    .visitor-icon {
        font-size: 13px;
    }
    
    .visitor-text span:first-child {
        font-size: 13px;
    }
    
    .visitor-text span:last-child {
        font-size: 9px;
    }
}



/************************************************************************
   MUSIC CARD - FUNCTIONAL (OLD CSS (crob.css)
*************************************************************************/

.music-player-card {
    margin-bottom: 16px;
    background: rgba(12, 12, 12, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.music-player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.music-player-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.music-player {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.music-header {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.music-icon {
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: rgb(var(--accent));
    animation: music-pulse 2s ease-in-out infinite;
}

@keyframes music-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.music-type {
    font-size: 10px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

.music-content {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.music-album-container {
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.music-album-container:hover {
    transform: scale(1.05);
}

.music-album-art {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid rgb(var(--accent) / 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.music-album-art:hover {
    border-color: rgb(var(--accent) / 0.6);
    box-shadow: 0 5px 16px rgb(var(--accent) / 0.25);
}

.music-track-info {
    flex: 1;
    min-width: 0;
}

.music-title {
    font-size: 13px;
    color: #ffffff;
    margin-bottom: 2px;
    font-weight: 600;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.music-artist {
    font-size: 11px;
    color: #cccccc;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.music-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.music-controls .music-volume-container {
    margin-top: 0;
    gap: 8px;
    font-size: 11px;
    color: #7f7f7f;
}

.music-controls .music-volume-container input[type="range"] {
    width: 80px;
}

.music-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    position: relative;
    overflow: hidden;
}

.music-control::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(var(--accent) / 0.1);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.music-control:hover {
    transform: translateY(-2px) scale(1.05);
    border-color: rgb(var(--accent) / 0.4);
    box-shadow: 0 6px 16px rgb(var(--accent) / 0.2);
}

.music-control:hover::before {
    opacity: 1;
    transform: scale(1);
}

.music-control:active {
    transform: translateY(0) scale(0.98);
}

.music-control.play-pause {
    width: 32px;
    height: 32px;
    font-size: 13px;
    background: linear-gradient(135deg, rgb(var(--accent) / 0.15), rgb(var(--accent) / 0.08));
    border-color: rgb(var(--accent) / 0.3);
}

.music-control.play-pause:hover {
    background: linear-gradient(135deg, rgb(var(--accent) / 0.25), rgb(var(--accent) / 0.15));
    border-color: rgb(var(--accent) / 0.5);
    box-shadow: 0 8px 20px rgb(var(--accent) / 0.3);
}

.music-progress-container {
    position: relative;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2.5px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.music-progress-container:hover {
    height: 5px;
    background: rgba(255, 255, 255, 0.15);
}

.music-progress-bar {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 2.5px;
    overflow: hidden;
}

.music-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, rgb(var(--accent)), color-mix(in srgb, rgb(var(--accent)) 80%, white));
    border-radius: 2.5px;
    position: relative;
    transition: width 0.1s linear;
    width: 0%;
}

.music-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: music-shimmer 2s ease-in-out infinite;
}

@keyframes music-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.music-volume-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    color: #8a8a8a;
    font-size: 11px;
}

.music-volume-container input[type="range"] {
    flex: 1;
    accent-color: rgb(var(--accent));
}

.music-time {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    font-size: 9px;
    color: #666666;
    font-family: 'Inter', monospace;
    font-weight: 500;
}

@media (max-width: 768px) {
    .music-player-card {
        margin-bottom: 16px;
        padding: 16px;
    }
    
    .music-content {
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .music-album-art {
        width: 45px;
        height: 45px;
    }
    
    .music-title {
        font-size: 13px;
    }
    
    .music-artist {
        font-size: 11px;
    }
    
    .music-controls {
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .music-control {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    
    .music-control.play-pause {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .music-progress-container {
        height: 4px;
    }
    
    .music-progress-container:hover {
        height: 4px;
    }
}

@media (max-width: 480px) {
    .music-player-card {
        padding: 14px;
        margin-bottom: 8px;
    }
    
    .music-content {
        gap: 8px;
        margin-bottom: 8px;
    }
    
    .music-album-art {
        width: 32px;
        height: 32px;
    }
    
    .music-title {
        font-size: 12px;
    }
    
    .music-artist {
        font-size: 11px;
    }
    
    .music-controls {
        gap: 8px;
        margin-bottom: 8px;
    }
    
    .music-control {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }
    
    .music-control.play-pause {
        width: 38px;
        height: 38px;
        font-size: 12px;
    }
}

/************************************************************************
   HOME WIDGETS (NOW PLAYING / WEATHER / FAVORITES)
*************************************************************************/

.now-playing-card {
    background: radial-gradient(circle at top left, rgba(120, 140, 255, 0.12), rgba(12, 12, 12, 0.95) 55%);
    border-radius: 22px;
    padding: 22px 24px;
}

.music-top {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.music-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.music-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

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

.music-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.music-live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgb(var(--accent));
    box-shadow: 0 0 12px rgb(var(--accent) / 0.8);
    animation: live-pulse 1.6s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.25); opacity: 1; }
}

.music-album-art {
    width: 72px;
    height: 72px;
    border-radius: 10px;
}

.music-title {
    font-size: 18px;
    font-weight: 600;
}

.music-artist {
    font-size: 12px;
}

.music-controls {
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 0;
}

.music-control {
    width: 38px;
    height: 38px;
    font-size: 12px;
}

.music-control.play-pause {
    width: 44px;
    height: 44px;
    font-size: 12px;
}

.music-progress-container {
    margin-top: 10px;
    height: 5px;
    border-radius: 4px;
}

.music-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 6px;
}

.music-volume-container {
    margin-top: 10px;
    gap: 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.music-volume-container input[type="range"] {
    max-width: 220px;
}

.weather-card {
    margin-bottom: 16px;
    background:
        radial-gradient(120% 160% at 100% -40%, rgb(var(--accent) / 0.14), transparent 52%),
        linear-gradient(155deg, rgba(13, 16, 22, 0.95), rgba(9, 12, 18, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 22px 24px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.weather-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.weather-head-main {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.weather-location {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.weather-subtitle {
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.weather-updated {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
}

.weather-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.weather-day {
    background: linear-gradient(165deg, rgba(18, 22, 31, 0.88), rgba(11, 14, 20, 0.84));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 16px;
    text-align: left;
    transition: all 0.3s ease;
}

.weather-day:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.16);
}

.weather-day.weather-today {
    border-color: rgb(var(--accent) / 0.5);
    box-shadow: 0 0 18px rgb(var(--accent) / 0.18);
}

.weather-day-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.weather-day-label {
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 10px;
}

.weather-icon {
    font-size: 18px;
    color: rgb(var(--accent));
    margin-bottom: 0;
    /* ensure the Font Awesome icon is centered inside its square */
    display: flex;
    justify-content: center;
    align-items: center;
}

.weather-temp {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.weather-range,
.weather-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.62);
    margin-top: 6px;
}

.favorites-card {
    margin-bottom: 16px;
    /* use same darker card style as other panels and slightly sharper corners */
    background: rgba(18, 22, 31, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
    transition: all 0.3s ease;
}

.favorites-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.favorites-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.favorites-title i {
    color: rgb(var(--accent));
}

.favorites-subtitle {
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-left: 8px;
}

.favorites-toggle {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.favorites-toggle:hover {
    border-color: rgb(var(--accent) / 0.4);
    box-shadow: 0 8px 20px rgb(var(--accent) / 0.2);
}

.favorites-card.collapsed .favorites-body {
    display: none;
}

.favorites-body {
    margin-top: 18px;
}

.favorites-intro {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.favorites-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.fav-tab {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.75);
    padding: 8px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 13px;
}

.fav-tab.active,
.fav-tab:hover {
    color: #ffffff;
    border-color: rgb(var(--accent) / 0.4);
    background: rgb(var(--accent) / 0.12);
}

.favorites-grid {
    /* new card‑style grid that matches project/skill cards and provides
       consistent padding across breakpoints */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px; /* slightly larger gap for breathing room */
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.favorites-grid.switching {
    opacity: 0;
    transform: translateY(8px);
}

.favorite-item {
    position: relative;
    display: none;
}

.favorite-item.active {
    display: block;
    animation: favoriteItemIn 0.32s ease both;
    animation-delay: var(--fav-delay, 0ms);
}

.favorite-item.is-hidden {
    display: none;
}

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

.favorite-tile {
    --fav-accent-rgb: var(--fav-accent, var(--accent));
    display: flex;
    flex-direction: column;
    min-height: 200px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.favorite-tile:hover {
    transform: translateY(-6px);
    border-color: rgb(var(--fav-accent-rgb) / 0.35);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.38), 0 0 0 1px rgb(var(--fav-accent-rgb) / 0.08);
}

.favorite-tile:focus-visible {
    outline: 2px solid rgb(var(--fav-accent-rgb) / 0.85);
    outline-offset: 3px;
}

.favorite-media {
    position: relative;
    height: 128px;
    background: linear-gradient(135deg, rgb(var(--fav-accent-rgb) / 0.18), rgba(12, 12, 12, 0.92));
}

.favorite-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    filter: saturate(1.08) contrast(1.05);
}

.favorite-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.favorite-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    font-size: 11px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    color: #ffffff;
    border: 1px solid rgb(var(--fav-accent-rgb) / 0.35);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
}

.favorite-meta {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.favorite-topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.favorite-name {
    margin: 0;
    font-size: 14.5px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.favorite-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.favorite-tile:hover .favorite-link {
    color: rgb(var(--fav-accent-rgb));
    border-color: rgb(var(--fav-accent-rgb) / 0.35);
    background: rgb(var(--fav-accent-rgb) / 0.08);
    transform: translateY(-1px);
}

.favorite-desc {
    margin: 0;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.35;
}

.favorite-desc code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.95em;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
}

@media (prefers-reduced-motion: reduce) {
    .favorite-tile,
    .favorite-link {
        transition: none;
    }
}

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

    .weather-card {
        padding: 16px;
    }
    .weather-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .weather-day-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .weather-temp {
        font-size: 32px;
    }
    .weather-icon {
        font-size: 24px;
    }

    .music-top-row {
        flex-direction: column;
        align-items: flex-start;
    }

    /* mobile adjustments for favorites to improve spacing */
    .favorites-card {
        padding: 16px;
        border-radius: 12px;
    }
    .favorites-grid {
        gap: 20px;
    }
    .fav-tab {
        flex: 1 1 auto;
        text-align: center;
    }

    /* container padding reduced for tighter vertical spacing */
    .container {
        padding: 60px 14px 80px;
    }
    /* reduce spacing below page headers for mobile */
    .header {
        margin-bottom: 30px;
    }
}

@media (max-width: 680px) {
    .discord-profile-top {
        flex-direction: column;
        align-items: stretch;
    }

    .discord-profile-identity {
        width: 100%;
    }

    .discord-profile-actions {
        width: 100%;
    }

    .discord-action {
        width: 100%;
        justify-content: center;
    }

    .discord-presence-stack {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .now-playing-card,
    .weather-card,
    .favorites-card {
        padding: 18px;
        border-radius: 10px;
    }

    .music-album-art {
        width: 62px;
        height: 62px;
    }

    .music-controls {
        width: 100%;
        justify-content: flex-start;
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

/************************************************************************
   contact css 
*************************************************************************/

.contact-item.donate-item {
    border-color: rgb(var(--accent) / 0.3);
    background: linear-gradient(135deg, rgb(var(--accent) / 0.08) 0%, rgba(15, 15, 15, 0.8) 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item.donate-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(var(--accent) / 0.2), transparent);
}

.contact-item.donate-item:hover {
    transform: translateY(-6px);
    border-color: rgb(var(--accent) / 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.donate-icon {
    color: rgb(var(--accent));
}

/************************************************************************
   trebuie schimbat 
*************************************************************************/
@media (max-width: 768px) {
    .contact-item.donate-item {
        padding: 20px;
        margin-bottom: 8px;
        transform: none !important;
    }
    
    .contact-item.donate-item:hover {
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .contact-item.donate-item {
        padding: 18px;
        margin-bottom: 4px;
    }
}

/************************************************************************
   webs home css
*************************************************************************/

.invite-cards-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.invite-card {
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.invite-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.invite-card.server-invite {
    border-color: rgb(var(--accent) / 0.3);
    background: linear-gradient(135deg, rgb(var(--accent) / 0.08) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.invite-card.bot-invite {
    border-color: rgba(67, 181, 129, 0.3);
    background: linear-gradient(135deg, rgba(67, 181, 129, 0.08) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.invite-header {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.invite-icon {
    flex-shrink: 0;
}

.invite-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
    transition: all 0.3s ease;
}

.invite-card:hover .invite-avatar {
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.invite-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.invite-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.2;
}

.invite-description {
    font-size: 12px;
    color: #cccccc;
    font-weight: 400;
    line-height: 1.2;
}

.invite-stats {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    margin-top: 2px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #aaaaaa;
    font-weight: 500;
}

.stat .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.stat .status-dot.online {
    background: #43b581;
}

.stat .status-dot.offline {
    background: #747f8d;
}

.invite-action {
    flex-shrink: 0;
    margin-left: 12px;
}

.join-btn {
    background: rgb(var(--accent) / 0.15);
    border: 1px solid rgb(var(--accent) / 0.3);
    color: rgb(var(--accent));
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    -webkit-tap-highlight-color: transparent;
}

.join-btn.bot-btn {
    background: rgba(67, 181, 129, 0.15);
    border-color: rgba(67, 181, 129, 0.3);
    color: #43b581;
}

.join-btn:hover {
    background: rgb(var(--accent) / 0.25);
    border-color: rgb(var(--accent) / 0.5);
    transform: translateY(-1px);
}

.join-btn.bot-btn:hover {
    background: rgba(67, 181, 129, 0.25);
    border-color: rgba(67, 181, 129, 0.5);
}

.invite-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

@media (max-width: 768px) {
    .invite-cards-container {
        gap: 12px;
        margin-top: 12px;
    }
    
    .invite-card {
        padding: 16px;
        transform: none !important;
    }
    
    .invite-card:hover {
        transform: none !important;
    }
    
    .invite-header {
        gap: 12px;
    }
    
    .invite-avatar {
        width: 32px;
        height: 32px;
    }
    
    .invite-name {
        font-size: 12px;
    }
    
    .invite-stats {
        gap: 12px;
        font-size: 11px;
    }
    
    .invite-action {
        margin-left: 8px;
    }
    
    .join-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .invite-cards-container {
        gap: 10px;
        margin-top: 10px;
    }
    
    .invite-card {
        padding: 14px;
    }
    
    .invite-header {
        gap: 10px;
    }
    
    .invite-avatar {
        width: 35px;
        height: 35px;
    }
    
    .invite-name {
        font-size: 13px;
    }
    
    .invite-description {
        font-size: 13px;
    }
    
    .invite-stats {
        gap: 10px;
        font-size: 11px;
    }
    
    .invite-action {
        margin-left: 6px;
    }
    
    .join-btn {
        padding: 5px 10px;
        font-size: 11px;
    }
}

