/* Gamer Web Share - Alap Stílusok */
.gws-container {
    background: linear-gradient(145deg, #2b2e38, #1e2028);
    border-radius: 16px;
    padding: 20px 25px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    border: 1px solid #3a3f4c;
    font-family: 'Segoe UI', 'Roboto', system-ui, sans-serif;
    overflow: hidden;
    position: relative;
}

.gws-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(138, 43, 226, 0.2), transparent 30%);
    animation: gws-rotate 6s linear infinite;
}

@keyframes gws-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.gws-title {
    color: #e0e0e0;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.gws-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.gws-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
    z-index: 1;
}

.gws-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.gws-button svg {
    width: 20px;
    height: 20px;
}

/* Egyedi színek és hátterek */
.gws-button--facebook { background: linear-gradient(45deg, #1877F2, #3b5998); }
.gws-button--x { background: linear-gradient(45deg, #333, #000); }
.gws-button--whatsapp { background: linear-gradient(45deg, #25D366, #128C7E); }
.gws-button--viber { background: linear-gradient(45deg, #8456c2, #665CAC); }
.gws-button--messenger { background: linear-gradient(45deg, #0084ff, #0062c3); }
.gws-button--copy { background: linear-gradient(45deg, #6c757d, #495057); }

/* Másolás gomb speciális stílusai */
.gws-button--copy {
    position: relative;
}

.gws-button--copy .gws-copy-text {
    transition: opacity 0.3s ease;
}

.gws-button--copy.gws-copied .gws-copy-text {
    opacity: 0;
}

.gws-button--copy::after {
    content: attr(data-tooltip-copied);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    color: #fff;
}

.gws-button--copy.gws-copied::after {
    opacity: 1;
}

.gws-button--copy.gws-copied {
    background: linear-gradient(45deg, #28a745, #218838); /* Zöld szín másolás után */
}

/* Reszponzív beállítások */
@media (max-width: 600px) {
    .gws-container {
        padding: 15px;
    }

    .gws-title {
        font-size: 16px;
    }
    
    .gws-buttons-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .gws-button {
        justify-content: center;
        width: 100%;
        padding: 12px;
    }
}
